/* ===== Base (mantém v3.1) ===== */
:root{
  --bg-1:#4a2d22;
  --bg-2:#100C0A;
  --ink:#EDE9E6;
  --muted:#BBA9A0;
  --brand:#563627;
  --brand-2:#3c251c;
  --chip:#1E1613;
  --surface:#0f0b09;
  --btn-ink:#F5ECE6;
  --radius:18px;
  --shadow:0 20px 60px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color:var(--ink);
  background: var(--surface);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ===== HERO – 100% da tela ===== */
.hero{
  position:relative;
  height:100svh; height:100dvh; min-height:100vh;
  display:flex; align-items:center;
  isolation:isolate; overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(86,54,39,.35), transparent 60%),
    radial-gradient(800px 500px at 70% 80%, rgba(86,54,39,.28), transparent 65%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 70%);
  z-index:-2;
}
.hero::before{ content:""; position:absolute; inset:0; background-image:url('images/noise.png'); opacity:.06; mix-blend-mode:soft-light; pointer-events:none; z-index:-1; }
.hero__glow{ position:absolute; right:-8vw; bottom:-8vh; width:60vw; height:60vw; max-height:80vh; background: radial-gradient(closest-side, rgba(107,64,48,.35), rgba(0,0,0,0)); filter: blur(50px); pointer-events:none; }

