* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-principal: #A66A53;   
    --cor-secundaria: #E6A574;  
    --cor-fundo: #FAF8F6;       
    --cor-bege: #EFE8E1;       
    --cor-texto: #2B3A37;
    --cor-texto-suave: #6B7F7A;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #2D3E3A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--cor-texto);
    letter-spacing: 0.5px;
}

.btn-wpp-top {
    background-color: #25D366;
    color: white;
    border: none;

    height: 42px;
    padding: 0 22px;

    border-radius: 40px;

    font-weight: 500;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    text-decoration: none;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    transition: all 0.3s;
}

.btn-wpp-top:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

header {
    background-color: var(--cor-bege);
    height: 95px;
    border-bottom: 1px solid #EAE6E0;
    position: sticky;
    top: 0;
        z-index: 999;
    backdrop-filter: blur(10px);
}


header .container {
    max-width: none;
    margin: 0;
    padding: 0 24px;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
    margin-left: 0;
    padding-left: 0;
    cursor: default;
    user-select: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.logo-texto {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-texto h2 {
    font-size: 24px;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.logo-texto p {
    font-size: 12px;
    color: #8EA39B;
    letter-spacing: 4px;
    margin-top: 8px;
}

.logo-divisor {
    width: 1px;
    height: 70px;
    background-color: #C2D4CD;
}

.logo-marca img {
    width: 90px;
    height: auto;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
}

nav a {
    text-decoration: none;
    color: #2D3E3A;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    cursor: pointer;
}

nav a:hover {
    color: #8EA39B;
}

@media (max-width: 900px) {
    header .container {
        flex-direction: column;
        gap: 16px;
        padding-left: 24px;   
        padding-right: 24px;
    }
    nav {
        position: static;
        transform: none;
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .logo {
        align-self: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-image img {
        width: 200px;
        height: 200px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .section-titulo h2 {
        font-size: 28px;
    }
    .cards-ajuda {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .atendimento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .reflexao-texto p {
        font-size: 16px;
    }
    .cta-conteudo h2 {
        font-size: 24px;
    }

}
.hero {
    padding: 80px 0;
    background: #FAF8F6;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 32px;
    font-weight: 600;
}

.hero-image {
    margin: 32px auto;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 512px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 18px;
    color: #5A726A;
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-principal {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;

     text-decoration: none;

     
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-principal:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-grande {
    padding: 16px 40px;
    font-size: 18px;
}

.section {
    padding: 80px 0;
}

.bg-suave {
    background-color: var(--cor-bege);
}

.section-titulo {
    text-align: center;
    margin-bottom: 56px;
}

.section-titulo h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
}

.linha {
    width: 60px;
    height: 2px;
    background-color: #C2D4CD;
    margin: 0 auto;
}

.reflexao-texto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reflexao-texto p {
    font-size: 18px;
    color: #4A625A;
    margin-bottom: 24px;
    line-height: 1.6;
}

.reflexao-texto p:last-child {
    margin-bottom: 0;
}

.reflexao-texto.pequeno p {
    font-size: 16px;
    font-style: italic;
    color: #7A948C;
}

.lista-itens {
    max-width: 700px;
    margin: 0 auto;
}

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

.check {
    color: #8EA39B;
    font-size: 20px;
    font-weight: 600;
    min-width: 28px;
}

.item-lista p {
    font-size: 16px;
    color: #2D3E3A;
    line-height: 1.5;
}

.cards-ajuda {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.card-ajuda {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #EAE6E0;
    transition: all 0.3s;
}

.card-ajuda:hover {
    border-color: #C2D4CD;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

.card-ajuda h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
}

.card-ajuda p {
    font-size: 15px;
    color: #5A726A;
    line-height: 1.6;
}


.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pre-titulo {
    font-size: 11px;
    letter-spacing: 3px;
    color: #8EA39B;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.sobre-conteudo h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.sobre-conteudo p {
    font-size: 16px;
    color: #4A625A;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sobre-conteudo .destaque {
    font-weight: 500;
    color: #2D3E3A;
    border-left: 3px solid #C2D4CD;
    padding-left: 20px;
    margin-top: 24px;
}

.sobre-diferenciais h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.sobre-diferenciais ul {
    list-style: none;
}

.sobre-diferenciais li {
    font-size: 15px;
    color: #4A625A;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.sobre-diferenciais li {
    padding-left: 0;
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.atendimento-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #EAE6E0;
    text-align: center;
}

.atendimento-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.atendimento-card p {
    font-size: 15px;
    color: #5A726A;
    margin-bottom: 12px;
    line-height: 1.5;
}

.cta-final {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    text-align: center;
}

.cta-conteudo {
    max-width: 700px;
    margin: 0 auto;
}

.cta-conteudo h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 500;
}

.obs {
    font-size: 13px;
    color: #8EA39B;
    margin-top: 24px;
}

footer {
    background-color: #1A2C28;
    color: #A8BFB6;
    text-align: center;
    padding: 48px 0;
}

footer p {
    font-size: 13px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-image img {
        width: 200px;
        height: 200px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-titulo h2 {
        font-size: 28px;
    }
    
    .cards-ajuda {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .atendimento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .reflexao-texto p {
        font-size: 16px;
    }
    
    .cta-conteudo h2 {
        font-size: 24px;
    }

header {
    height: auto;
    padding: 20px 0;
}

header .container {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 20px;
}

.logo {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.logo-divisor {
    display: block;
    height: 50px;
}

.logo-texto h2 {
    font-size: 32px;
}

.logo-texto p {
    font-size: 11px;
    letter-spacing: 3px;
}

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

nav {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;
}

nav a {
    font-size: 13px;
    padding: 8px 14px;
}

.btn-wpp-top {
    display: none;
}
}
.sobre-foto {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-foto img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.sobre-diferenciais {
    margin-top: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-diferenciais ul {
    display: inline-block;
    text-align: left;
}

@media (max-width: 768px) {
    .sobre-foto img {
        max-width: 280px;
    }
    
    .sobre-diferenciais {
        margin-top: 30px;
    }
}

nav a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;

    background-color: #fcfcfc;

    color: var(--cor-texto);

    font-size: 13px;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

nav a:hover {
    background-color: var(--cor-principal);
    color: #ffffffff;
    transform: translateY(-2px);
}
.animar {
    opacity: 0;
    transform: translateY(30px) scale(0.95);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.animar.visivel {
    opacity: 1;
    transform: translateY(0) scale(1);
}
