/* ═══════════════════════════════════════════
   SANTA MODA BÚZIOS — style.css
   Segmento: Varejo Moda Feminina
   Paleta: Branding Book oficial
═══════════════════════════════════════════ */

:root {
  /* Primárias */
  --areia:      #F5EDE0;   /* fundo principal */
  --nude:       #C4956A;   /* tipografia destaque */
  --branco:     #FFFFFF;   /* fundo base */

  /* Acento — usar APENAS em botões CTA e detalhes */
  --rosa:       #E8318A;   /* Rosa Santa — acento principal */

  /* Secundárias */
  --rosa-blush: #F2B8C6;   /* cards, fundos suaves */
  --pessego:    #F0C9A0;   /* tags, badges */
  --ocre:       #C9A96E;   /* detalhes premium */

  /* Neutras */
  --grafite:    #2D2D2D;   /* tipografia principal */
  --cinza:      #6B6B6B;   /* texto secundário */
  --cinza-light:#F0EBE3;   /* fundos alternativos (sobre areia) */

  /* Tipografia */
  --fonte-serif: 'Playfair Display', Georgia, serif;
  --fonte-sans:  'Montserrat', Arial, sans-serif;

  /* Utilitários */
  --trans:       250ms ease;
  --radius:      8px;
  --sombra:      0 4px 24px rgba(196,149,106,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-sans);
  color: var(--grafite);
  background: var(--branco);
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── CONTAINER ────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BOTÕES ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--fonte-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--trans), color var(--trans), transform var(--trans);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--rosa);
  color: var(--branco);
}
.btn-primary:hover { background: #c4196e; }

.btn-outline {
  background: transparent;
  color: var(--grafite);
  border: 2px solid var(--grafite);
}
.btn-outline:hover { background: rgba(45,45,45,0.06); }

.btn-white {
  background: var(--branco);
  color: var(--rosa);
}
.btn-white:hover { background: var(--areia); }

.btn-outline-white {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { border-color: var(--branco); background: rgba(255,255,255,0.08); }

/* ─── SECTION HEADER ───────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--fonte-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--grafite);
  line-height: 1.2;
  margin-top: 10px;
}
.section-header--light h2 { color: var(--branco); }

.eyebrow {
  display: inline-block;
  font-family: var(--fonte-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude);
}
.eyebrow--light { color: var(--rosa-blush); }


/* ═══════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
  padding: 12px 0;
  background: var(--branco);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  height: 56px;
  width: auto;
}
.header__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.header--solid {
  box-shadow: 0 1px 16px rgba(0,0,0,0.08);
  padding: 8px 0;
}
.header--solid .header__logo { height: 44px; }

/* Nav links */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grafite);
  transition: color var(--trans);
  white-space: nowrap;
}
.header__link:hover { color: var(--rosa); }

/* Ações do header (CTA + hamburger) */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger — visível apenas no mobile */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grafite);
  border-radius: 2px;
  transition: background var(--trans);
}


/* ═══════════════════════════════════════════
   HERO ROTATIVO — 4 variações
════════════════════════════════════════════ */
.hero-rotativo {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* barra de progresso */
.hero-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--rosa);
  width: 0%;
  z-index: 20;
}

/* dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 300ms, transform 300ms;
  padding: 0;
}
.hero-dot.active { background: var(--rosa); transform: scale(1.3); }

/* base de cada variação */
.hv {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}
.hv--active { opacity: 1; pointer-events: auto; }

/* textos compartilhados */
.hv__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 18px;
}
.hv__eyebrow--light { color: var(--rosa-blush); }

