/* ===========================
   ESTILOS GERAIS E BOX SIZING
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

:root {
    --bg-body: #F5F2ED;
    --bg-card: #FAF9F6;
    --bg-footer: #2C2C2C;
    --text-main: #5A5A5A;
    --text-title: #333333;
    --primary-gold: #A0835D;
    --primary-green: #618a85;
    --primary-green-dark: #4b6b67;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    padding-top: 90px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    color: var(--text-title);
    letter-spacing: 0.5px;
}

/* ===========================
   CABEÇALHO SOFISTICADO
=========================== */
header {
    background-color: #FDFBF7; 
    border-bottom: 1px solid rgba(160, 131, 93, 0.15); 
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(160, 131, 93, 0.03);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

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

.logo-text h1 {
    font-size: 18px;
    margin: 0;
    line-height: 1.1;
    color: var(--text-title);
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--primary-gold);
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-gold);
}

nav ul li a.nav-cta {
    background-color: var(--primary-gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
}

nav ul li a.nav-cta:hover {
    background-color: #8a6f4d;
}

/* ===========================
   HERO / AGENDAMENTO 
=========================== */
#agendar {
    padding: 60px 0;
}

.hero-agendamento-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-agendamento-left {
    flex: 1;
}

.hero-agendamento-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-proof p {
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
}

.hero-proof i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 20px;
}

.hero-agendamento-right {
    flex: 1;
    width: 100%;
    max-width: 480px;
}

/* FORMULÁRIO COMPLETO */
.checkout-form-topo {
    background-color: #fff;
    border: 1px solid rgba(160, 131, 93, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(160, 131, 93, 0.05);
    text-align: center;
    width: 100%;
}

.form-title-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.input-luxury-group {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.input-luxury-group .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}

.input-luxury-group input,
.input-luxury-group select {
    width: 100%;
    padding: 16px 16px 16px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-title);
    background-color: var(--bg-card);
    border: 1px solid #EAE6DF;
    border-radius: 6px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.input-luxury-group input:focus,
.input-luxury-group select:focus {
    border-color: var(--primary-gold);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(160, 131, 93, 0.1);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 16px;
    pointer-events: none;
}

.checkout-botoes-topo {
    margin-top: 24px;
}

/* BOTÕES GERAIS */
.cta-button {
    display: inline-block;
    width: 100%;
    background-color: var(--primary-gold);
    color: #fff;
    padding: 18px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: #8a6f4d;
    transform: translateY(-2px);
}

/* ===========================
   SEÇÃO 2: SOBRE / PITCH (SISTÉMICO, PRODUTO & ALINHADO)
=========================== */
#sobre {
    padding: 80px 0;
}

.pitch-box {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    text-align: center;
}

.pitch-headline {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.pitch-subtitle {
    font-size: 16px;
    max-width: 850px;
    margin: 0 auto 50px auto;
    color: #666;
}

/* Wrapper para centralizar a estrutura mas alinhar o conteúdo interno */
.beneficios-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}

.beneficios-list-clean {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 750px;
    text-align: left;
}

.beneficio-item-clean {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.beneficio-item-clean i {
    color: var(--primary-gold);
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.beneficio-item-clean h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--text-title);
}

.beneficio-item-clean p {
    margin: 0;
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.link-pitch-cta {
    width: auto; 
    padding: 18px 60px;
}

/* ===========================
   SEÇÃO DE SERVIÇOS (SISTEMA ANCORADO INFALÍVEL)
=========================== */
#servicos {
    padding: 80px 0;
    background-color: #F0EDE7;
}

#servicos h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #666;
}

/* 1. O Grid agora força alinhamento estendido de todos os filhos */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch; /* Garante que TODOS os cards tenham EXATAMENTE a mesma altura */
}

/* 2. O Card vira uma coluna flex estruturada */
.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.02);
    text-align: center;
    
    display: flex;
    flex-direction: column;
    height: 100%; /* Ocupa a altura total esticada pelo grid */
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* 3. O bloco do topo cresce para ocupar todo o espaço vazio */
.service-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1; /* Força o crescimento para empurrar o bottom para o rodapé */
}

.service-card-top i {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card-top h3 {
    font-size: 20px;
    margin: 0 0 25px 0;
    border-bottom: 1px solid rgba(160, 131, 93, 0.15);
    padding-bottom: 15px;
    width: 100%;
}

.service-list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    width: 100%;
}

.service-list-items li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.service-list-items li::before {
    content: "•";
    color: var(--primary-gold);
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: -2px;
}

.service-list-items li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.service-list-items li a:hover {
    color: var(--primary-gold);
    transform: translateX(3px);
}

