.elementor-15 .elementor-element.elementor-element-2f73457{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15 .elementor-element.elementor-element-2f73457.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-15 .elementor-element.elementor-element-2f73457{--width:85.349%;}}/* Start custom CSS *//* ==========================================================================
   VARIÁVEIS GERAIS
   ========================================================================== */
   :root {
    /* Cores */
    --verde-floresta: #62836c;
    --sage-green: #506a57; /* Tom levemente mais escuro para hover/botões */
    --verde-medio: #3f5546; /* Tom ainda mais escuro */
    --creme-claro: #f4f2ef;
    --branco-quente: #faf8f5;
    --charcoal: #2C2C2C;
    --cinza-medio: #6B7280;
    --dourado-suave: #C4A882;
    --whatsapp: #25D366;
    --footer-bg: #222f26; /* Fundo do footer adaptado ao novo verde */
    --branco: #FFFFFF;

    /* Tipografia */
    --font-titulos: 'Playfair Display', serif;
    --font-corpo: 'Inter', sans-serif;

    /* Transições */
    --transition: 0.3s ease-in-out;
    --transition-fast: 0.2s ease;
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base 1rem = 16px */
}

body {
    font-family: var(--font-corpo);
    background-color: var(--branco-quente);
    color: var(--charcoal);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulos);
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    color: var(--cinza-medio);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-creme {
    background-color: var(--creme-claro);
}

.bg-white {
    background-color: var(--branco-quente);
}

section {
    padding: 80px 0;
    scroll-margin-top: 70px;
}

.section-title {
    text-align: center;
    color: var(--verde-floresta);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--cinza-medio);
}

.center-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   BOTÕES (MOBILE FIRST: HEIGHT 52PX)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    min-height: 52px;
    border-radius: 8px;
    font-family: var(--font-corpo);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 10px;
    width: 100%; /* Mobile First: 100% width */
}

.btn-primary {
    background-color: var(--sage-green);
    color: var(--branco);
}

.btn-primary:hover {
    background-color: var(--verde-medio);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(98, 131, 108, 0.3);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--branco);
}

.btn-whatsapp:hover {
    background-color: #1EBE5A;
    transform: translateY(-2px);
}

.btn-whatsapp-large {
    background-color: var(--whatsapp);
    color: var(--branco);
    font-size: 1.1rem;
}

.btn-whatsapp-large:hover {
    background-color: #1EBE5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white-green {
    background-color: var(--branco);
    color: var(--verde-floresta);
}

.btn-white-green:hover {
    background-color: var(--creme-claro);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--sage-green);
    border: 1px solid var(--sage-green);
}

.btn-outline:hover {
    background-color: var(--sage-green);
    color: var(--branco);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--branco-quente);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-menu {
    display: none; /* Hidden on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--branco-quente);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    flex-direction: column;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 400;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--sage-green);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--verde-floresta);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-header {
    display: none; /* Hidden on very small screens if we want, or keep logic for side-by-side */
}

