/* ==========================================================================
   Variáveis e Reset Estrito
   ========================================================================== */
:root {
    --primary-wine: #5A1224; /* Vinho Escuro */
    --primary-hover: #420b18;
    --bg-cream: #FAF5F3; /* Fundo suave */
    --text-dark: #2C2523; /* Quase preto caloroso */
    --text-muted: #706461;
    --accent-terracotta: #C9785E; /* Tom laranja queimado */
    --gold-beige: #E2BAA9; /* Cor do botão CTA inferior */
    --white: #ffffff;
    --border-color: #EBDCD6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Layout Utilitário
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Componentes de Botão */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-wine);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-wine);
    border: 2px solid var(--primary-wine);
}

.btn-outline:hover {
    background-color: var(--primary-wine);
    color: var(--white);
}

.btn-outline-round {
    border: 1px solid var(--primary-wine);
    color: var(--primary-wine);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.btn-outline-round:hover {
    background-color: var(--primary-wine);
    color: var(--white);
}

.btn-light {
    background-color: #eed6cc;
    color: var(--primary-wine);
    font-weight: 700;
}

.btn-gold {
    background-color: var(--gold-beige);
    color: var(--primary-wine);
    font-weight: 700;
}

.btn-gold:hover {
    background-color: #d1a795;
}

.btn-outline-dark {
    border: 1px solid var(--primary-wine);
    color: var(--primary-wine);
    font-weight: 700;
    padding: 12px 30px;
}

.btn-outline-dark-round {
    border: 1px solid var(--primary-wine);
    color: var(--primary-wine);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 4px;
}

.btn-outline-xs {
    border: 1px solid var(--primary-wine);
    color: var(--primary-wine);
    padding: 6px 16px;
    font-size: 11px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Badges e Textos repetidos */
.subtitle {
    font-size: 11px;
    color: var(--accent-terracotta);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.subtitle-orange {
    color: var(--accent-terracotta);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title-margin {
    font-size: 28px;
    margin-bottom: 35px;
}

/* Floating WhatsApp */
.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

/* ==========================================================================
   1. Top Bar & 2. Header
   ========================================================================== */
.top-bar {
    background-color: var(--white);
    font-size: 11px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.top-links a {
    margin-left: 20px;
    color: var(--primary-wine);
    font-weight: 500;
}

.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.logo h2 {
    font-size: 18px;
    color: var(--primary-wine);
    letter-spacing: 0.5px;
}

.logo h2 span {
    border: 1px solid var(--primary-wine);
    padding: 2px 6px;
    font-size: 14px;
    margin-right: 4px;
}

.logo p {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 2px;
}

.navbar a {
    margin: 0 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.navbar a:hover, .navbar a.active {
    color: var(--primary-wine);
    font-weight: 600;
}

/* ==========================================================================
   3. Hero Section
   ========================================================================== */
.hero {
    padding: 70px 0;
    background-color: var(--bg-cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.highlight {
    color: var(--primary-wine);
    font-weight: 700;
}

.hero .description {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.stat-item {
    text-align: center;
    font-size: 9px;
    color: var(--text-muted);
}

.stat-item i {
    font-size: 18px;
    color: var(--accent-terracotta);
    margin-bottom: 8px;
    display: block;
}

.stat-item strong {
    color: var(--text-dark);
    font-size: 11px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-image img {
    border-radius: 200px 200px 20px 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
}

.play-btn {
    background: var(--primary-wine);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ==========================================================================
   4. Serviços / Grelha 6 Cards
   ========================================================================== */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services h2 {
    font-size: 28px;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: var(--bg-cream);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 45%;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-wine);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: absolute;
    top: 195px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--bg-cream);
}

.card-content {
    padding: 35px 20px 0;
}

.card-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    height: 60px; /* Alinhamento uniforme text */
}

.link-more {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-wine);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   5. Destaque Método
   ========================================================================== */
.featured-method {
    padding: 40px 0;
}

.method-box {
    background-color: var(--primary-wine);
    border-radius: 20px;
    color: var(--white);
    overflow: hidden;
}

.method-text {
    padding: 50px;
}

.badge {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 1px;
}

.method-text h2 {
    font-size: 32px;
    margin: 15px 0;
}

.method-text p {
    margin-bottom: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.check-list li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--gold-beige);
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   6. Secção Resultados (Antes/Depois + Google)
   ========================================================================== */
.results {
    padding: 80px 0;
    background-color: var(--white);
}

.results-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    align-items: center;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    flex-grow: 1;
}

.nav-arrow {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-card {
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    position: relative;
}

.badge-weight {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-wine);
    color: white;
    padding: 4px 15px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    line-height: 1.1;
    z-index: 10;
}

.badge-weight span {
    font-size: 8px;
    font-weight: 400;
    opacity: 0.8;
}

.image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 15px;
}

.img-box {
    position: relative;
}

.img-box img {
    border-radius: 6px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.img-box .lbl {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.8);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.img-box .lbl.dark {
    background: var(--primary-wine);
    color: var(--white);
}

/* Google Card Box */
.google-box {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.google-logo {
    margin: 0 auto 10px;
}

.g-title {
    font-size: 13px;
    font-weight: 600;
}

.stars {
    color: #FFC107;
    margin: 8px 0;
    font-size: 12px;
}

.g-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* ==========================================================================
   7. Sobre a Especialista
   ========================================================================== */
.specialist {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.grid-specialist {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.specialist-img img {
    border-radius: 20px;
    height: 420px;
    object-fit: cover;
    width: 100%;
}

.specialist-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bio-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.specialist-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    color: var(--accent-terracotta);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.feat-item h4 {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ==========================================================================
   8. Banner CTA Intermédio
   ========================================================================== */
.cta-banner {
    background-color: var(--primary-wine);
    color: var(--white);
    padding: 35px 0;
}

.cta-wrap {
    gap: 20px;
}

.cta-text h3 {
    font-size: 22px;
    font-weight: 500;
}

.cta-text p {
    font-size: 14px;
    opacity: 0.8;
}

/* ==========================================================================
   9. Secção Instagram
   ========================================================================== */
.instagram-section {
    padding: 70px 0;
    background-color: var(--white);
}

.insta-handle {
    font-size: 20px;
    color: var(--primary-wine);
    margin-bottom: 25px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.insta-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

/* ==========================================================================
   10. Rodapé Detalhado
   ========================================================================== */
.main-footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding-top: 70px;
}

.footer-grid-5 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
    gap: 30px;
    padding-bottom: 50px;
}

.f-col h4 {
    font-size: 12px;
    color: var(--primary-wine);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.f-col ul li {
    margin-bottom: 10px;
}

.f-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
}

.f-col ul li a:hover {
    color: var(--primary-wine);
}

.f-description {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-wine);
    font-size: 14px;
}

.contact-col p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-col i {
    color: var(--primary-wine);
    margin-right: 6px;
}

/* Placeholder do Mapa */
.map-col {
    display: flex;
    flex-direction: column;
}

.map-placeholder {
    background-color: #f2ebe8;
    border-radius: 8px;
    flex-grow: 1;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-wine);
    border: 1px dashed var(--border-color);
    text-align: center;
    padding: 10px;
}

.map-placeholder i {
    font-size: 28px;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 11px;
    font-weight: 600;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsividade Avançada
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .results-layout { grid-template-columns: 1fr; }
    .grid-specialist { grid-template-columns: 1fr 1fr; }
    .specialist-features { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
    .footer-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-grid, .grid-2, .grid-specialist { grid-template-columns: 1fr; }
    .navbar { display: none; } /* Ideal p/ Menu Hambúrguer */
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .specialist-features { grid-column: span 1; grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .cta-wrap { flex-direction: column; text-align: center; }
    .footer-grid-5 { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: 1fr 1fr; }
}