/* 4. O Bloco de baixo fica perfeitamente ancorado na base */
.service-card-bottom {
    width: 100%;
    margin-top: auto; /* Ancoragem estrita */
    padding-top: 15px;
}

.service-price {
    display: block;
    font-weight: 600;
    color: var(--text-title);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-small {
    display: block;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.cta-small:hover {
    background-color: var(--primary-gold);
    color: #fff;
}

/* ===========================
   DEPOIMENTOS
=========================== */
#depoimentos {
    padding: 80px 0;
}

#depoimentos h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.testimonial-card i {
    color: rgba(160, 131, 93, 0.2);
    font-size: 32px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-card p {
    margin-top: 30px;
    font-style: italic;
    color: #555;
    font-size: 15px;
}

.testimonial-card h4 {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
}

/* ===========================
   RODAPÉ (FOOTER)
=========================== */
footer {
    background-color: var(--bg-footer);
    color: #BBB;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

footer h3, footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

footer h3 { font-size: 22px; }
footer h4 { font-size: 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; }

footer p { font-size: 14px; margin-bottom: 10px; }
footer i { color: var(--primary-gold); margin-right: 10px; }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background-color: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 25px;
    font-size: 13px;
    color: #888;
}

/* WhatsApp FAB */
#whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: 0.3s;
    text-decoration: none;
}

#whatsapp-fab:hover { transform: scale(1.1); }

/* ===========================
   MEDIA QUERIES (MOBILE RESPONSIVO)
=========================== */
@media (max-width: 1024px) {
    .services-grid, .testimonial-grid, .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-agendamento-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body { padding-top: 130px; } 
    
    header {
        padding: 12px 0;
    }

    header .container {
        flex-direction: column;
        gap: 12px;
    }
    
    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-agendamento-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-agendamento-right {
        max-width: 100%;
    }

    .checkout-form-topo {
        padding: 30px 20px;
    }

    .services-grid, .testimonial-grid, .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .link-pitch-cta {
        width: 100%;
        padding: 18px 20px;
    }
    
    .pitch-headline { font-size: 26px; }
    .hero-agendamento-left h2 { font-size: 28px; }
    
    .beneficios-list-clean {
        text-align: center;
    }
    .beneficio-item-clean {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}/* ===========================
   ESTILOS GERAIS E BOX SIZING
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

:root {
    --bg-body: #F5F2ED;
    --bg-card: #FAF9F6;
    --bg-footer: #2C2C2C;
    --text-main: #5A5A5A;
    --text-title: #333333;
    --primary-gold: #A0835D;
    --primary-green: #618a85;
    --primary-green-dark: #4b6b67;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    padding-top: 90px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    color: var(--text-title);
    letter-spacing: 0.5px;
}

/* ===========================
   CABEÇALHO SOFISTICADO
=========================== */
header {
    background-color: #FDFBF7; 
    border-bottom: 1px solid rgba(160, 131, 93, 0.15); 
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(160, 131, 93, 0.03);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

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

.logo-text h1 {
    font-size: 18px;
    margin: 0;
    line-height: 1.1;
    color: var(--text-title);
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--primary-gold);
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-gold);
}

nav ul li a.nav-cta {
    background-color: var(--primary-gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
}

nav ul li a.nav-cta:hover {
    background-color: #8a6f4d;
}

/* ===========================
   HERO / AGENDAMENTO 
=========================== */
#agendar {
    padding: 60px 0;
}

.hero-agendamento-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-agendamento-left {
    flex: 1;
}

.hero-agendamento-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-proof p {
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
}

.hero-proof i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 20px;
}

.hero-agendamento-right {
    flex: 1;
    width: 100%;
    max-width: 480px;
}

/* FORMULÁRIO COMPLETO */
.checkout-form-topo {
    background-color: #fff;
    border: 1px solid rgba(160, 131, 93, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(160, 131, 93, 0.05);
    text-align: center;
    width: 100%;
}

.form-title-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.input-luxury-group {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.input-luxury-group .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}

.input-luxury-group input,
.input-luxury-group select {
    width: 100%;
    padding: 16px 16px 16px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-title);
    background-color: var(--bg-card);
    border: 1px solid #EAE6DF;
    border-radius: 6px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.input-luxury-group input:focus,
.input-luxury-group select:focus {
    border-color: var(--primary-gold);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(160, 131, 93, 0.1);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 16px;
    pointer-events: none;
}

.checkout-botoes-topo {
    margin-top: 24px;
}

/* BOTÕES GERAIS */
.cta-button {
    display: inline-block;
    width: 100%;
    background-color: var(--primary-gold);
    color: #fff;
    padding: 18px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: #8a6f4d;
    transform: translateY(-2px);
}

/* ===========================
   SEÇÃO 2: SOBRE / PITCH (SISTÉMICO, PRODUTO & ALINHADO)
=========================== */
#sobre {
    padding: 80px 0;
}