/* Mobile Fix for Header Side-by-Side as requested in previous conversations */
@media (max-width: 991px) {
    .header .container {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .logo-img {
        height: 35px;
    }
    .btn-header {
        display: flex;
        width: auto;
        padding: 0 12px;
        min-height: 40px;
        font-size: 0.85rem;
        background-color: var(--verde-floresta);
        color: white;
        white-space: nowrap;
    }
    .menu-toggle {
        order: 3;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp);
    color: var(--branco);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.whatsapp-float-text {
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #1EBE5A;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background-color: var(--branco-quente);
    padding: 140px 0 80px;
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

/* Sutil decoração de fundo */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(98, 131, 108, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

/* Eyebrow text */
.hero-eyebrow {
    font-family: var(--font-corpo);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--verde-floresta);
    margin-bottom: 18px;
}

/* H1 hero */
.hero .hero-content h1 {
    font-size: 2rem;
    color: var(--charcoal);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
}

.hero-h1-italic {
    font-style: italic;
    color: var(--verde-floresta);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.hero-content .lead {
    font-size: 1rem;
    color: var(--cinza-medio);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
}

.location-text {
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.location-text p {
    margin-bottom: 6px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.location-text strong {
    color: var(--charcoal);
    font-weight: 600;
}

.location-text i {
    color: var(--verde-floresta);
    width: 16px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

/* Botão hero primário - verde cheio */
.btn-hero-primary {
    background-color: var(--verde-floresta);
    color: var(--branco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    min-height: 52px;
    border-radius: 8px;
    font-family: var(--font-corpo);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    width: 100%;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background-color: var(--verde-medio);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(98, 131, 108, 0.3);
}

/* Botão hero outline - borda escura */
.btn-hero-outline {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid rgba(44, 44, 44, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    min-height: 52px;
    border-radius: 8px;
    font-family: var(--font-corpo);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    width: 100%;
    text-decoration: none;
}

.btn-hero-outline:hover {
    border-color: var(--verde-floresta);
    color: var(--verde-floresta);
    background-color: rgba(98, 131, 108, 0.05);
}

/* Trust badges inline */
.hero-trust-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-dot-badge {
    font-size: 0.85rem;
    color: var(--cinza-medio);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-divider {
    color: var(--dourado-suave);
    font-size: 1.2rem;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--verde-floresta);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(98, 131, 108, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(98, 131, 108, 0); }
    100% { box-shadow: 0 0 0 0 rgba(98, 131, 108, 0); }
}

/* Imagem do hero */
.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    width: 100%;
    object-fit: cover;
    max-height: 550px;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.02);
}

/* ==========================================================================
   NÚMEROS
   ========================================================================== */
.numbers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.number-card {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.number-card .number, .number-plus, .number-infinity {
    font-family: var(--font-titulos);
    font-size: 3rem;
    color: var(--verde-floresta);
    font-weight: 700;
    line-height: 1;
}

.number-card p {
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 600;
}

/* ==========================================================================
   DOR / PROBLEMAS
   ========================================================================== */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.pain-card {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}

.pain-card:hover {
    border-color: var(--dourado-suave);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.pain-icon {
    font-size: 2rem;
    line-height: 1;
}

.pain-card p {
    margin-bottom: 0;
    color: var(--charcoal);
    font-weight: 500;
}

.pain-cta {
    text-align: center;
    background-color: var(--creme-claro);
    padding: 40px 20px;
    border-radius: 12px;
}

.pain-subtitle {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ==========================================================================
   SOBRE
   ========================================================================== */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h2 {
    color: var(--verde-floresta);
    margin-bottom: 20px;
}

.about-main-text {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.credentials-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
    font-weight: 500;
}

.credentials-list i {
    color: var(--sage-green);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mission-box {
    background-color: var(--branco-quente);
    border-left: 4px solid var(--dourado-suave);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.mission-box p {
    margin-bottom: 0;
    color: var(--charcoal);
    font-style: italic;
    font-weight: 500;
}

/* ==========================================================================
   PILARES
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pillar-card {
    background-color: var(--creme-claro);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background-color: var(--branco-quente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--verde-floresta);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: var(--branco-quente);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--sage-green);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sage-green);
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--verde-medio);
    gap: 12px;
}

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.step {
    background-color: var(--creme-claro);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--dourado-suave);
    transform: rotate(90deg);
}

.modalities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.modality-card {
    background-color: var(--creme-claro);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.modality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.modality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modality-card h3 {
    color: var(--verde-floresta);
}

.modality-card ul {
    text-align: left;
    margin: 20px 0 30px;
}

.modality-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.modality-card li i {
    color: var(--sage-green);
    width: 20px;
    text-align: center;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--branco-quente);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.quote-icon {
    font-size: 2rem;
    color: var(--dourado-suave);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--charcoal);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--verde-floresta);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--cinza-medio);
}

.trust-bar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--branco);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--verde-floresta);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--creme-claro);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-family: var(--font-corpo);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    color: #555555;
    background: none;
}

.accordion-header i {
    color: var(--sage-green);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background-color: var(--branco-quente);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* arbitrary high number */
    padding: 20px;
}

.faq-cta {
    margin-top: 40px;
    text-align: center;
    background-color: var(--creme-claro);
    padding: 30px 20px;
    border-radius: 12px;
}

.faq-cta p {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta {
    background-color: var(--verde-floresta);
    background-image: linear-gradient(135deg, var(--verde-floresta) 0%, #1a330d 100%);
    color: var(--branco);
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: var(--branco);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta .cta-subtitle {
    color: var(--branco);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 40px;
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.dot {
    display: none; /* Hide dots on mobile */
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--footer-bg);
    color: var(--branco);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    display: block;
    pointer-events: none; /* As requested, no interaction/hover */
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); /* Make it white for the dark footer */
}

.footer-crp {
    color: var(--sage-green);
    margin-bottom: 10px;
}

.footer-desc {
    color: #aaaaaa;
    font-size: 0.95rem;
}

.footer h4 {
    color: var(--branco);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact a, .footer-contact li {
    color: #aaaaaa;
    transition: var(--transition-fast);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--sage-green);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--sage-green);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #111f07;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #888888;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    color: inherit;
}

.footer-legal a:hover {
    color: var(--sage-green);
}

/* ==========================================================================
   ANIMAÇÕES FADE-IN
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   MEDIA QUERIES (DESKTOP / TABLET)
   ========================================================================== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid, .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: row;
        align-items: stretch;
    }
    
    .step {
        flex: 1;
    }
    
    .step-arrow {
        transform: rotate(0deg);
        padding: 0 10px;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-badges {
        gap: 15px;
    }
    
    .dot {
        display: inline;
    }
    
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .btn {
        width: auto; /* Reset full width for desktop */
    }
    
    .header {
        padding: 20px 0;
    }
    
    .menu-toggle {
        display: none; /* Hide hamburger */
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        width: auto;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-menu ul {
        flex-direction: row;
        align-items: center;
    }
    
    .btn-header {
        display: inline-flex;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        flex: 0 0 55%;
        padding-right: 0;
    }

    .hero-image-wrapper {
        flex: 0 0 45%;
    }

    .hero .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: auto;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-container {
        flex-direction: row;
        align-items: center;
    }
    
    .about-image {
        flex: 1;
    }
    
    .about-content {
        flex: 1;
        padding-left: 40px;
    }
    
    .credentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
}/* End custom CSS */