/* === CONFIGURAÇÕES GLOBAIS E VARIÁVEIS === */
:root {
    --branco-pergaminho: #FDFBF8;
    --bege-rosado: #F6F0EB;
    --marrom-terra: #4B423C;
    --rose-gold: #C09E86;
    --rose-gold-hover: #ad8f78;
    --branco: #FFFFFF;

    --font-display: 'Cormorant Garamond', serif;
    --font-text: 'Montserrat', sans-serif;
}

/* === RESET E BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--branco-pergaminho); color: var(--marrom-terra); font-family: var(--font-text); line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* === COMPONENTES E UTILITÁRIOS === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, .logo { font-family: var(--font-display); color: var(--marrom-terra); font-weight: 600; }
h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; }
.section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); text-align: center; margin-bottom: 3.5rem; }
.section-title::after { content: ''; display: block; width: 60px; height: 2px; background: var(--rose-gold); margin: 1rem auto 0; }
section { padding: 7rem 0; overflow: hidden; }
.btn { display: inline-block; padding: 1rem 2.5rem; font-family: var(--font-text); font-weight: 500; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; cursor: pointer; border: 1px solid var(--marrom-terra); }
.btn-primary { background-color: var(--marrom-terra); color: var(--branco); }
.btn-primary:hover { background-color: #6a5c54; border-color: #6a5c54; transform: translateY(-3px); }
.btn.btn-secondary { background: transparent; color: var(--marrom-terra); border-color: var(--rose-gold); }
.btn.btn-secondary:hover { background: var(--bege-rosado); }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: all 0.4s ease; }
.header.scrolled { background-color: rgba(253, 251, 248, 0.9); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 1rem 0; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2.2rem; text-decoration: none; letter-spacing: 1px; }
.nav-links a { margin: 0 1.5rem; text-decoration: none; color: var(--marrom-terra); font-weight: 400; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background-color: var(--rose-gold); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }

/* === HERO SECTION === */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0; position: relative; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; }
.hero-background::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(253, 251, 248, 0.6); }
.hero-content { max-width: 700px; padding: 2rem; }
.hero-content p { font-size: 1.2rem; color: #6a5c54; margin: 1.5rem 0 2.5rem; font-weight: 300; }

/* === SOBRE SECTION === */
.sobre-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sobre-imagem img { width: 100%; height: 500px; object-fit: cover; border-radius: 10px; }
.sobre-texto .section-title { text-align: left; }
.sobre-texto .section-title::after { margin-left: 0; }

/* === TRATAMENTOS SLIDER === */
#tratamentos { background-color: var(--bege-rosado); }
.slider-container { position: relative; }
.slider-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
}
.slider-item { flex: 0 0 32%; scroll-snap-align: start; }
.tratamento-card { background-color: var(--branco-pergaminho); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
.tratamento-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.tratamento-card img { width: 100%; height: 350px; object-fit: cover; display: block; }
.card-content { padding: 1.5rem; text-align: center; }
.card-content h3 { font-size: 1.5rem; color: var(--rose-gold); }
.card-content p { font-size: 0.95rem; }
.slider-arrow { position: absolute; top: 40%; transform: translateY(-50%); background: var(--branco); border: 1px solid #eee; color: var(--marrom-terra); border-radius: 50%; width: 50px; height: 50px; cursor: pointer; z-index: 10; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.slider-arrow:hover { background-color: var(--rose-gold); color: var(--branco); border-color: var(--rose-gold); }
.slider-arrow.prev { left: -25px; }
.slider-arrow.next { right: -25px; }

/* === ESPECIALISTA SECTION === */
.especialista-content { display: flex; align-items: center; gap: 5rem; }
.especialista-imagem { flex-basis: 40%; flex-shrink: 0; }
.especialista-imagem img { width: 100%; border-radius: 10px; }
.especialista-texto { flex-basis: 60%; display: flex; flex-direction: column; gap: 1.2rem; }
.especialista-texto .section-title { text-align: left; margin-bottom: 0; }
.especialista-texto .section-title::after { margin-left: 0; margin-top: 0.8rem; }
.especialista-credenciais { color: var(--rose-gold); display: block; margin-top: -1.8rem; }
.especialista-texto p { margin-bottom: 0; }
.quote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; padding-left: 1rem; border-left: 2px solid var(--rose-gold); margin-top: 0.5rem; }

/* === OFERTA (CTA) === */
#oferta { background-color: var(--bege-rosado); text-align: center; }
#oferta p { color: #6a5c54; max-width: 600px; margin: 0 auto 2.5rem; }

/* === FAQ SECTION === */
#faq { padding-bottom: 7rem; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bege-rosado); }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 1.5rem 0; font-size: 1.2rem; font-weight: 500; font-family: var(--font-text); color: var(--marrom-terra); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--rose-gold); transition: transform 0.4s ease; font-weight: 300; }
.faq-item.active .faq-question::after { transform: rotate(135deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0.5rem 0 1.5rem; color: #6a5c54; }

/* === NOVA SEÇÃO DE LOCALIZAÇÃO === */
#localizacao { background-color: var(--bege-rosado); }
.map-container { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: center; }
.map-embed iframe { width: 100%; height: 400px; border: 0; border-radius: 10px; filter: grayscale(1) contrast(0.8) brightness(1.1) sepia(0.2); }
.map-info { display: flex; flex-direction: column; gap: 1.5rem; }
.map-info h3 { font-size: 2rem; }
.map-info p { margin: 0; font-size: 1.1rem; line-height: 1.6; }
.info-social { display: flex; gap: 1.5rem; }
.info-social a { color: var(--marrom-terra); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.info-social a:hover { color: var(--rose-gold); }
.map-info .btn { align-self: flex-start; }

/* === FOOTER === */
footer { text-align: center; padding: 4rem 0 2rem 0; }
footer .logo { margin-bottom: 1.5rem; display: inline-block; }
.copyright { font-size: 0.9rem; color: #aaa; margin-top: 1.5rem; }

/* === MODAL === */
.modal { display: none; position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(75, 66, 60, 0.8); backdrop-filter: blur(5px); animation: fadeIn 0.3s ease; }
.modal-content { background-color: var(--branco-pergaminho); margin: 10% auto; padding: 3rem; border-radius: 10px; width: 90%; max-width: 500px; position: relative; animation: slideIn 0.4s ease; border: 1px solid var(--rose-gold); }
@keyframes fadeIn { from { opacity: 0; } to