/* container em grid ocupando a altura inteira */
.hero__container{
  height:100%;
  width:min(1280px, 92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:max(44px, 4vw);
  align-items:center;
  padding-inline: clamp(8px, 1.6vw, 24px);
}

/* ===== Coluna esquerda ===== */
.hero__content{ display:flex; flex-direction:column; gap:32px; }
.hero__logo{ height: clamp(88px, 12vw, 132px); width:auto; filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)); }
.hero__copy{ max-width:48ch; }
.hero__kicker{ display:block; font-weight:700; letter-spacing:.2px; font-size: clamp(18px, 2.1vw, 22px); color: var(--muted); margin-bottom:10px; }
.hero__headline{ display:block; line-height:1.08; font-weight:800; font-size: clamp(28px, 4.1vw, 48px); background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%); -webkit-background-clip:text; background-clip:text; color:transparent; text-shadow:0 10px 30px rgba(0,0,0,.35); letter-spacing:-.2px; margin-bottom:8px; }
.hero__line{ margin:6px 0; font-size: clamp(15px, 1.3vw, 18px); color:var(--ink); opacity:.92; }
.hero__chips{ display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 2px; }
.chip{ background: linear-gradient(180deg, var(--chip), rgba(18,12,10,.85)); border:1px solid rgba(255,255,255,.06); color:var(--ink); padding:10px 14px; border-radius:999px; font-size:14px; font-weight:700; box-shadow: inset 0 1px 0 rgba(255,255,255,.06), var(--shadow); }
.chip--alt{ background: linear-gradient(180deg, #211510, #1a120f); opacity:.9 }
.hero__sub{ margin-top:14px; color:var(--muted); font-size: clamp(13px, 1.1vw, 16px); }

/* ===== CTA ===== */
.hero__cta{ margin-top:12px; }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:12px; text-decoration:none; cursor:pointer; user-select:none; padding:15px 24px; border-radius:999px; font-weight:800; letter-spacing:.3px; transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease; position:relative; overflow:hidden; }
.btn--wa{ color:var(--btn-ink); background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%); border:1px solid rgba(255,255,255,.08); box-shadow:0 14px 38px rgba(28,14,10,.55), inset 0 0 0 1px rgba(255,255,255,.04); }
.btn--wa .btn__icon{ color:var(--btn-ink); }
.btn--wa::after{ content:""; position:absolute; inset:0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.12) 40%, transparent 70%); transform: translateX(-120%); }
.btn--wa:hover::after{ transform: translateX(120%); transition: transform .8s ease; }
@keyframes gentlePulse{ 0%{transform:translateY(0); box-shadow:0 14px 38px rgba(28,14,10,.55), inset 0 0 0 1px rgba(255,255,255,.04);} 50%{transform:translateY(-1px); box-shadow:0 20px 54px rgba(28,14,10,.65), inset 0 0 0 1px rgba(255,255,255,.05);} 100%{transform:translateY(0); box-shadow:0 14px 38px rgba(28,14,10,.55), inset 0 0 0 1px rgba(255,255,255,.04);} }
@media (prefers-reduced-motion:no-preference){ .btn--wa{ animation: gentlePulse 3.2s ease-in-out infinite; } }
.btn--wa:hover{ transform: translateY(-2px); }
.btn--wa:active{ transform: translateY(0) scale(.99); }
.btn--wa:focus-visible{ outline:2px solid #EBD6CB; outline-offset:4px; }
.btn__icon{ display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; line-height:0; }

/* ===== Coluna direita (FOTO) — bottom-aligned, grande, com respiro lateral e no topo ===== */
.hero__art{
  position:relative;
  height:100%;
  display:flex;
  align-items:flex-end;           /* cola a imagem no bottom */
  justify-content:center;
  /* respiro nos lados e no topo; bottom 0 para colar */
  padding: clamp(18px, 2.4vw, 30px) clamp(22px, 2.8vw, 36px) 0;
}
.hero__photo{
  /* grande, mas sem exceder a altura da viewport */
  height: 95svh;                  /* aproxima do topo */
  max-height: calc(100svh - 28px);/* garante sem rolagem */
  width: auto;
  max-width: 46vw;                /* evita invadir o texto */
  object-fit: contain;
  object-position: bottom center; /* ancora em baixo */
  filter: drop-shadow(0 22px 60px rgba(0,0,0,.6));
}

/* ============== SEÇÃO: VÍDEO DE VENDAS ============== */
.section-video{
  position: relative;
  /* RESPIRO ENTRE SESSÕES (acima e abaixo) */
  margin-top: clamp(72px, 10vh, 128px);
  margin-bottom: clamp(72px, 10vh, 128px);

  /* RESPIRO INTERNO DA SEÇÃO */
  padding: clamp(80px, 10vh, 120px) 0;

  background: linear-gradient(180deg, rgba(20,12,10,0) 0%, rgba(20,12,10,.35) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.section-video__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px; /* respiro interno */
}

.section-video__header{
  text-align: center;
  max-width: 72ch;
  margin-bottom: 12px; /* respiro extra sob o header */
}

.section-video__title{
  margin: 0 0 14px;           /* antes: 10px */
  font-weight: 800;
  font-size: 34px;            /* sem responsivo por enquanto */
  line-height: 1.12;
  letter-spacing: -.2px;
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.section-video__subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* Wrapper com a mesma largura do vídeo */
.video-wrap{
  width: 720px;               /* igual ao iframe */
  margin: 10px auto 0;
}

.video-frame{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  outline: 1px solid rgba(255,255,255,.05);
}

/* CTA com a MESMA largura do vídeo + respiro maior */
.video-cta{
  width: 720px;               /* igual ao iframe */
  margin: 24px auto 0;        /* antes: 18px */
}

/* Botão herdado (já existente): ocupar 100% e acolchoamento maior */
.btn--block{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* ============== SEÇÃO: SERVIÇOS (grade) ============== */
.section-services{
  position: relative;
  margin-top: clamp(72px, 10vh, 128px);    /* respiro entre sessões */
  margin-bottom: clamp(72px, 10vh, 128px);
  padding: clamp(56px, 8vh, 92px) 0;       /* respiro interno */
  background: linear-gradient(180deg, rgba(20,12,10,0) 0%, rgba(20,12,10,.32) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.services__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

/* Cabeçalho */
.services__header{
  text-align: center;
  max-width: 78ch;
  margin: 0 auto 6px;
}
.services__title{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: .2px;
  text-transform: none;
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.services__lead{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* Grade — lado a lado (sem responsivo por enquanto) */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* lado a lado */
  gap: 18px 18px;                          /* linhas x colunas */
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

/* Card */
.service-card{
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #FFFFFF;
  color: #2b211c;
  box-shadow:
    0 22px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.6);
  outline: 1px solid rgba(0,0,0,.04);
  transition: transform .16s ease, box-shadow .22s ease, outline-color .22s ease, background .22s ease;
}

.service-card__icon{
  width: 56px; height: 56px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 24px;
  background: linear-gradient(180deg, #F6EEE9 0%, #E8D3C7 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.service-card__text{ display: grid; gap: 4px; }
.service-card__title{
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .2px;
}
.service-card__subtitle{
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}

/* Interações */
.service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
}
.service-card:active{ transform: translateY(0) scale(.99); }
.service-card:focus-within{ outline-color: rgba(86,54,39,.35); }

/* Linha sutil para fechar visual */
.section-services::after{
  content:"";
  display:block;
  height:1px;
  width:100%;
  margin-top: clamp(48px, 6vh, 72px);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.06), rgba(255,255,255,0));
}

/* ============== SEÇÃO: DIVIDER (SETA ENTRE SESSÕES) ============== */
.section-divider{
  position: relative;
  margin-top: clamp(28px, 5vh, 56px);
  margin-bottom: clamp(28px, 5vh, 56px);
}
.divider__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.divider__chevron{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  color: #EBD6CB;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(closest-side, rgba(235,214,203,.12), rgba(235,214,203,0));
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  opacity: .95;
}
@keyframes cueDown {
  0%   { transform: translateY(0);   opacity: .9; }
  50%  { transform: translateY(4px); opacity: 1;  }
  100% { transform: translateY(0);   opacity: .9; }
}
@media (prefers-reduced-motion:no-preference){
  .divider__chevron { animation: cueDown 1.8s ease-in-out infinite; }
}


/* ============== SEÇÃO: QUEIXAS (foto left, texto right, pergunta+CTA no right) ============== */
.section-queixas{
  position: relative;
  margin-top: clamp(72px, 10vh, 128px);
  margin-bottom: clamp(72px, 10vh, 128px);
  padding: clamp(64px, 8vh, 96px) 0;
  background: linear-gradient(180deg, rgba(20,12,10,0) 0%, rgba(20,12,10,.30) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.queixas__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;  /* foto esquerda, texto direita */
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

/* Foto */
.queixas__media{ margin: 0; padding: 0; display: block; align-self: stretch; position: relative; }
.queixas__photo{
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px;
  outline: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  mask-image: radial-gradient(140% 100% at 50% 50%, #000 70%, rgba(0,0,0,0) 105%);
  -webkit-mask-image: radial-gradient(140% 100% at 50% 50%, #000 70%, rgba(0,0,0,0) 105%);
}

/* Texto */
.queixas__content{ display: grid; gap: 18px; }
.queixas__header{ display: grid; gap: 8px; }
.queixas__title{
  margin: 0;
  font-weight: 800; font-size: 32px; line-height: 1.14; letter-spacing: -.2px;
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.queixas__lead{ margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }

/* Lista (chips) */
.queixas__list{
  list-style: none; padding: 0; margin: 6px 0 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.queixa-chip{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 999px;
  background: linear-gradient(180deg, #1E1613, rgba(18,12,10,.85));
  color: var(--ink);
  font-weight: 600; font-size: 14px; letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 26px rgba(0,0,0,.35);
  transition: transform .16s ease, box-shadow .22s ease, background .22s ease;
}
.queixa-chip::before{
  content:""; width: 6px; height: 6px; border-radius: 999px;
  background: #EBD6CB; box-shadow: 0 0 0 2px rgba(235,214,203,.18);
}
.queixa-chip:hover{ transform: translateY(-1px); box-shadow: 0 16px 40px rgba(0,0,0,.42); }
.queixa-chip:active{ transform: translateY(0) scale(.99); }

/* Fechamento (pergunta + CTA) — no RIGHT sob a lista */
.queixas__closing{
  margin-top: 10px;
  display: grid; gap: 12px;
  justify-items: start;
}
.queixas__question{
  margin: 0;
  font-weight: 700; font-size: 18px;
  color: var(--ink); opacity: .95;
}

/* Botão “brand” reutilizando paleta/UX existentes */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:12px; text-decoration:none; cursor:pointer; user-select:none;
  padding: 15px 24px; border-radius:999px;
  font-weight:800; letter-spacing:.3px;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  position:relative; overflow:hidden;
}
.btn--brand{
  color: var(--btn-ink);
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 38px rgba(28,14,10,.55), inset 0 0 0 1px rgba(255,255,255,.04);
}
.btn--brand:hover{ transform: translateY(-2px); box-shadow: 0 20px 54px rgba(28,14,10,.65); }
.btn--brand:active{ transform: translateY(0) scale(.99); }
.btn--brand:focus-visible{ outline:2px solid #EBD6CB; outline-offset:4px; }

/* Acessibilidade */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============== SEÇÃO: VÍDEOS – CLIMATÉRIO → ESTÉTICA ÍNTIMA ============== */
.section-videos{
  position: relative;
  /* mais espaço na tela */
  margin-top: clamp(72px, 10vh, 128px);
  margin-bottom: clamp(72px, 10vh, 128px);
  padding: clamp(80px, 12vh, 140px) 0; /* ocupa mais espaço */
  background: linear-gradient(180deg, rgba(20,12,10,0) 0%, rgba(20,12,10,.35) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.videos__container{
  width: min(1280px, 94vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 4vh, 36px);
  justify-items: center;
  text-align: center;
}

/* Headline */
.videos__header{ width: 100%; }
.videos__title{
  margin: 0;
  font-weight: 800;
  font-size: 36px; /* maior para protagonizar */
  line-height: 1.12;
  letter-spacing: -.2px;
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 36px rgba(0,0,0,.45);
}
.videos__header--alt .videos__title--alt{
  font-size: 32px;
}

/* Vídeos maiores (sem responsivo por enquanto) */
.videos__wrap{ width: 960px; }
.videos__frame{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
  outline: 1px solid rgba(255,255,255,.06);
  background: #000; /* fallback enquanto carrega */
}
.videos__frame--lg iframe{
  display: block;
  width: 960px;
  height: 540px;
}

/* Conector entre os vídeos (linha do tempo sutil) */
.videos__connector{
  position: relative;
  height: clamp(56px, 10vh, 120px);
  display: grid;
  place-items: center;
}
.connector__line{
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(235,214,203,.0), rgba(235,214,203,.22), rgba(235,214,203,.0));
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.35));
}
.connector__dot{
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: #EBD6CB;
  box-shadow:
    0 0 0 3px rgba(235,214,203,.18),
    0 10px 26px rgba(0,0,0,.35);
}
.connector__dot--top{ top: -6px; }
.connector__dot--bottom{ bottom: -6px; }

/* micro animação respirando na linha */
@keyframes breathe {
  0%   { opacity: .8; }
  50%  { opacity: 1;  }
  100% { opacity: .8; }
}
@media (prefers-reduced-motion:no-preference){
  .connector__line{ animation: breathe 2.4s ease-in-out infinite; }
}


/* ============== SEÇÃO: DEPOIMENTOS (masonry + CTA) ============== */
.section-testimonials{
  position: relative;
  margin-top: clamp(72px, 10vh, 128px);
  margin-bottom: clamp(72px, 10vh, 128px);
  padding: clamp(64px, 8vh, 96px) 0;
  background: linear-gradient(180deg, rgba(20,12,10,0) 0%, rgba(20,12,10,.24) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.testi__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

/* Headline fora das imagens */
.testi__header{ max-width: 78ch; }
.testi__title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -.2px;
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 12px 36px rgba(0,0,0,.45);
}
.testi__lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  opacity: .95;
}

/* Masonry com colunas (sem JS) — acomoda alturas diferentes */
.testi__masonry{
  columns: 3;                /* 3 colunas */
  column-gap: 18px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  width: 100%;
}
.testi__item{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 18px;
  /* bloco que “abraça” o print para sombra melhor */
  background: #1a1613;
  border-radius: 16px;
  padding: 10px;             /* moldura interna leve */
  box-shadow:
    0 28px 90px rgba(0,0,0,.60),      /* sombra externa forte p/ destacar no preto */
    inset 0 1px 0 rgba(255,255,255,.06);
  outline: 1px solid rgba(255,255,255,.04);
  transition: transform .16s ease, box-shadow .22s ease;
}
.testi__item:hover{
  transform: translateY(-2px);
  box-shadow:
    0 36px 110px rgba(0,0,0,.68),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* Imagem do print:
   - Fundo padrão dos prints: #29292a
   - Borda e sombra internas p/ ganhar leitura no fundo escuro */
.testi__img{
  display: block;
  width: 100%;
  height: auto;              /* alturas diferentes OK */
  object-fit: contain;
  background: #29292a;       /* cor informada dos prints */
  border-radius: 12px;
  /* “moldura” do print no próprio card */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),   /* contorno sutil claro */
    0 1px 0 rgba(255,255,255,.08);           /* linha de luz superior (suave) */
}

/* CTA própria (diferente do WA): “ghost-alt” */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none; cursor:pointer; user-select:none;
  padding: 13px 20px; border-radius:999px;
  font-weight:800; letter-spacing:.3px;
  transition: transform .16s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn--ghost-alt{
  color: #EBD6CB;
  background: rgba(235,214,203,.07);   /* mais translúcido que o brand */
  border: 1px dashed rgba(235,214,203,.35); /* traçado diferenciado */
  box-shadow: 0 12px 34px rgba(0,0,0,.45);
}
.btn--ghost-alt:hover{
  transform: translateY(-1px);
  background: rgba(235,214,203,.12);
  border-color: rgba(235,214,203,.55);
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
}
.btn--ghost-alt:active{ transform: translateY(0) scale(.99); }
.btn--ghost-alt:focus-visible{ outline:2px solid #EBD6CB; outline-offset:4px; }

.testi__footer{
  margin-top: 6px;
  display: grid;
  justify-items: center;
}


/* ============== SEÇÃO: APRESENTAÇÃO (texto left, foto right) ============== */
.section-about{
  position: relative;
  margin-top: clamp(72px, 10vh, 128px);
  margin-bottom: clamp(72px, 10vh, 128px);
  padding: clamp(64px, 8vh, 96px) 0;
  background: linear-gradient(180deg, rgba(20,12,10,0) 0%, rgba(20,12,10,.28) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.about__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* texto left, foto right */
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

/* ===== Texto ===== */
.about__content{ display: grid; gap: 18px; }
.about__header{ display: grid; gap: 14px; }

.about__title{
  margin: 0;
  font-weight: 800;
  font-size: 34px;              /* maior para protagonizar */
  line-height: 1.12;
  letter-spacing: -.2px;
  color: var(--ink);
  text-wrap: balance;
}
.about__name{
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 36px rgba(0,0,0,.45);
}
.about__role{
  color: var(--muted);
  font-weight: 700;
}

/* RQE destacado (maior) */
.about__rqe{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 18px;              /* maior como pedido */
  font-weight: 800;
  letter-spacing: .3px;
  background: linear-gradient(180deg, var(--chip, #1E1613), rgba(18,12,10,.85));
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 36px rgba(0,0,0,.38);
  width: fit-content;
}

.about__body{ display: grid; gap: 14px; max-width: 60ch; }
.about__lead{
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  opacity: .95;
}

/* Tags (áreas de atuação) */
.about__tags{
  list-style: none;
  padding: 0; margin: 8px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag{
  display: inline-flex; align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700; font-size: 12px; letter-spacing: .3px;
  color: var(--ink);
  background: linear-gradient(180deg, #1E1613, rgba(18,12,10,.85));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 22px rgba(0,0,0,.35);
}

/* ===== Foto (right) ===== */
.about__media{
  margin: 0; padding: 0; display: block; align-self: stretch; position: relative;
}
.about__photo{
  width: 100%;
  height: 100%;
  max-width: 520px;            /* controla a largura do retrato */
  aspect-ratio: 3 / 4;         /* mantém retrato vertical elegante */
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  outline: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  background: #0b0908;         /* fallback */
}

/* Acessibilidade utilitária */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============== HERO: 3 VÍDEOS VERTICAIS ============== */
.hero-trivids{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* +respiro: aumentei os paddings e a margem inferior para “preparar” as FAQs */
  padding: clamp(64px, 12vh, 140px) 0;
  margin-bottom: clamp(56px, 10vh, 128px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.trivids__bg{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #4a2d22 0%, #120d0b 100%);
  z-index: 0;
}
.trivids__container{
  position: relative; z-index: 1;
  width: min(1280px, 94vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vh, 40px); /* +respiro entre topo, grid e callout */
}

/* Headline topo */
.trivids__header{ text-align: center; display: grid; gap: 10px; }
.trivids__title{
  margin: 0;
  font-weight: 800;
  font-size: 38px; /* levemente maior */
  line-height: 1.12;
  letter-spacing: -.2px;
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 12px 36px rgba(0,0,0,.45);
}
.trivids__kicker{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  opacity: .95;
}

/* Grade com 3 vídeos (lado a lado) */
.trivids__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; /* +respiro entre os cards */
  justify-items: center;
}

/* Card de vídeo vertical */
.trivid{ margin: 0; padding: 0; width: 360px; }
.trivid__wrap{
  position: relative;
  width: 360px; height: 640px;  /* 9:16 */
  border-radius: 22px;
  overflow: hidden;
  background: #0b0908;
  outline: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 32px 120px rgba(0,0,0,.64),
    inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .18s ease, box-shadow .24s ease;
}
.trivid__wrap:hover{
  transform: translateY(-2px);
  box-shadow:
    0 40px 140px rgba(0,0,0,.72),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.trivid iframe{ display:block; width:100%; height:100%; }

/* Etiqueta/Tag */
.trivid__tag{
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 8px 12px; border-radius: 999px;
  font-weight: 800; font-size: 12px; letter-spacing: .3px;
  color: #2b211c;
  background: linear-gradient(180deg, #F6EEE9 0%, #E8D3C7 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.6);
}

/* Legenda sob cada vídeo */
.trivid__caption{
  margin: 12px 6px 0; /* +respiro */
  color: var(--ink);
  font-size: 15px; /* 14 -> 15 para leitura melhor */
  line-height: 1.55;
  text-align: center;
  opacity: .95;
}

/* Callout destacado (antes das FAQs) */
.trivids__footer{ display: grid; place-items: center; margin-top: clamp(10px, 2vh, 18px); }
.trivids__callout{
  width: min(1080px, 92vw);
  padding: clamp(22px, 4vh, 34px) clamp(18px, 3vw, 28px);
  border-radius: 20px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(235,214,203,.08), rgba(235,214,203,0)),
    linear-gradient(180deg, rgba(30,22,19,.85), rgba(18,12,10,.82));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 28px 90px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* Frase em destaque (maior + forte) */
.trivids__desc{
  margin: 0;
  max-width: 96ch;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  opacity: .98;
}
.trivids__desc--emph{
  font-weight: 800;           /* destaque */
  font-size: 20px;            /* maior */
  letter-spacing: .2px;
}

/* ============== SEÇÃO: FAQ ============== */
.section-faq{
  position: relative;
  margin-top: clamp(86px, 12vh, 160px);   /* bem respiro */
  margin-bottom: clamp(86px, 12vh, 160px);
  padding: clamp(72px, 10vh, 128px) 0;    /* bem respiro interno */
  background: linear-gradient(180deg, rgba(20,12,10,0) 0%, rgba(20,12,10,.28) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.faq__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.faq__header{ text-align: center; display: grid; gap: 8px; }
.faq__title{
  margin: 0;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.2px;
  background: linear-gradient(180deg, #F3ECE8 0%, #DACBC3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 12px 36px rgba(0,0,0,.45);
}
.faq__lead{ margin: 0; color: var(--muted); font-size: 16px; opacity:.95; }

/* Lista */
.faq__list{ display: grid; gap: 14px; }

/* Item (details) estilizado */
.faq{
  background: linear-gradient(180deg, #1E1613, rgba(18,12,10,.88));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 70px rgba(0,0,0,.5);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.faq[open]{
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 30px 90px rgba(0,0,0,.58);
  border-color: rgba(235,214,203,.22);
}

/* Cabeçalho da pergunta */
.faq__question{
  list-style: none;
  cursor: pointer;
  position: relative;
  display: grid;
  align-items: center;
  padding: 18px 56px 18px 20px;
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .2px;
  user-select: none;
}
.faq__question::-webkit-details-marker{ display:none; }

/* Ícone +/– */
.faq__question::after{
  content: "+";
  position: absolute;
  right: 18px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 800;
  color: #2b211c;
  background: linear-gradient(180deg, #F6EEE9 0%, #E8D3C7 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.6);
}
.faq[open] .faq__question::after{ content: "–"; }

/* Resposta (abre com transição) */
.faq__answer{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  padding: 0 20px 18px 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .35s ease, opacity .28s ease, transform .28s ease;
}
.faq[open] .faq__answer{
  max-height: 400px;  /* suficiente p/ textos curtos */
  opacity: 1;
  transform: translateY(0);
}


/* ============== SEÇÃO: FOOTER ============== */
.section-footer{
  position: relative;
  margin-top: clamp(96px, 14vh, 180px);     /* bem respiro antes do footer */
  padding: clamp(72px, 10vh, 128px) 0 0;    /* respiro interno e depois barra de créditos */
  background: linear-gradient(180deg, rgba(20,12,10,.22), rgba(20,12,10,.38));
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer__container{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;     /* brand | contato | social */
  align-items: start;
  gap: clamp(22px, 4vw, 48px);
  padding-bottom: clamp(34px, 6vh, 56px);
}

.footer__brand{ display: grid; gap: 12px; }
.footer__logo{
  width: 220px; height: auto;               /* logo com presença */
  filter: drop-shadow(0 16px 42px rgba(0,0,0,.5));
}
.footer__tagline{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  opacity: .95;
}

.footer__contact{ display: grid; gap: 12px; }
.footer__addr, .footer__phone{
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  opacity: .95;
}
.footer__addr strong, .footer__phone strong{ color: var(--ink); }

/* Social + navegação curta */
.footer__social{
  display: grid;
  gap: 12px;
  justify-items: start;
}
.btn-social{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  color: #EBD6CB; text-decoration: none; font-weight: 800; letter-spacing: .3px;
  border: 1px solid rgba(235,214,203,.28);
  background: rgba(235,214,203,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .16s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn-social:hover{
  transform: translateY(-1px);
  background: rgba(235,214,203,.12);
  border-color: rgba(235,214,203,.5);
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
}
.footer__link{
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  border-bottom: 1px dashed rgba(235,214,203,.35);
  padding-bottom: 2px;
  transition: opacity .2s ease;
}
.footer__link:hover{ opacity: .85; }

/* Créditos */
.footer__credits{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(20,12,10,.38), rgba(20,12,10,.50));
}
.footer__small{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  opacity: .9;
}
.footer__small a{
  color: #EBD6CB;
  text-decoration: none;
  border-bottom: 1px dashed rgba(235,214,203,.4);
}

/* Acessibilidade utilitária */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============== BOTÃO FLUTUANTE: WHATSAPP ============== */
.wa-float{
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #25D366; /* verde WhatsApp */
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow:
    0 18px 46px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.35);
  outline: 1px solid rgba(0,0,0,.06);
  transition: transform .16s ease, box-shadow .22s ease, filter .22s ease;
  animation: waFloat 2.4s ease-in-out infinite; /* movimento suave */
}
.wa-float::after{
  content:"";
  position: absolute; inset: -6px;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(37,211,102,.18), rgba(37,211,102,0));
  pointer-events: none;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow:
    0 24px 58px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.4);
  filter: saturate(1.04);
}
.wa-float:active{ transform: translateY(0) scale(.98); }

/* Ícone oficial em branco */
.wa-float__icon{ display:block; }

/* Animações */
@keyframes waFloat{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .wa-float{ animation: none; }
}


/* ============================= */
/* RESPONSIVO COMPLETO (AJUSTADO)*/
/* Cole no FINAL do style.css    */
/* ============================= */

/* --- Espaçamento de seções (global, mais contido) --- */
.section-video,
.section-services,
.section-divider,
.section-queixas,
.section-videos,
.section-testimonials,
.section-about,
.section-faq{
  margin-top: clamp(44px, 6vh, 84px);
  margin-bottom: clamp(44px, 6vh, 84px);
}
.section-video,
.section-queixas,
.section-videos,
.section-testimonials,
.section-about,
.section-faq{
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(40px, 6vh, 80px);
}

/* --- Footer centralizado (sempre) --- */
.section-footer{
  margin-top: clamp(56px, 8vh, 100px);
  text-align: center;
}
.footer__container{
  justify-items: center;
  text-align: center;
}
.footer__brand,
.footer__contact,
.footer__social{ justify-items: center; }
.btn-social{ justify-content: center; }

/* --- Divisor mais leve --- */
.divider__chevron{
  opacity: .88;
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
}

/* ===================================================== */
/* DESKTOP / LARGE (>= 961px): Mantém HERO como estava   */
/* ===================================================== */
@media (min-width: 961px){
  /* HERO permanece alinhada à esquerda no desktop */
  .hero__container{ padding-block-start: 0; }
  .hero__content{
    align-items: flex-start;
    text-align: left;
    gap: 32px;
  }
  .hero__logo{ margin-top: 0; }

  /* Larguras e grids amplos */
  .hero__container{ width: min(1280px, 92vw); }
  .about__container{ width: min(1180px, 92vw); }
  .videos__container{ width: min(1280px, 94vw); }
}

/* ========================================= */
/* até 1280px                                */
/* ========================================= */
@media (max-width: 1280px){
  .hero__container{
    width: min(1180px, 94vw);
    grid-template-columns: 1fr 1fr;
    gap: max(32px, 3vw);
  }
  .about__container,
  .videos__container{
    width: min(1180px, 94vw);
  }
}

/* ========================================= */
/* até 1100px                                */
/* ========================================= */
@media (max-width: 1100px){
  /* HERO: foto um pouco menor */
  .hero__photo{
    max-width: 52vw;
    height: auto;
    max-height: calc(100svh - 40px);
  }
  .hero__copy{ max-width: 56ch; }

  /* Serviços: 3 → 2 colunas */
  .services-grid{ grid-template-columns: repeat(2, 1fr); }

  /* About: 2 colunas equilibradas */
  .about__container{ grid-template-columns: 1fr 1fr; }

  /* Trivids: cartões menores */
  .trivid, .trivid__wrap{ width: 300px; }
  .trivid__wrap{ height: 533px; } /* 9:16 */
  .trivid__caption{ font-size: 14px; }
}

/* ========================================= */
/* até 960px (tablet e mobile)               */
/* ========================================= */
@media (max-width: 960px){
  /* HERO: centralizada só no mobile/tablet */
  .hero__container{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    align-items: start;
    padding-inline: clamp(14px, 3.5vw, 24px);
    padding-block-start: clamp(18px, 3.5vh, 36px); /* respiro superior p/ logo */
  }
  .hero__content{
    order: 1;
    align-items: center;
    text-align: center;
    gap: 22px;
  }
  .hero__logo{ margin-top: 4px; } /* micro respiro */
  .hero__art{
    order: 2;
    align-items: flex-end;
    padding: clamp(10px, 2vw, 16px) 0 0;
  }
  .hero__photo{
    max-width: 86vw;
    height: auto;
    max-height: 68svh;
  }
  .btn--wa{ width: 100%; }  /* CTA ocupa largura */

  /* Vídeo de vendas: fluido 16:9 */
  .video-wrap,
  .video-cta{ width: 100%; max-width: 720px; }
  .video-frame iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Trivids: 3 → 2 colunas */
  .trivids__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .trivid,
  .trivid__wrap{ width: 280px; }
  .trivid__wrap{ height: 498px; } /* 9:16 */

  /* Queixas: 1 coluna */
  .queixas__container{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .queixas__list{ grid-template-columns: 1fr; }
  .queixas__closing{ justify-items: stretch; }
  .queixas__cta{ width: 100%; }

  /* Vídeos climaterio/estética: fluidos */
  .videos__wrap{ width: 100%; }
  .videos__frame--lg iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Depoimentos: 3 → 2 colunas */
  .testi__masonry{ columns: 2; column-gap: 16px; }

  /* About */
  .about__photo{ max-width: 440px; }
}

/* ========================================= */
/* até 720px (mobile grande)                 */
/* ========================================= */
@media (max-width: 720px){
  /* Tipografia */
  .services__title{ font-size: 28px; }
  .videos__title{ font-size: 30px; }
  .videos__header--alt .videos__title--alt{ font-size: 26px; }
  .testi__title{ font-size: 28px; }
  .about__title{ font-size: 28px; }
  .queixas__title{ font-size: 28px; }
  .section-video__title{ font-size: 28px; }

  /* Serviços: 2 → 1 coluna */
  .services-grid{ grid-template-columns: 1fr; }

  /* Trivids: 2 → 1 coluna; 9:16 fluido */
  .trivids__grid{ grid-template-columns: 1fr; }
  .trivid, .trivid__wrap{ width: min(92vw, 360px); }
  .trivid__wrap{ height: auto; aspect-ratio: 9 / 16; }
  .trivid iframe{ width: 100%; height: 100%; }

  /* FAQ: alvos maiores */
  .faq__question{
    padding: 16px 54px 16px 16px;
    font-size: 17px;
  }
  .faq__answer{
    font-size: 15px;
    padding: 0 16px 16px 16px;
  }

  /* Footer: 3 → 1 coluna */
  .footer__container{
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }
  .footer__logo{ width: 200px; }
}

/* ========================================= */
/* até 560px (mobile)                        */
/* ========================================= */
@media (max-width: 560px){
  /* HERO: escalas mais contidas */
  .hero__logo{ height: clamp(76px, 16vw, 100px); }
  .hero__headline{ font-size: clamp(26px, 9vw, 34px); }
  .hero__line{ font-size: clamp(14px, 3.6vw, 16px); }
  .chip{ font-size: 13px; padding: 9px 12px; }
  .hero__sub{ font-size: clamp(12px, 3.4vw, 15px); }

  /* Cards de serviço mais compactos */
  .service-card{
    grid-template-columns: 48px 1fr;
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
  }
  .service-card__icon{
    width: 48px; height: 48px; font-size: 22px;
  }
  .service-card__title{ font-size: 17px; }
  .service-card__subtitle{ font-size: 12px; }

  /* Depoimentos: 2 → 1 coluna */
  .testi__masonry{ columns: 1; column-gap: 14px; }
  .testi__item{ padding: 8px; border-radius: 14px; }

  /* About empilhado */
  .about__container{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about__photo{
    max-width: 92vw;
    aspect-ratio: 3 / 4;
  }

  /* Divider: chevron menor */
  .divider__chevron{ width: 40px; height: 40px; }
}

/* ========================================= */
/* até 400px (mobile pequeno)                */
/* ========================================= */
@media (max-width: 400px){
  .btn, .btn--brand, .btn--wa{ padding: 14px 18px; }
  .btn__icon{ width: 20px; height: 20px; }

  /* Chips de queixas em toda a largura */
  .queixas__list{ grid-template-columns: 1fr; }
  .queixa-chip{ padding: 11px 12px; font-size: 13px; }

  /* WhatsApp flutuante mais contido */
  .wa-float{ right: 14px; bottom: 14px; width: 56px; height: 56px; }
}

/* --- High-DPI (retina) --- */
@media (min-resolution: 2dppx){
  .testi__img{ box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 0.5px 0 rgba(255,255,255,.08);
  }
}

