/* ==========================================================================
   RESET, VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ========================================================================== */
:root {
    /* Cores Claras / Hero */
    --bg-gradient: linear-gradient(135deg, #f4eee8 0%, #e5dacb 100%);
    --bg-light-cream: #f9f6f0;
    --text-dark: #3a2e24;
    --text-dark-brown: #4d3d2d;
    --text-light: #605246;
    --text-paragraphs: #4a4a4a;
    --primary-gold: #bfa17f;
    --btn-bg: #4a3b2c;
    --btn-brown: #4d3d2d;
    --btn-hover: #33281e;
    --white-translucent: rgba(255, 255, 255, 0.15);

    /* Cores Escuras / Transformações */
    --bg-dark-brown: #4d3d2d;
    --bg-gradient-dark: #BF9663;
    --text-gold: #ffd700;
    --text-white: #ffffff;
    --text-muted: #d3c4b4;
    --btn-bg-dark: #3a2e22;
    --btn-border-gold: #c5a880;
    
    /* Gradientes Reutilizáveis */
    --gold-gradient: linear-gradient(45deg, #ffd700, #e3aa18);
    --gold-gradient-hover: linear-gradient(45deg, #ffd700,  #e3aa18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-gradient-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.logo-area .logo {
    max-width: 220px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.12));
}

.main-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #2A1F1B !important;
}

.main-title .highlight-natural {
    font-weight: 500;
}

.main-title .serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--bg-light-cream);
    max-width: 500px;
    font-weight: 400;
}

/* Botões CTA */
.btn-cta {
    display: inline-block;
    align-self: flex-start;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid var(--text-gold);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(74, 59, 44, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background: var(--gold-gradient);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 59, 44, 0.3);
}

/* Lado Direito - Imagem */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    z-index: 1;
}

.doctor-img {
    object-fit: cover;
}

.badge-specialist {
    position: absolute;
    left: -40px;
    top: 35%;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    border-left: 2px solid var(--text-dark);
    padding-left: 10px;
    max-width: 140px;
    font-weight: 500;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 131, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 32px 0 rgba(160, 130, 100, 0.15);
}

.icon-dna { top: 45%; left: 10%; }
.icon-heart { top: 30%; right: 5%; }
.icon-plus { bottom: 15%; right: 15%; }

/* ==========================================================================
   STATS E PERFIL
   ========================================================================== */
.hero-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-highlight {
    color: #a88561;
    font-weight: 500;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    padding: 20px 0 50px 0;
    background-color: #FAF8F5 !important;
}

.profile-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background-color: #FFFDFB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    color: #666666;
    padding: 10px;
}

.profile-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.profile-info p {
    font-size: 1rem;
    color: #141313;
}

.profile-info .crm-text {
    color: #3f3f3f;
    margin-top: 2px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 550;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: #222222;
}

/* ==========================================================================
   TRANSFORMATIONS SECTION (ANTES E DEPOIS)
   ========================================================================== */
.transformations-section {
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-title .serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-gold);
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--bg-light-cream);
    font-weight: 300;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1240px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
    width: 100%;
    will-change: transform;
}

.transformation-card {
    min-width: calc(33.333% - 16px);
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-pair {
    display: flex;
    width: 100%;
    height: 380px;
}

.image-pair img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.image-pair img:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 2px;
}

.card-overlay p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.carousel-btn {
    background: transparent;
    border: none;
    color: var(--text-gold);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    transition: color 0.2s ease;
    user-select: none;
}

.carousel-btn:hover { color: var(--text-white); }
.prev-btn { margin-right: 10px; }
.next-btn { margin-left: 10px; }

