/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Variables ===== */
:root {
  --bg: #FAF8F5;
  --text: #1A1A1A;
  --gold: #C9A24B;
  --gold-dark: #A8842F;
  --dark: #0E0E0E;
  --nude: #EFE7DC;
  --muted: #6B6B6B;
  --maxw: 1140px;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0,0,0,.08);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;
}

/* ===== Base ===== */
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.6; font-weight: 400; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--nude { background: var(--nude); }
.section--dark { background: var(--dark); color: #fff; }
.eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: var(--gold); font-weight: 600; margin-bottom: .75rem; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem; transition: transform .2s ease, background .2s ease, color .2s ease; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ===== Fade-in on scroll ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,248,245,.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.nav__logo { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; letter-spacing: .02em; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a { font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; background: var(--bg); padding: 1.5rem; gap: 1.25rem; transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow); }
  .nav__links.is-open { transform: translateY(0); }
  .nav__cta { width: 100%; justify-content: center; }
}

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 7vw, 5rem); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,.18), transparent 70%); top: -160px; right: -120px; z-index: 0; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero__text h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-block: .5rem 1rem; }
.hero__lead { font-size: 1.1rem; max-width: 34ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__media img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media img { height: 320px; }
}

/* ===== Cards / About ===== */
.cards { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--auto { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.card { background: var(--bg); border-radius: var(--radius); padding: 2rem 1.75rem; box-shadow: var(--shadow); }
.card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: rgba(201,162,75,.14); color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
@media (max-width: 820px) { .cards--3 { grid-template-columns: 1fr; } }

/* ===== Procedimentos ===== */
.proc { background: var(--bg); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius); padding: 1.5rem; transition: border-color .2s, transform .2s; }
.proc:hover { border-color: var(--gold); transform: translateY(-3px); }
.proc h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.section__cta { text-align: center; margin-top: 2.5rem; }
.section__lead { max-width: 58ch; margin-top: 1rem; font-size: 1.05rem; }
.cta-nudge { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2.5vw, 1.5rem); color: var(--text); margin-bottom: 1.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Equipe ===== */
.team { text-align: center; }
.team img { width: 100%; height: 380px; object-fit: cover; object-position: top center; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1rem; }
.team h3 { margin-bottom: .25rem; }

/* ===== Carousel / Depoimentos ===== */
.carousel { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .5s ease; }
.carousel__slide { flex: 0 0 100%; padding: 2rem; text-align: center; }
.carousel__slide p { font-family: var(--serif); font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--text); font-style: italic; }
.carousel__slide cite { display: block; margin-top: 1rem; color: var(--gold); font-style: normal; font-weight: 600; }
.carousel__btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); background: transparent; color: var(--gold); font-size: 1.5rem; cursor: pointer; transition: background .2s, color .2s; }
.carousel__btn:hover { background: var(--gold); color: #fff; }
.carousel__dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1.5rem; }
.carousel__dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(0,0,0,.2); cursor: pointer; }
.carousel__dots button.is-active { background: var(--gold); }

/* ===== Refer + Contato ===== */
.refer__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.refer__text { color: rgba(255,255,255,.75); max-width: 46ch; margin-top: .75rem; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact__list { margin-top: 1.5rem; display: grid; gap: 1rem; }
.contact__list li { color: var(--muted); }
.contact__list strong { color: var(--text); display: block; }
.contact__form { display: grid; gap: 1rem; background: var(--nude); padding: 2rem; border-radius: var(--radius); }
.contact__form label { display: grid; gap: .4rem; font-size: .85rem; font-weight: 600; }
.contact__form input, .contact__form textarea { font-family: var(--sans); padding: .75rem .9rem; border: 1px solid rgba(0,0,0,.15); border-radius: 10px; font-size: .95rem; background: #fff; }
.contact__form input:focus, .contact__form textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
@media (max-width: 820px) { .contact { grid-template-columns: 1fr; } }

/* ===== Footer + floating WhatsApp ===== */
.site-footer { background: var(--dark); color: #fff; padding-block: 2.5rem 1.5rem; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer__tag { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .25rem; }
.footer__links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__links a:hover, .site-footer a:hover { color: var(--gold); }
.footer__copy { text-align: center; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 2rem; }
.wa-float { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.25); z-index: 200; transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* ===== Page Hero ===== */
.page-hero { background: var(--nude); padding-block: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-block: .5rem; }

/* ===== Queixas ===== */
.queixas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.queixa { background: var(--bg); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem; box-shadow: var(--shadow); }
.queixa h3 { margin-bottom: .5rem; }
@media (max-width: 700px) { .queixas { grid-template-columns: 1fr; } }

/* ===== Full-width image band ===== */
.imgband { position: relative; min-height: 380px; display: grid; place-items: center; text-align: center; color: #fff;
  background-image: linear-gradient(rgba(14,14,14,.5), rgba(14,14,14,.55)), url('../assets/img/band.jpg');
  background-size: cover; background-position: center; }
.imgband__inner { max-width: 640px; padding: 3.5rem 1.5rem; }
.imgband h2 { color: #fff; margin-block: .5rem 1.75rem; }
.eyebrow--light { color: var(--gold); }

/* ===== Procedimentos image cards ===== */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.proc-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--bg); transition: transform .25s; }
.proc-card:hover { transform: translateY(-4px); }
.proc-card img { width: 100%; height: 200px; object-fit: cover; }
.proc-card h3 { font-size: 1.05rem; text-align: center; padding: 1rem .75rem; margin: 0; }
@media (max-width: 820px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .proc-grid { grid-template-columns: 1fr; } }

/* ===== Gallery (illustrative) ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .4s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption { position: absolute; bottom: 8px; right: 8px; background: rgba(14,14,14,.6); color: #fff; font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; padding: .22rem .5rem; border-radius: 6px; }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* ===== Google reviews badge ===== */
.google-reviews { margin: 2.5rem auto 0; max-width: 440px; background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.75rem 1.5rem; text-align: center; display: grid; gap: .75rem; justify-items: center; }
.google-reviews__head { display: flex; align-items: center; gap: .6rem; }
.google-reviews__stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .12em; }
.google-reviews__text { font-size: .92rem; color: var(--muted); }
.google-reviews__text strong { color: var(--text); }