.hv__headline {
  font-family: var(--fonte-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  color: var(--grafite);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hv__headline--light { color: var(--branco); }

.hv__sub {
  font-size: 16px;
  color: var(--cinza);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.hv__sub--light { color: rgba(255,255,255,0.82); }

.hv__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hv__ctas--center { justify-content: center; }
.hv__ctas--right  { justify-content: flex-end; }

/* ── VAR 1 — Split Claro ── */
.hv-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.hv-1__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 48px;
  background: var(--areia);
}
.hv-1__img { overflow: hidden; }
.hv-1__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 8%;
  transform: scale(1.18);
  transform-origin: center 8%;
}

/* ── VAR 2 — Fullscreen Centro ── */
.hv-2 { height: 100%; }
.hv-2__bg { position: absolute; inset: 0; }
.hv-2__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hv-2__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,14,0.5), rgba(20,10,14,0.65));
}
.hv-2__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  max-width: 760px;
  margin: 0 auto;
}

/* ── VAR 3 — Fullscreen Direita ── */
.hv-3 { height: 100%; }
.hv-3__bg { position: absolute; inset: 0; }
.hv-3__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.hv-3__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(20,10,14,0.72) 0%, rgba(20,10,14,0.72) 42%, transparent 70%);
}
.hv-3__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 48px 64px 48px 48px;
  text-align: right;
}
.hv-3__box { max-width: 480px; }

/* ── VAR 4 — Split Escuro ── */
.hv-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.hv-4__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 48px;
  background: #1a0d12;
}
.hv-4__img { overflow: hidden; position: relative; }
.hv-4__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hv-4__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,13,18,0.3), transparent);
}


