/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Oficial */
    --verde-profundo: #23393f;
    --bege-organico: #e6d8ce;
    --marrom: #6b3e34;
    --terracota: #a26855;
    --rose-terroso: #cfa897;
    --branco: #FFFFFF;
    
    /* Tons mais claros para estética clean */
    --bege-claro: #f5f0ec;
    --rose-claro: #e8dcd5;
    --verde-suave: #3d5459;
    --marrom-suave: #8b6257;
    
    /* Tipografia */
    --font-principal: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-principal);
    color: var(--marrom-suave);
    line-height: 1.8;
    background-color: var(--branco);
    overflow-x: hidden;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    background-color: var(--branco);
    padding: 20px 0;
    border-bottom: 1px solid var(--bege-organico);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
    transition: box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--verde-profundo);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--terracota);
}

.btn-nav {
    background-color: var(--terracota);
    color: var(--branco);
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-nav:hover {
    background-color: var(--marrom);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(162, 104, 85, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, var(--bege-claro) 0%, var(--branco) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracota);
    margin-bottom: 20px;
    display: block;
}

.hero-text h2.headline {
    font-size: 52px;
    line-height: 1.2;
    color: var(--verde-profundo);
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 19px;
    color: var(--marrom-suave);
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 400;
}

.tagline-hero {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--verde-suave);
    opacity: 0.75;
    text-transform: uppercase;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .main-image,
.fernanda-image .main-image,
.comunidade-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(35, 57, 63, 0.15);
    pointer-events: none;
}

.hero-shape,
.fernanda-shape,
.comunidade-shape {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--rose-terroso) 0%, var(--terracota) 100%);
    opacity: 0.3;
    z-index: 0;
    top: 30px;
    left: 30px;
    pointer-events: none;
}

/* Pattern Backgrounds */
.pattern-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.pattern-ondas {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        var(--terracota) 35px,
        var(--terracota) 37px
    );
}

.pattern-rede {
    background-image: 
        linear-gradient(var(--verde-profundo) 1px, transparent 1px),
        linear-gradient(90deg, var(--verde-profundo) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* CTAs */
.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background-color: var(--terracota);
    color: var(--branco);
}

.cta-primary:hover {
    background-color: var(--marrom);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(162, 104, 85, 0.25);
}

.cta-primary.large {
    padding: 24px 48px;
    font-size: 18px;
}

.cta-secondary {
    background-color: var(--verde-profundo);
    color: var(--branco);
}

.cta-secondary:hover {
    background-color: var(--marrom);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(35, 57, 63, 0.25);
}

.cta-tertiary {
    background-color: transparent;
    color: var(--bege-organico);
    border: 2px solid var(--bege-organico);
}

.cta-tertiary:hover {
    background-color: var(--bege-organico);
    color: var(--verde-profundo);
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.identification {
    background-color: var(--branco);
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracota);
    margin-bottom: 16px;
    display: block;
}

.text-center {
    text-align: center;
}

.content-block h3 {
    font-size: 42px;
    color: var(--verde-profundo);
    margin-bottom: 32px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--marrom-suave);
    font-weight: 400;
    line-height: 1.8;
}

.highlight-box {
    background-color: var(--bege-claro);
    padding: 48px;
    border-radius: 20px;
    margin-top: 48px;
    border-left: 4px solid var(--terracota);
    position: relative;
}

.quote-mark {
    width: 40px;
    height: 40px;
    background-color: var(--terracota);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 40px;
    opacity: 0.2;
}

.quote-mark::after {
    content: '"';
    position: absolute;
    font-size: 60px;
    color: var(--branco);
    top: -15px;
    left: 10px;
    font-family: Georgia, serif;
}

.emphasis {
    font-weight: 600;
    font-size: 20px;
    color: var(--verde-suave);
    line-height: 1.6;
}

/* Seção Atributos */
.atributos {
    background-color: var(--branco);
    padding-top: 80px;
    padding-bottom: 100px;
}

.atributos .content-block {
    margin-bottom: 64px;
}

.atributos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.atributo-card {
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--bege-organico);
    background-color: var(--bege-claro);
    position: relative;
    overflow: hidden;
}

.atributo-card[data-atributo="ancora"] {
    background-color: var(--branco);
    border-color: var(--rose-claro);
    box-shadow: 0 2px 16px rgba(35, 57, 63, 0.05);
}