.action-area {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-cta-dark {
    display: inline-block;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid var(--text-gold);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.btn-cta-dark:hover {
    background: var(--gold-gradient-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT SECTION (QUEM SOU)
   ========================================================================== */
.about-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: var(--bg-light-cream);
    overflow: hidden;
}

.about-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.about-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 380px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(58, 46, 36, 0.12);
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-title {
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark-brown);
}

.about-title .serif-italic-bold {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-paragraphs);
    font-weight: 400;
}

.about-text .weight-600 {
    font-weight: 600;
    color: var(--text-dark-brown);
}

.btn-cta-about {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--btn-brown);
    color: #ffffff;
    border: 1px solid var(--text-gold);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(74, 59, 44, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-about:hover {
    background: var(--gold-gradient-hover);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(74, 59, 44, 0.25);
}

.decor-line {
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(191, 161, 127, 0.2);
    border-radius: 50%;
}

.line-left {
    width: 600px;
    height: 600px;
    left: -200px;
    bottom: -100px;
}

.line-right {
    width: 400px;
    height: 400px;
    right: -100px;
    top: 20%;
}

/* ==========================================================================
   GALERIA / OUTRA SEÇÃO
   ========================================================================== */
.gallery-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    padding: 40px 0;
    width: 100%;
    gap: 50px;
    align-items: center;
    margin: 0 auto;
}

.content-div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #333333;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gallery-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a4a4a;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    gap: 8px;
    margin-top: 20px;
    text-decoration: none;
    color: #333333;
    border: 1px solid var(--text-gold);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(74, 59, 44, 0.25);
    font-size: 1rem;
    width: fit-content;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-schedule:hover {
    background: var(--gold-gradient-hover);
    color: #ffffff;
}

.btn-schedule .icon {
    font-size: 1.2rem;
}

.image-grid {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-grid img {
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(58, 46, 36, 0.12);
}

.item-1 {
    width: 89%;
}

/* ==========================================================================
   CONTATO E MAPA
   ========================================================================== */
.container-info {
    display: flex;
    background-color: #ffffff;
    width: 100%;
    max-width: 1100px;
    border-radius: 12px;
    margin: 100px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.global {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.container-info > section {
    display: flex;
    justify-content: center;
}

.info-container {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-text h1 {
    font-size: 2.2rem;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.header-text p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #eef2f7;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-gold);
    flex-shrink: 0;
}

.text-box h3 {
    font-size: 1.05rem;
    color: #444444;
    margin-bottom: 2px;
}

.text-box p,
.text-box a {

    font-size: 0.95rem;
    color: #777777;
    text-decoration: none;
}


.map-container {
    padding: 40px;
}

.map-placeholder {
    border: 2px dashed var(--text-gold);
    border-radius: 8px;
}

/* Botões Flutuantes */
.btn-float-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-float-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.btn-float-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.btn-float-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.btn-float-top:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-3px);
}

/* Card de Consulta */
.container-principal {
    display: flex;
    justify-content: center;
}

.card-consulta {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    gap: 40px;
    padding: 40px;
    width: 70%;
    margin-bottom: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.205);
}

.foto-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.foto-container span {
    font-size: 24px;
    color: #333333;
}

.conteudo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titulo {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.subtitulo {
    font-size: 16px;
    color: #2c313c;
    margin-bottom: 30px;
}

.botao-agendar {
    display: inline-block;
    background-color: #ffffff;
    color: #2c313c;
    text-decoration: none;
    text-align: center;
    padding: 12px 24px;
    font-size: 16px;
    border: 1px solid var(--text-gold);
    box-shadow: 0 6px 20px rgba(74, 59, 44, 0.25);
    border-radius: 15px;
    width: fit-content;
    transition: background 0.2s ease, color 0.2s ease;
}

.botao-agendar:hover {
    background: var(--gold-gradient);
    color: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #BF9663;
    color: #000000;
    padding: 60px 20px 30px 20px;
    font-size: 0.9rem;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-area .footer-logo {
    max-width: 260px;
}

.footer-info-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.footer-socials a:hover { opacity: 0.7; }

.footer-address {
    font-style: normal;
    line-height: 1.6;
    color: #e5dacb;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 5px;
    transition: opacity 0.2s ease;
}

.footer-phone i { font-size: 1.3rem; }
.footer-phone:hover { opacity: 0.8; }

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover { opacity: 0.8; }

/* Animações Scroll */
.hidden-element {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show-element {
    opacity: 1;
    transform: translateY(0);
}