/* ═══════════════════════════════════════════
   EMPRESA REAL — galeria grid
════════════════════════════════════════════ */
.empresa-real {
  padding: 80px 0 0;
  background: var(--branco);
}
.empresa-real__header {
  text-align: center;
  margin-bottom: 40px;
}
.empresa-real__header h2 {
  font-family: var(--fonte-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--grafite);
  margin-bottom: 10px;
}
.empresa-real__header p {
  color: var(--cinza);
  font-size: 16px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.galeria-grid__item {
  overflow: hidden;
  background: var(--areia);
}
.galeria-grid__item img {
  transition: transform 0.5s ease;
}
.galeria-grid__item:hover img { transform: scale(1.04); }

.galeria-grid__item--destaque {
  grid-row: span 2;
}


/* ═══════════════════════════════════════════
   SERVIÇOS — cards 6
════════════════════════════════════════════ */
.servicos {
  padding: 80px 0;
  background: var(--areia);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.card-servico {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(196,149,106,0.18);
  transition: box-shadow var(--trans), transform var(--trans);
}
.card-servico:hover {
  box-shadow: var(--sombra);
  transform: translateY(-3px);
}
.card-servico--destaque {
  border-color: var(--nude);
  background: var(--areia);
}
.card-servico__svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--nude);
}
.card-servico__svg svg {
  width: 100%;
  height: 100%;
}
.card-servico--destaque .card-servico__svg {
  color: var(--rosa);
}
.card-servico h3 {
  font-family: var(--fonte-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grafite);
  margin-bottom: 8px;
}
.card-servico p {
  font-size: 13px;
  color: var(--cinza);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════
   INSTAGRAM — grid de conteúdo
════════════════════════════════════════════ */
.instagram-section {
  padding: 80px 0 0;
  background: var(--branco);
}
.instagram-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.instagram-section__header h2 {
  font-family: var(--fonte-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--grafite);
  margin-bottom: 12px;
}
.instagram-section__header p {
  font-size: 16px;
  color: var(--cinza);
}
.ig-slider {
  overflow: hidden;
  width: 100%;
}
.ig-slider__track {
  display: flex;
  gap: 6px;
  will-change: transform;
}

.ig-card {
  flex: 0 0 240px;
  height: 320px;
  overflow: hidden;
  display: block;
  background: var(--cinza-light);
  border-radius: 4px;
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.ig-card:hover img { transform: scale(1.04); }
.instagram-section__cta {
  text-align: center;
  padding: 40px 0 80px;
}


/* ═══════════════════════════════════════════
   AUTORIDADE — fundo escuro com fotos
════════════════════════════════════════════ */
.autoridade {
  background: var(--grafite);
  padding: 96px 0;
  color: var(--branco);
}
.autoridade__topo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.autoridade__texto h2 {
  font-family: var(--fonte-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.2;
  margin: 16px 0 20px;
}
.autoridade__texto > p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
}
.autoridade__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat {
  text-align: left;
}
.stat__num {
  display: block;
  font-family: var(--fonte-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--ocre);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Grade de fotos autoridade */
.autoridade__fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 460px;
}
.autoridade__foto-principal {
  overflow: hidden;
  border-radius: var(--radius);
}
.autoridade__foto-principal img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.autoridade__fotos-lateral {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.autoridade__foto-mini {
  overflow: hidden;
  border-radius: var(--radius);
}
.autoridade__foto-mini img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Diferenciais (sem ícones) */
.diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.diferencial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diferencial strong {
  display: block;
  font-size: 15px;
  color: var(--branco);
  margin-bottom: 6px;
}
.diferencial p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   AVALIAÇÕES — simplificado
════════════════════════════════════════════ */
.avaliacoes {
  padding: 80px 0;
  background: var(--branco);
}
.avaliacoes__nota {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.avaliacoes__estrelas {
  font-size: 22px;
  color: #C9A96E;
  letter-spacing: 2px;
}
.avaliacoes__num {
  font-family: var(--fonte-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--grafite);
  line-height: 1;
}
.avaliacoes__origem {
  font-size: 13px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento {
  background: var(--areia);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 3px solid var(--nude);
}
.depoimento__stars { font-size: 16px; margin-bottom: 14px; }
.depoimento__texto {
  font-family: var(--fonte-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--grafite);
  line-height: 1.7;
  margin-bottom: 16px;
}
.depoimento__autor {
  font-size: 13px;
  font-weight: 700;
  color: var(--nude);
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════
   LOCALIZAÇÃO — info + mapa
════════════════════════════════════════════ */
.localizacao {
  padding: 96px 0;
  background: var(--areia);
}
.localizacao__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.localizacao__info h2 {
  font-family: var(--fonte-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--grafite);
  margin-bottom: 36px;
}
.localizacao__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.localizacao__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.localizacao__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--grafite);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.localizacao__item p, .localizacao__item span {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.5;
}
.localizacao__info .btn { margin-top: 32px; }


/* ═══════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════ */
.cta-final {
  background: var(--nude);
  padding: 72px 0;
}
.cta-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-final h2 {
  font-family: var(--fonte-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 10px;
}
.cta-final p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.cta-final .btn-primary {
  flex-shrink: 0;
  background: var(--branco);
  color: var(--grafite);
}
.cta-final .btn-primary:hover {
  background: var(--areia);
}


/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--grafite);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  height: auto;
  width: 160px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links strong {
  color: var(--branco);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer__links a,
.footer__links span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--trans);
}
.footer__links a:hover { color: var(--rosa-blush); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}


/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__image {
    height: 60vw;
    max-height: 480px;
  }
  .hero__content {
    padding: 48px 24px;
    order: -1;
  }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeria-grid__item--destaque { grid-row: span 1; }

  .servicos__grid { grid-template-columns: repeat(3, 1fr); }
  .autoridade__topo { grid-template-columns: 1fr; gap: 40px; }
  .autoridade__fotos { height: 320px; }
  .autoridade__stats { grid-template-columns: repeat(2, 1fr); }
  .diferenciais { grid-template-columns: 1fr; gap: 20px; }
  .depoimentos { grid-template-columns: 1fr; }
  .localizacao__inner {
    grid-template-columns: 1fr;
  }
  .cta-final__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Header */
  .header__logo { height: 40px; }
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--branco);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .header__nav--open { display: flex; }
  .header__nav .header__link { color: var(--grafite); font-size: 15px; }
  .header__hamburger { display: flex; }
  .header__actions .btn { display: none; }

  /* Hero — mobile: mantém position absolute (funciona), ajusta alturas */
  .hero-rotativo { height: auto; min-height: unset; }

  /* VAR 1 — empilha foto + conteúdo */
  .hv-1 {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .hv-1__img { height: 56vw; flex-shrink: 0; order: 0; margin-top: 64px; }
  .hv-1__content { order: 1; padding: 20px 20px 36px; position: relative; z-index: 1; background: var(--areia); }

  /* VAR 2 — fullscreen */
  .hv-2 { height: calc(100vw - 64px); min-height: 440px; margin-top: 64px; }
  .hv-2__content { padding: 32px 20px 32px; }

  /* VAR 3 — fullscreen */
  .hv-3 { height: calc(100vw - 64px); min-height: 440px; margin-top: 64px; }
  .hv-3__content { padding: 32px 20px 32px; align-items: flex-start; text-align: left; }
  .hv-3__box { max-width: 100%; }
  .hv__ctas--right { justify-content: flex-start; }
  .hv-3__overlay {
    background: linear-gradient(to bottom, rgba(20,10,14,0.55), rgba(20,10,14,0.75));
  }

  /* VAR 4 — empilha foto + conteúdo */
  .hv-4 {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .hv-4__img { height: 56vw; flex-shrink: 0; order: 0; margin-top: 64px; }
  .hv-4__content { order: 1; padding: 20px 20px 36px; position: relative; z-index: 1; background: #1a0d12; }

  /* hero-rotativo precisa de altura calculada pelo ativo */
  .hv-1.hv--active,
  .hv-4.hv--active { position: relative; inset: auto; opacity: 1; pointer-events: auto; }
  .hv-2.hv--active,
  .hv-3.hv--active { position: relative; inset: auto; opacity: 1; pointer-events: auto; }

  /* esconde inativos */
  .hv:not(.hv--active) { display: none !important; }

  /* dots */
  .hero-dots { position: relative; bottom: auto; transform: none; left: auto;
    display: flex; justify-content: center; padding: 16px 0 8px; background: var(--branco); }
  .hero-dot { background: rgba(45,45,45,0.25); }
  .hero-dot.active { background: var(--rosa); }
  .hero-bar { display: none; }

  /* tipografia e botões */
  .hv__headline { font-size: 22px; line-height: 1.2; }
  .hv__headline--light { font-size: 22px; }
  .hv__sub { font-size: 13px; margin-bottom: 20px; max-width: 100%; }
  .hv__eyebrow { font-size: 9px; margin-bottom: 12px; }
  .hv__ctas { flex-direction: row; gap: 8px; flex-wrap: wrap; }
  .hv__ctas .btn { padding: 11px 18px; font-size: 12px; flex: 1; justify-content: center; }
  .hv__ctas--center { justify-content: center; }
  .hv__ctas--right { justify-content: flex-start; }

  /* Galeria */
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galeria-grid__item { height: 180px; }
  .galeria-grid__item--destaque { grid-column: span 2; height: 240px; }

  /* Produtos */
  .servicos { padding: 56px 0; }
  .servicos__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Instagram */
  .ig-card { flex: 0 0 180px; height: 240px; }

  /* Autoridade */
  .autoridade { padding: 64px 0; }
  .autoridade__topo { grid-template-columns: 1fr; gap: 32px; }
  .autoridade__fotos { height: 220px; }
  .autoridade__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat__num { font-size: 32px; }
  .diferenciais { grid-template-columns: 1fr; }

  /* Avaliações */
  .avaliacoes { padding: 56px 0; }
  .depoimentos { grid-template-columns: 1fr; gap: 16px; }

  /* Localização */
  .localizacao { padding: 56px 0; }
  .localizacao__mapa iframe { height: 280px; }

  /* CTA Final */
  .cta-final { padding: 56px 0; }
  .cta-final__inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-final h2 { font-size: clamp(22px, 6vw, 32px); }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__logo { width: 120px; }
}
