/* =========================================================================
   Fiolaser Natal — Stylesheet limpa (sem Elementor/WordPress)
   Paleta Fiolaser oficial: branco dominante + vermelho #C2020F + dark text.
   ========================================================================= */

:root {
  --red: #C2020F;
  --red-deep: #910213;
  --red-soft: #E30107;
  --red-tint: rgba(194, 2, 15, 0.08);
  --red-glow: rgba(194, 2, 15, 0.18);

  --ink: #1A0F11;
  --ink-soft: #5A4046;
  --ink-mute: #8A6B71;

  --white: #FFFFFF;
  --warm-white: #FBF7F5;
  --line: rgba(26, 15, 17, 0.08);

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(26, 15, 17, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 15, 17, 0.08);
  --shadow-lg: 0 20px 48px -16px rgba(26, 15, 17, 0.14);
  --shadow-red: 0 12px 32px -8px rgba(194, 2, 15, 0.35);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 600; }
p { line-height: 1.6; }
a { color: var(--red); text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* -------------------------------------------------------------------------
   Containers
   ------------------------------------------------------------------------- */
.container       { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-narrow{ max-width: 780px;  margin: 0 auto; padding: 0 24px; }

/* -------------------------------------------------------------------------
   Componentes globais: badge, botão
   ------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  background: var(--red-tint);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  border: 1px solid rgba(194, 2, 15, 0.15);
}
.badge__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.badge--white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.badge--white .badge__dot { background: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  border: 2px solid var(--red);
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: var(--shadow-red);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(194, 2, 15, 0.5);
}
.btn:active { transform: translateY(0); }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 15.5px; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* -------------------------------------------------------------------------
   Header sticky
   ------------------------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hdr__logo {
  display: flex;
  align-items: center;
  color: var(--red);
  height: 32px;
}
.hdr__logo svg { height: 28px; width: auto; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 30%, rgba(194, 2, 15, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 80%, rgba(194, 2, 15, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--white) 100%);
  z-index: -1;
}
.hero__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero__title .hl {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
}
.hero__lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 48ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.stars {
  color: #FFB800;
  font-size: 16px;
  letter-spacing: 2px;
}
.hero__video {
  position: relative;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 12px 32px rgba(26, 15, 17, 0.18),
    0 32px 64px -16px rgba(194, 2, 15, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------------------------------------------------------------------------
   Authority strip (faixa vermelha full-width)
   ------------------------------------------------------------------------- */
.authority {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.authority::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.authority__wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.authority__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.authority__title em {
  font-style: italic;
  font-weight: 700;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}
.authority__lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}
.pillars {
  display: grid;
  gap: 14px;
}
.pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  align-items: center;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pillar:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}
.pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar__icon svg {
  width: 28px;
  height: 28px;
}
.pillar h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--white);
}
.pillar p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* -------------------------------------------------------------------------
   Section head (badge + title + lead) — usado nas seções internas
   ------------------------------------------------------------------------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em {
  color: var(--red);
  font-style: italic;
  font-weight: 700;
}
.section-lead {
  font-size: 16px;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   Benefícios (4 cards)
   ------------------------------------------------------------------------- */
.benefits {
  padding: 96px 0;
  background: var(--white);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 2, 15, 0.18);
  box-shadow: var(--shadow-lg);
}
.benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background-color 0.3s ease;
}
.benefit-card:hover .benefit-card__icon {
  background: var(--red);
  color: var(--white);
}
.benefit-card__icon svg { width: 30px; height: 30px; }
.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.benefit-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   Áreas tratadas (grid de fotos GRANDES)
   ------------------------------------------------------------------------- */