.pitch-box {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    text-align: center;
}

.pitch-headline {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.pitch-subtitle {
    font-size: 16px;
    max-width: 850px;
    margin: 0 auto 50px auto;
    color: #666;
}

/* Wrapper para centralizar a estrutura mas alinhar o conteúdo interno */
.beneficios-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}

.beneficios-list-clean {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 750px;
    text-align: left;
}

.beneficio-item-clean {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.beneficio-item-clean i {
    color: var(--primary-gold);
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.beneficio-item-clean h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--text-title);
}

.beneficio-item-clean p {
    margin: 0;
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.link-pitch-cta {
    width: auto; 
    padding: 18px 60px;
}

/* ===========================
   SEÇÃO DE SERVIÇOS (SISTEMA ANCORADO INFALÍVEL)
=========================== */
#servicos {
    padding: 80px 0;
    background-color: #F0EDE7;
}

#servicos h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #666;
}

/* 1. O Grid agora força alinhamento estendido de todos os filhos */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch; /* Garante que TODOS os cards tenham EXATAMENTE a mesma altura */
}

/* 2. O Card vira uma coluna flex estruturada */
.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.02);
    text-align: center;
    
    display: flex;
    flex-direction: column;
    height: 100%; /* Ocupa a altura total esticada pelo grid */
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* 3. O bloco do topo cresce para ocupar todo o espaço vazio */
.service-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1; /* Força o crescimento para empurrar o bottom para o rodapé */
}

.service-card-top i {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card-top h3 {
    font-size: 20px;
    margin: 0 0 25px 0;
    border-bottom: 1px solid rgba(160, 131, 93, 0.15);
    padding-bottom: 15px;
    width: 100%;
}

.service-list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    width: 100%;
}

.service-list-items li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.service-list-items li::before {
    content: "•";
    color: var(--primary-gold);
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: -2px;
}

.service-list-items li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.service-list-items li a:hover {
    color: var(--primary-gold);
    transform: translateX(3px);
}

/* 4. O Bloco de baixo fica perfeitamente ancorado na base */
.service-card-bottom {
    width: 100%;
    margin-top: auto; /* Ancoragem estrita */
    padding-top: 15px;
}

.service-price {
    display: block;
    font-weight: 600;
    color: var(--text-title);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-small {
    display: block;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.cta-small:hover {
    background-color: var(--primary-gold);
    color: #fff;
}

/* ===========================
   DEPOIMENTOS
=========================== */
#depoimentos {
    padding: 80px 0;
}

#depoimentos h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.testimonial-card i {
    color: rgba(160, 131, 93, 0.2);
    font-size: 32px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-card p {
    margin-top: 30px;
    font-style: italic;
    color: #555;
    font-size: 15px;
}

.testimonial-card h4 {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
}

/* ===========================
   RODAPÉ (FOOTER)
=========================== */
footer {
    background-color: var(--bg-footer);
    color: #BBB;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

footer h3, footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

footer h3 { font-size: 22px; }
footer h4 { font-size: 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; }

footer p { font-size: 14px; margin-bottom: 10px; }
footer i { color: var(--primary-gold); margin-right: 10px; }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background-color: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 25px;
    font-size: 13px;
    color: #888;
}

/* WhatsApp FAB */
#whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: 0.3s;
    text-decoration: none;
}

#whatsapp-fab:hover { transform: scale(1.1); }

/* ===========================
   MEDIA QUERIES (MOBILE RESPONSIVO)
=========================== */
@media (max-width: 1024px) {
    .services-grid, .testimonial-grid, .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-agendamento-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body { padding-top: 130px; } 
    
    header {
        padding: 12px 0;
    }

    header .container {
        flex-direction: column;
        gap: 12px;
    }
    
    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-agendamento-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-agendamento-right {
        max-width: 100%;
    }

    .checkout-form-topo {
        padding: 30px 20px;
    }

    .services-grid, .testimonial-grid, .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .link-pitch-cta {
        width: 100%;
        padding: 18px 20px;
    }
    
    .pitch-headline { font-size: 26px; }
    .hero-agendamento-left h2 { font-size: 28px; }
    
    .beneficios-list-clean {
        text-align: center;
    }
    .beneficio-item-clean {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}