/* ===========================
   TRECHO MANTIDO INALTERADO
=========================== */
* {
    font-family: 'Gilroy', sans-serif;
}

.navbar {
    padding: 5px 200px;
    border: none;
    justify-content: center;
}

.main-content {
    margin-left: 0;
    padding: 0;
}

.navbar .logo img {
    height: 48px;
}

.layout {
    padding: 0;
}
/* ===========================
   FIM TRECHO INALTERADO
=========================== */

/* ===== LAYOUT GERAL ===== */
.landing-wrapper {
    display: flex;
    flex-direction: column;
}

/* ===== HERO ===== */
.landing-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    overflow: hidden;
    color: white;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);

    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1.3s ease forwards;
}

.custom-shape-divider-top-1762202420 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1762202420 svg {
    position: relative;
    display: block;
    width: calc(158% + 1.3px);
    height: 227px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1762202856 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1762202856 svg {
    position: relative;
    display: block;
    width: calc(158% + 1.3px);
    height: 171px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1762202856 .shape-fill {
    fill: #FFFFFF1A;
}

.custom-shape-divider-top-1762202420 .shape-fill {
    fill: #00168a33;
}

/* ===== FEATURES ===== */
.landing-features {
    padding: 6rem 2rem;
    background: #f9fafb;
    text-align: center;
    width: 100%;
}

.landing-features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    cursor: pointer;
    max-width: 30%;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.feature-card p {
    font-size: 1rem;
    color: #4b5563;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* ===== CTA ===== */
.landing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    padding: 0 5rem;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #64748b;
    background: #f1f5f9;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .landing-hero {
        padding: 5rem 1rem;
    }

    .landing-cta {
        padding: 4rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
