/* ===== Tokens ===== */
:root {
  --navy: #1E2A3A;
  --navy-deep: #16202C;
  --cream: #F6F1E9;
  --cream-soft: #EFE7DA;
  --gold: #B08D4F;
  --gold-light: #D4B87A;
  --rose-gold: #D9B48F;
  --ink: #262421;
  --ink-soft: #57534C;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow-soft: 0 20px 50px -20px rgba(30, 42, 58, 0.25);
  --shadow-card: 0 12px 30px -12px rgba(30, 42, 58, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 780px; }

.section { padding: 100px 0; }
.section-dark {
  background: var(--navy);
  color: var(--cream);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--gold);
  margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--navy);
}
.section-title.light { color: var(--cream); }
.section-title.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
}
.section-lead.light { color: rgba(246,241,233,0.75); }
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; margin-bottom: 56px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 10px 24px -8px rgba(176, 141, 79, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(176, 141, 79, 0.65); }
.btn-ghost {
  border: 1.5px solid rgba(30,42,58,0.25);
  color: var(--navy);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(30,42,58,0.04); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-header { padding: 11px 22px; font-size: 14px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,241,233,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30,42,58,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-mark { height: 40px; width: 40px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(212,184,122,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(217,180,143,0.12), transparent 40%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero-copy .eyebrow { color: var(--rose-gold); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.18;
  margin: 0 0 22px;
}
.hero-lead {
  font-size: 17.5px;
  color: rgba(246,241,233,0.8);
  max-width: 520px;
  margin: 0 0 34px;
}
.hero-lead strong { color: var(--gold-light); }
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero .btn-ghost {
  border-color: rgba(246,241,233,0.35);
  color: var(--cream);
}
.hero .btn-ghost:hover { border-color: var(--cream); background: rgba(246,241,233,0.08); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--cream);
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-stars { color: var(--gold-light); letter-spacing: 1px; font-size: 15px; }
.trust-rating { color: var(--gold-light); font-weight: 800; }
.trust-divider { width: 1px; height: 18px; background: rgba(246,241,233,0.3); }

.hero-photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212,184,122,0.25);
}

/* ===== Placeholder photo styling ===== */
.placeholder-photo {
  position: relative;
  background: linear-gradient(145deg, #E4D9C6, #CBB98F);
  display: flex;
  align-items: flex-end;
}
.placeholder-photo img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-photo.is-empty::after {
  content: attr(data-placeholder-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(30,42,58,0.55);
  background:
    repeating-linear-gradient(45deg, rgba(30,42,58,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(145deg, #ECE3D2, #D9CBA8);
}
.placeholder-photo.is-empty img { display: none; }

/* ===== Diferenciais ===== */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.diferencial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.diferencial-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 18px;
}
.diferencial-icon svg { width: 100%; height: 100%; }
.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--navy);
}
.diferencial-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ===== Serviços ===== */
.servicos-destaques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.servicos-secundarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.servico-card {
  background: rgba(246,241,233,0.04);
  border: 1px solid rgba(246,241,233,0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.servico-destaque {
  background: linear-gradient(160deg, rgba(212,184,122,0.14), rgba(212,184,122,0.03));
  border-color: rgba(212,184,122,0.35);
}
.servico-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.servico-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--cream);
  margin: 0 0 10px;
}
.servico-card p { font-size: 14.5px; color: rgba(246,241,233,0.7); margin: 0 0 14px; }
.servico-link { font-size: 14px; font-weight: 700; color: var(--gold-light); }
.servico-link:hover { text-decoration: underline; }
.servicos-secundarios .servico-card h3 { font-size: 18.5px; }
.servicos-secundarios .servico-card p { margin-bottom: 0; }

/* Limpeza: banner de destaque preventivo, visualmente distinto dos cards */
.servico-limpeza {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(120deg, rgba(212,184,122,0.1), rgba(246,241,233,0.03));
  border: 1px solid rgba(212,184,122,0.3);
  border-radius: var(--radius);
  padding: 34px 36px;
}
.servico-limpeza-icon {
  width: 64px;
  height: 64px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.servico-limpeza-icon svg { width: 100%; height: 100%; }
.servico-tag-prevencao { background: transparent; border: 1px solid var(--gold-light); color: var(--gold-light); }
.servico-limpeza h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin: 0 0 10px;
}
.servico-limpeza p { font-size: 14.5px; color: rgba(246,241,233,0.75); margin: 0 0 14px; max-width: 760px; }

/* ===== Carousel (used by Antes e depois / Ambiente) ===== */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.antes-depois-card { aspect-ratio: 4/5; }
.carousel-wide .carousel-slide { flex-basis: calc(50% - 12px); }
.ambiente-card { aspect-ratio: 16/10; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .18s ease, background .18s ease;
}
.carousel-btn:hover { background: var(--gold-light); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
.section-dark .carousel-btn { background: var(--navy-deep); color: var(--cream); }
.section-dark .carousel-btn:hover { background: var(--gold); color: var(--navy-deep); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(30,42,58,0.2);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.carousel-dots button.is-active { background: var(--gold); transform: scale(1.25); }
.section-dark .carousel-dots button { background: rgba(246,241,233,0.25); }
.section-dark .carousel-dots button.is-active { background: var(--gold-light); }

/* ===== Doutora ===== */
.doutora-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: center;
}
.doutora-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.doutora-copy p { font-size: 16px; color: var(--ink-soft); }
.doutora-copy .btn { margin-top: 10px; }

/* ===== Depoimentos ===== */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  background: rgba(246,241,233,0.05);
  border: 1px solid rgba(246,241,233,0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.depoimento-stars { color: var(--gold-light); letter-spacing: 2px; font-size: 15px; }
.depoimento-card p { font-size: 15.5px; font-style: italic; margin: 14px 0 16px; color: rgba(246,241,233,0.9); }
.depoimento-autor { font-size: 13.5px; font-weight: 700; color: var(--gold-light); }
.depoimento-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(160deg, rgba(212,184,122,0.16), rgba(212,184,122,0.04));
  border-color: rgba(212,184,122,0.35);
}
.depoimento-cta-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: normal;
  color: var(--cream);
  margin: 0;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 14px 0 0; color: var(--ink-soft); font-size: 15px; }
.faq-item a { color: var(--gold); font-weight: 700; }

/* ===== CTA final ===== */
.section-cta-final {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  text-align: center;
  padding: 90px 0;
}
.cta-final-row { display: flex; justify-content: center; margin-top: 10px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(246,241,233,0.7);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246,241,233,0.1);
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
}
.footer-info p { margin: 0 0 8px; font-size: 14px; }
.footer-info a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 22px 24px;
  font-size: 13px;
  text-align: center;
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(0,0,0,0.35);
  z-index: 90;
  transition: transform .18s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-photo-frame { max-width: 420px; margin: 0 auto; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-destaques { grid-template-columns: repeat(2, 1fr); }
  .servicos-secundarios { grid-template-columns: repeat(2, 1fr); }
  .servico-limpeza { grid-template-columns: 1fr; text-align: center; }
  .servico-limpeza-icon { margin: 0 auto; }
  .carousel-slide { flex-basis: calc(50% - 12px); }
  .carousel-wide .carousel-slide { flex-basis: calc(80% - 12px); }
  .doutora-inner { grid-template-columns: 1fr; }
  .doutora-photo { max-width: 360px; margin: 0 auto; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }
  .header-inner { padding-top: 12px; padding-bottom: 12px; }
  .brand-mark { height: 32px; width: 32px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; }

  .section { padding: 56px 0; }
  .eyebrow { font-size: 11.5px; margin-bottom: 10px; }
  .section-title { font-size: clamp(24px, 6.5vw, 30px); margin-bottom: 14px; }
  .section-lead { font-size: 15.5px; }
  .section-lead.center { margin-bottom: 36px; }

  .btn { width: 100%; padding: 15px 22px; font-size: 14.5px; }
  .btn-lg { padding: 16px 24px; font-size: 15px; }
  .hero-cta-row { flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .hero-cta-row .btn { width: 100%; }
  .cta-final-row { flex-direction: column; }
  .cta-final-row .btn { width: 100%; }

  .hero-inner { padding-top: 32px; padding-bottom: 56px; gap: 32px; }
  .hero h1 { font-size: clamp(26px, 7vw, 32px); }
  .hero-lead { font-size: 15.5px; margin-bottom: 26px; }
  .hero-photo-frame { max-width: 100%; }
  .hero-trust { gap: 10px; font-size: 14.5px; }
  .trust-item { gap: 6px; }

  .diferenciais-grid { grid-template-columns: 1fr; gap: 16px; }
  .diferencial-card { padding: 24px 20px; }

  .servicos-destaques { grid-template-columns: 1fr; gap: 16px; }
  .servicos-secundarios { grid-template-columns: 1fr; gap: 12px; }
  .servico-card { padding: 24px 20px; }
  .servico-limpeza { padding: 26px 22px; }

  .carousel-track { gap: 14px; margin: 0 -18px; padding-left: 18px; padding-right: 18px; }
  .carousel-slide { flex-basis: 82%; }
  .carousel-wide .carousel-slide { flex-basis: 88%; }
  .carousel-btn { display: none; }
  .carousel-dots { margin-top: 16px; }

  .doutora-photo { max-width: 280px; }
  .doutora-copy .btn { width: 100%; }

  .depoimentos-grid { gap: 16px; }
  .depoimento-card { padding: 24px 20px; }

  .faq-item { padding: 16px 18px; }
  .faq-item summary { font-size: 15px; gap: 10px; }

  .footer-inner { gap: 24px; padding-bottom: 28px; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .diferencial-card, .servico-card, .depoimento-card { padding: 20px 16px; }
}

/* Above 960px all carousel slides already fit on screen at once (no scrolling
   needed), so the controls would be decorative and non-functional there. */
@media (min-width: 961px) {
  .carousel-btn, .carousel-dots { display: none; }
}

.main-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 20px 24px;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