.atributo-card[data-atributo="apoio"] {
    background: linear-gradient(135deg, var(--bege-claro) 0%, var(--rose-claro) 100%);
    border-color: var(--rose-terroso);
}

.atributo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracota), var(--rose-terroso));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.atributo-card:hover::before {
    opacity: 1;
}

.atributo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(35, 57, 63, 0.1);
}

.atributo-icone {
    margin-bottom: 24px;
    color: var(--terracota);
    display: flex;
    justify-content: center;
}

.atributo-card h4 {
    color: var(--verde-profundo);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.atributo-card p {
    color: var(--marrom-suave);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Improviso Section */
.improviso {
    background-color: var(--bege-claro);
}

.intro-text {
    font-size: 20px;
    margin-bottom: 56px;
    text-align: center;
    color: var(--marrom-suave);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 56px 0;
}

.benefit-card {
    background-color: var(--branco);
    padding: 56px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    box-shadow: 0 2px 12px rgba(35, 57, 63, 0.04);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(35, 57, 63, 0.08);
    border-color: var(--rose-claro);
}

.benefit-icon {
    margin-bottom: 24px;
    color: var(--terracota);
    display: flex;
    justify-content: center;
}

.benefit-icon svg {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
}

.benefit-card h4 {
    color: var(--verde-profundo);
    font-size: 18px;
    font-weight: 600;
}

.key-phrase {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
}

.key-phrase p {
    font-size: 32px;
    font-weight: 700;
    color: var(--verde-profundo);
    font-style: italic;
    line-height: 1.4;
}

/* Fernanda Section */
.fernanda {
    background-color: var(--branco);
}

.fernanda-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.fernanda-image {
    position: relative;
}

.fernanda-shape {
    background: linear-gradient(135deg, var(--bege-organico) 0%, var(--rose-terroso) 100%);
}

/* Método Section */
.metodo {
    background-color: var(--bege-claro);
    position: relative;
    overflow: hidden;
}

.steps {
    margin: 64px 0;
}

.step {
    display: flex;
    gap: 40px;
    margin-bottom: 56px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, var(--terracota) 0%, var(--marrom) 100%);
    color: var(--branco);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(162, 104, 85, 0.25);
}

.step-content h4 {
    color: var(--verde-profundo);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.step-content p {
    color: var(--marrom-suave);
    font-size: 17px;
    line-height: 1.7;
}

/* Babá Profissional */
.baba-profissional {
    background-color: var(--branco);
}

.baba-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.baba-text {
    position: relative;
    z-index: 10;
}

.baba-image {
    position: relative;
}

.baba-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(35, 57, 63, 0.15);
    pointer-events: none;
}

.baba-shape {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--rose-terroso) 0%, var(--terracota) 100%);
    opacity: 0.3;
    z-index: 0;
    top: 30px;
    left: 30px;
    pointer-events: none;
}

.baba-profissional .cta-secondary {
    margin-top: 32px;
}

/* =============================================
   SEÇÃO DEPOIMENTOS
   ============================================= */
.depoimentos {
    background-color: var(--bege-claro);
    overflow: hidden;
    padding-bottom: 80px;
}

.depo-track-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.depo-fade-left,
.depo-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.depo-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bege-claro), transparent);
}

.depo-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bege-claro), transparent);
}

.depo-track {
    display: flex;
    gap: 32px;
    animation: scrollCards 28s linear infinite;
    width: max-content;
    padding: 0 32px;
}

.depo-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCards {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.depo-card {
    background: var(--branco);
    border: 1px solid var(--bege-organico);
    border-radius: 20px;
    padding: 40px 36px;
    width: 460px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 16px rgba(35, 57, 63, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.depo-card:hover {
    box-shadow: 0 12px 36px rgba(35, 57, 63, 0.1);
    transform: translateY(-4px);
}

.depo-card::before {
    content: '\201C';
    font-size: 80px;
    color: var(--terracota);
    opacity: 0.15;
    position: absolute;
    top: 12px;
    left: 28px;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.depo-stars {
    color: var(--terracota);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.depo-text {
    font-size: 16px;
    color: var(--marrom);
    line-height: 1.8;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--bege-organico);
    padding-top: 20px;
}

.depo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracota), var(--rose-terroso));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--branco);
    flex-shrink: 0;
}