.areas {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--warm-white) 100%);
}
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 48px;
}
.area-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--warm-white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s ease;
  aspect-ratio: 4 / 5;
  flex: 0 0 calc((100% - 54px) / 4); /* 4 por linha (3 gaps de 18px) */
  max-width: 320px;
}
/* Neutraliza o modificador --lg pra todos ficarem iguais */
.area-card--lg {
  flex: 0 0 calc((100% - 54px) / 4);
  max-width: 320px;
  aspect-ratio: 4 / 5;
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
  filter: saturate(0.95) brightness(0.97);
}
.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 15, 17, 0.55) 100%);
  pointer-events: none;
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 2, 15, 0.25);
  box-shadow: 0 24px 48px -12px rgba(194, 2, 15, 0.22);
}
.area-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(1);
}
.area-card__label {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  box-shadow:
    0 4px 16px rgba(194, 2, 15, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.6);
  z-index: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.area-card:hover .area-card__label {
  background: var(--red-deep);
  transform: translateX(-50%) translateY(-3px);
}
.areas__cta {
  text-align: center;
}

/* -------------------------------------------------------------------------
   Reviews
   ------------------------------------------------------------------------- */
.reviews {
  padding: 96px 0;
  background: var(--white);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.review {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.3s ease, box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.review:hover {
  border-color: rgba(194, 2, 15, 0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  flex-shrink: 0;
}
.review__name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.review__stars {
  color: #FFB800;
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 1;
}
.review__source {
  margin-left: auto;
  flex-shrink: 0;
}
.review p {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-style: italic;
}
.reviews__cta {
  text-align: center;
}
.reviews__link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--red);
  text-decoration: none;
  transition: color 0.3s ease;
}
.reviews__link:hover { color: var(--red-deep); }

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.faq {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--white) 100%);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(194, 2, 15, 0.22);
  box-shadow: 0 8px 24px -10px rgba(194, 2, 15, 0.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__toggle {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
  transition: background-color 0.3s ease;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  border-radius: 1px;
}
.faq-item__toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-item__toggle { background: var(--red-deep); }
.faq-item[open] .faq-item__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__a {
  padding: 0 26px 24px;
}
.faq-item__a p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-item__a strong {
  color: var(--red);
  font-weight: 700;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.ftr {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding-top: 4px;
}
.ftr::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-soft) 100%);
}
.ftr__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.ftr__brand svg { height: 28px; width: auto; margin-bottom: 16px; }
.ftr__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.ftr__contact h4,
.ftr__hours h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 16px;
}
.ftr__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ftr__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.ftr__contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
}
.ftr__contact a:hover { color: var(--white); }
.ftr__contact svg { color: var(--red-soft); flex-shrink: 0; }
.ftr__hours p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
}
.ftr__hours strong { color: var(--white); }
.ftr__base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.ftr__base a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ftr__base a:hover { color: var(--white); }

/* -------------------------------------------------------------------------
   WhatsApp flutuante
   ------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.45),
    0 16px 48px rgba(37, 211, 102, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.55),
    0 24px 64px rgba(37, 211, 102, 0.35);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* -------------------------------------------------------------------------
   Scroll-reveal (acionado via IntersectionObserver no main.js)
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* -------------------------------------------------------------------------
   Responsivo: TABLET (≤960px)
   ------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero { padding: 48px 0 72px; }
  .hero__wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero__title { font-size: clamp(32px, 6vw, 44px); }

  .authority { padding: 56px 24px; }
  .authority__wrap { grid-template-columns: 1fr; gap: 36px; }

  .benefits, .areas, .reviews, .faq { padding: 72px 0; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }

  .areas__grid { gap: 14px; }
  .area-card,
  .area-card--lg {
    flex: 0 0 calc((100% - 28px) / 3); /* 3 por linha em tablet */
    max-width: none;
    aspect-ratio: 4 / 5;
  }

  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }

  .ftr__wrap { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 24px 32px; }
  .ftr__brand { grid-column: span 2; }
}

/* -------------------------------------------------------------------------
   Responsivo: MOBILE (≤560px)
   ------------------------------------------------------------------------- */
@media (max-width: 560px) {
  .hdr__wrap { padding: 12px 16px; }
  .hdr__logo svg { height: 24px; }

  .container, .container-wide, .container-narrow { padding: 0 16px; }

  .hero { padding: 32px 0 56px; }
  .hero__wrap { padding: 0 16px; gap: 28px; }
  .hero__title { font-size: clamp(28px, 7vw, 36px); }
  .hero__lead { font-size: 15.5px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; width: 100%; }

  .authority { padding: 48px 16px; }
  .authority__title { font-size: clamp(24px, 6.5vw, 32px); }
  .pillar { grid-template-columns: 44px 1fr; padding: 16px 18px; gap: 14px; }
  .pillar__icon { width: 44px; height: 44px; border-radius: 10px; }
  .pillar__icon svg { width: 22px; height: 22px; }

  .benefits, .areas, .reviews, .faq { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(26px, 7vw, 34px); }

  .benefits__grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card { padding: 28px 24px; }

  .areas__grid { gap: 12px; }
  .area-card,
  .area-card--lg {
    flex: 0 0 calc((100% - 12px) / 2); /* 2 por linha em mobile */
    max-width: none;
    aspect-ratio: 4 / 5;
  }
  .area-card__label { font-size: 13px; padding: 9px 18px; bottom: 14px; }

  .review { padding: 24px; }

  .faq-item summary { padding: 18px 20px; font-size: 15.5px; }
  .faq-item__a { padding: 0 20px 20px; }

  .ftr__wrap { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 28px; }
  .ftr__brand { grid-column: span 1; }

  .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}
