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

:root {
  --gold: #c9a84c;
  --gold-btn: #b8922e;
  --dark: #1a1a1a;
  --gray: #555;
  --light: #f7f5f0;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.12);
  --section-pad: clamp(40px, 8vw, 80px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* =====================
   FOCUS
   ===================== */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
  border: none;
  text-align: center;
  line-height: 1.4;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--gold-btn); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* =====================
   SECTION TITLES
   ===================== */
.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.25;
}
.section-title span {
  display: block;
  font-size: .82rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.section-desc {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: .95rem;
}

/* =====================
   HEADER
   ===================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

#header-top {
  display: none;
  background: var(--dark);
  padding: 8px 0;
  font-size: .82rem;
  color: #ccc;
}
@media (min-width: 900px) {
  #header-top { display: block; }
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-top-left { display: flex; align-items: center; gap: 16px; }
.header-top-left a { color: #ccc; transition: color .2s; }
.header-top-left a:hover { color: var(--gold); }
.header-top-right { display: flex; align-items: center; gap: 14px; }
.header-top-right a { color: #ccc; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.header-top-right a:hover { color: var(--gold); }
.header-wpp { color: #25D366; font-weight: 700; }

#header-main {
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  position: relative;
}
@media (min-width: 900px) {
  #header-main { padding: 12px 0; }
}

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

#logo img { height: 32px; width: auto; }
@media (min-width: 900px) {
  #logo img { height: 38px; }
}

/* Nav — mobile dropdown */
#header-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  padding: 12px 16px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  gap: 0;
}
#header-nav.open { display: flex; }
#header-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  transition: color .2s;
}
#header-nav a:last-child { border-bottom: none; margin-top: 8px; }
#header-nav a:hover { color: var(--gold); }
#header-nav .btn { color: var(--white); text-align: center; }

@media (min-width: 900px) {
  #header-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    gap: 24px;
    align-items: center;
  }
  #header-nav a {
    display: inline;
    padding: 0;
    border-bottom: none;
    font-size: .9rem;
  }
  #header-nav a:last-child { margin-top: 0; }
  #header-nav .btn { padding: 10px 20px; }
}

/* Hamburguer */
#menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
#menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
#menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) {
  #menu-toggle { display: none; }
}

/* =====================
   HERO
   ===================== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 52px;
  overflow: hidden;
}
@media (min-width: 900px) {
  #hero {
    height: 100vh;
    min-height: auto;
    padding-top: 104px;
    align-items: stretch;
  }
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg > picture > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
@media (min-width: 900px) {
  .hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,.92) 40%, rgba(0,0,0,.5) 65%, rgba(0,0,0,.15));
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px clamp(16px, 4vw, 20px);
}
@media (min-width: 900px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.hero-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .hero-content { padding: 40px 0; justify-content: center; }
}

.hero-sub {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-content h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.7rem, 7vw, 3rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-content h1 strong { color: var(--gold); }
.hero-desc {
  font-size: clamp(.9rem, 2.5vw, 1rem);
  margin-bottom: 24px;
  opacity: .9;
}
.hero-btns { display: flex; flex-direction: column; gap: 10px; }
.hero-btns .btn { text-align: center; }
@media (min-width: 600px) {
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .hero-btns .btn { text-align: left; }
}

.hero-persona { display: none; }
@media (min-width: 900px) {
  .hero-persona { display: block; position: relative; }
  .hero-persona img {
    position: absolute;
    bottom: 0; right: 0;
    height: calc(100vh - 104px);
    width: auto;
    object-fit: contain;
    object-position: bottom;
  }
}

/* =====================
   NÚMEROS
   ===================== */
#numeros {
  background: var(--dark);
  padding: clamp(28px, 5vw, 40px) 0;
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}
@media (min-width: 600px) {
  .numeros-grid { grid-template-columns: repeat(4, 1fr); }
}

.numero-item strong {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--gold);
}
.numero-item span { font-size: .82rem; color: #aaa; }

/* =====================
   SERVIÇOS
   ===================== */
#servicos {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .servicos-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
@media (min-width: 900px) {
  .servico-card:hover { transform: translateY(-4px); }
}
.servico-card img { width: 100%; height: 180px; object-fit: cover; }
@media (min-width: 900px) {
  .servico-card img { height: 200px; }
}
.servico-body { padding: 18px; }
.servico-body h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.servico-body h3 span { display: block; color: var(--gold); }
.servico-body p { font-size: .88rem; color: var(--gray); margin-bottom: 14px; }

/* =====================
   SOBRE + VÍDEO
   ===================== */
#sobre {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.sobre-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 48px);
}
@media (min-width: 900px) {
  .sobre-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.sobre-texto p { color: var(--gray); margin-bottom: 14px; font-size: .95rem; }
.sobre-texto .btn { margin-top: 8px; }
.sobre-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  border: none;
}

/* =====================
   CTA BANNER
   ===================== */