.depo-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--verde-profundo);
    margin-bottom: 2px;
    margin: 0 0 2px 0;
}

.depo-info {
    font-size: 13px;
    color: var(--marrom-suave);
    margin: 0;
}

/* Comunidade */
.comunidade {
    background-color: var(--branco);
    position: relative;
}

.comunidade * {
    pointer-events: auto;
}

.comunidade-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.comunidade-text {
    position: relative;
    z-index: 10;
    user-select: text;
}

.comunidade-text * {
    user-select: text;
    pointer-events: auto;
}

.comunidade-text a {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.comunidade-image {
    position: relative;
}

.comunidade-benefits {
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--terracota);
    flex-shrink: 0;
    position: relative;
}

.check::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid var(--branco);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.benefit-item p {
    margin: 0;
    font-size: 17px;
    padding-top: 2px;
    line-height: 1.7;
    color: var(--marrom-suave);
}

/* Curso Babá */
.curso-baba {
    background-color: var(--verde-profundo);
    color: var(--branco);
}

.curso-box {
    background-color: rgba(230, 216, 206, 0.08);
    border: 2px solid var(--terracota);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.curso-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose-terroso);
    margin-bottom: 12px;
    display: block;
}

.curso-header h4 {
    color: var(--rose-claro);
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 700;
}

.curso-box p {
    color: var(--rose-claro);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.curso-box .cta-tertiary {
    margin-top: 32px;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--rose-terroso) 0%, var(--terracota) 100%);
    text-align: center;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: var(--branco);
    margin-bottom: 28px;
    font-size: 44px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--rose-claro);
    line-height: 1.8;
}

.cta-content .emphasis {
    font-size: 26px;
    margin-bottom: 56px;
    color: var(--branco);
    font-style: italic;
    letter-spacing: 0.01em;
}

.cta-content .cta-primary {
    background-color: var(--branco);
    color: var(--verde-profundo);
}

.cta-content .cta-primary:hover {
    background-color: var(--bege-organico);
    color: var(--verde-profundo);
}

/* Footer */
.footer {
    background-color: var(--verde-profundo);
    color: var(--rose-claro);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--rose-claro);
}

.footer-tagline {
    font-size: 13px !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose-terroso) !important;
    margin-top: 8px;
}

.footer-links h5 {
    color: var(--rose-terroso);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: var(--rose-claro);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--rose-terroso);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(230, 216, 206, 0.15);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--rose-claro);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.slide-up.visible {
    animation: slideUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 1100px) {
    .atributos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-content,
    .fernanda-content,
    .comunidade-content,
    .baba-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

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

    .depo-card {
        width: 340px;
    }

    .depo-fade-left,
    .depo-fade-right {
        width: 60px;
    }

    .hero-text h2.headline {
        font-size: 40px;
    }

    .content-block h3 {
        font-size: 32px;
    }

    .nav {
        gap: 16px;
    }

    .nav a:not(.btn-nav) {
        display: none;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .container,
    .container-narrow {
        padding: 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .key-phrase p {
        font-size: 26px;
    }

    .curso-box {
        padding: 40px 32px;
    }
}

@media (max-width: 640px) {
    .hero-text h2.headline {
        font-size: 34px;
        line-height: 1.25;
    }

    .subheadline {
        font-size: 17px;
        line-height: 1.7;
    }

    .content-block h3 {
        font-size: 30px;
        line-height: 1.3;
    }

    .content-block p {
        font-size: 17px;
        line-height: 1.8;
    }

    .cta-primary,
    .cta-secondary,
    .cta-tertiary {
        padding: 18px 32px;
        font-size: 16px;
        width: 100%;
    }

    .benefit-card {
        padding: 40px 28px;
    }

    .atributo-card {
        padding: 36px 24px;
    }

    .depo-card {
        width: 300px;
        padding: 28px 24px;
    }

    .key-phrase p {
        font-size: 24px;
        line-height: 1.4;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .cta-content h3 {
        font-size: 34px;
        line-height: 1.25;
    }

    section {
        padding: 60px 0;
    }

    .container,
    .container-narrow {
        padding: 0 20px;
    }
}