#cta-banner {
  background: var(--gold);
  padding: var(--section-pad) 0;
}
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 600px) {
  .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
#cta-banner h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--white);
  line-height: 1.3;
}
#cta-banner p { color: rgba(255,255,255,.85); margin-top: 6px; font-size: .95rem; }
#cta-banner .btn-primary { background: var(--dark); white-space: nowrap; }

/* =====================
   RESULTADOS
   ===================== */
#resultados {
  padding: var(--section-pad) 0 0;
  background: var(--white);
}
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .resultados-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .resultados-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
}
.resultado-item {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}
.resultado-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity .2s;
}
.resultado-item:hover img { opacity: .85; }

/* Lightbox */
#lightbox {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  max-width: min(92vw, 900px);
  max-height: 92vh;
}
#lightbox::backdrop { background: rgba(0,0,0,.88); }
#lightbox img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  line-height: 1;
}

/* =====================
   DEPOIMENTOS
   ===================== */
#depoimentos {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .depoimentos-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.depoimento-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  border-left: 4px solid var(--gold);
}
.estrelas { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.depoimento-card p { font-size: .88rem; color: var(--gray); margin-bottom: 14px; font-style: italic; }
.depoimento-card strong { display: block; font-size: .92rem; }
.depoimento-card span { font-size: .78rem; color: var(--gold); }

/* =====================
   FAQ
   ===================== */
#faq {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.faq-list { margin-top: 32px; }
@media (min-width: 900px) {
  .faq-list { max-width: 760px; }
}
.faq-item { border-bottom: 1px solid #ddd; }
.faq-item summary {
  padding: 16px 0;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 16px; color: var(--gray); font-size: .9rem; }

/* =====================
   YOUTUBE
   ===================== */
#youtube {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
#youtube .section-title { color: var(--white); }
#youtube .section-title span { color: var(--gold); }
#youtube .section-desc { color: #aaa; }
.youtube-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 900px) {
  .youtube-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
  }
}
#youtube .btn-primary { background: #e00; display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; }

.yt-facade {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .2s; }
.yt-facade:hover img { opacity: .8; }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  pointer-events: none;
}
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================
   INSTAGRAM
   ===================== */
#instagram {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.instagram-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .instagram-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}
.instagram-inner p { color: var(--gray); margin-top: 8px; font-size: .95rem; }
.instagram-img { display: none; }
@media (min-width: 900px) {
  .instagram-img { display: block; }
  .instagram-img img { border-radius: var(--radius); max-height: 400px; width: auto; margin: 0 auto; }
}
#instagram .btn-primary {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =====================
   AVALIAÇÃO
   ===================== */
#avaliacao {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.avaliacao-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 48px);
}
@media (min-width: 900px) {
  .avaliacao-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.avaliacao-inner > div > p { color: var(--gray); margin-top: 12px; font-size: .95rem; }
.avaliacao-contatos { display: flex; flex-direction: column; gap: 16px; }
.avaliacao-unidade {
  background: var(--light);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.avaliacao-unidade h3 { font-family: 'Roboto Slab', serif; font-size: 1rem; margin-bottom: 4px; }
.avaliacao-unidade a { color: var(--gray); font-size: .9rem; transition: color .2s; }
.avaliacao-unidade a:hover { color: var(--gold); }

/* =====================
   LOCALIZAÇÃO
   ===================== */
#localizacao {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.localizacao-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 48px);
}
@media (min-width: 900px) {
  .localizacao-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.localizacao-info h3 { font-family: 'Roboto Slab', serif; font-size: 1.3rem; margin: 14px 0 10px; }
.localizacao-info p { margin-bottom: 10px; color: var(--gray); font-size: .95rem; }
.localizacao-info a { color: var(--gold-btn); }
.localizacao-info .btn { margin-top: 16px; }
.localizacao-mapa iframe { border-radius: var(--radius); width: 100%; }

/* =====================
   FOOTER
   ===================== */
#footer {
  background: var(--dark);
  color: #aaa;
  padding: clamp(32px, 6vw, 48px) 0 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 28px;
}
@media (min-width: 600px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
}
.footer-brand img {
  margin-bottom: 12px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  max-width: 160px;
}
.footer-brand p { font-size: .85rem; margin-bottom: 14px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: #aaa; transition: color .2s; }
.footer-social a:hover { color: var(--gold); }
.footer-links, .footer-contato { display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-contato a { font-size: .85rem; transition: color .2s; }
.footer-links a:hover, .footer-contato a:hover { color: var(--gold); }
.footer-contato p { font-size: .85rem; }
.footer-bottom {
  border-top: 1px solid #333;
  padding: 14px clamp(16px, 4vw, 20px);
  text-align: center;
  font-size: .78rem;
}

/* =====================
   WPP FLOAT
   ===================== */
#wpp-float {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 15px;
  border-radius: 50%;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, opacity .2s;
}
#wpp-float span { display: none; }
#wpp-float:hover { transform: scale(1.06); opacity: .92; }
@media (min-width: 600px) {
  #wpp-float { gap: 10px; padding: 13px 20px; border-radius: 50px; }
  #wpp-float span { display: inline; }
}
