/* ==========================================================================
   Gracinha Store — Landing Page
   ========================================================================== */

:root {
  --pink: #ee0578;
  --pink-dark: #ad0459;
  --pink-deep: #6e0139;
  --ink: #180311;
  --ink-soft: #2c0a1f;
  --blush: #fff0f6;
  --blush-2: #ffe2ee;
  --white: #ffffff;
  --muted: #7a5a68;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --container: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -20px rgba(110, 1, 57, 0.35);
  --shadow-sm: 0 12px 30px -14px rgba(24, 3, 17, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

svg { width: 100%; height: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; border-radius: 8px; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow--light { color: #ff8fc1; }

.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 560px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 4px; }
.section-head--light h2 { color: var(--white); }
.section-head .section-lead { margin: 12px auto 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { position: relative; background: var(--pink); color: var(--white); box-shadow: 0 10px 24px -8px rgba(238, 5, 120, 0.55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(238, 5, 120, 0.6); }
.btn--primary::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%); background-size: 200% 100%; background-position: 200% 0; animation: btn-shine 4.5s ease-in-out infinite; }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { transform: translateY(-2px); background: var(--ink-soft); }

.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--outline { border-color: var(--white); color: var(--ink); background: var(--white); }
.btn--outline:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 30px -22px rgba(24, 3, 17, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}

.header__logo img { height: 30px; width: auto; }

.header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.94rem;
}
.header__nav a { position: relative; padding: 4px 0; }
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .25s ease;
}
.header__nav a:hover::after { width: 100%; }

.header__cta { flex-shrink: 0; }

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  align-self: center;
  flex-shrink: 0;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.header__toggle span { width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.menu-mobile a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid rgba(24,3,17,0.06); }
.menu-mobile .btn { margin-top: 14px; justify-content: center; }
.menu-mobile.is-open { display: flex; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 64px 0;
  overflow: hidden;
  background-color: var(--blush);
  background-image: url('assets/hero-bg.webp');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.hero__inner { position: relative; z-index: 1; }
.hero__mob-img { display: none; }

.hero__content { width: 48%; max-width: 580px; }

.hero__content h1 {
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}
.hero__content h1 span { color: var(--pink); }

.hero__lead {
  margin-top: 24px;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ==========================================================================
   Ticker
   ========================================================================== */
.ticker {
  overflow: hidden;
  padding: 20px 0;
  background: var(--white);
  border-top: 1px solid var(--blush-2);
  border-bottom: 1px solid var(--blush-2);
}
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__item {
  position: relative;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding: 0 30px;
}
.ticker__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}

/* ==========================================================================
   Atendimento
   ========================================================================== */
.atendimento { padding: 96px 0; background: var(--white); }

.atendimento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.atendimento__media {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--blush-2);
}
.atendimento__media video { width: 100%; height: 100%; object-fit: cover; }

.atendimento__content h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: var(--ink);
  margin: 6px 0 22px;
}
.atendimento__content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 16px;
}
.atendimento__content .btn { margin-top: 8px; }

/* ==========================================================================
   Marcas / marquee
   ========================================================================== */
.marcas { padding: 88px 0 64px; background: var(--white); }
.marcas__head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.marcas__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-top: 4px; }
.marcas__head .section-lead { margin: 12px auto 0; }

.brand-marquee {
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
}
.brand-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.brand-marquee:hover .brand-marquee__track { animation-play-state: paused; }

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 16px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(238, 5, 120, 0.08);
  box-shadow: 0 4px 16px rgba(238, 5, 120, 0.05);
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-chip:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(238, 5, 120, 0.1); }
.brand-chip img { width: 46px; height: 46px; object-fit: contain; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.chip {
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--blush-2);
  color: var(--ink);
  background: var(--blush);
}

/* ==========================================================================
   Produtos
   ========================================================================== */
.produtos { padding: 96px 0; background: var(--white); }

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 1 calc((100% - 40px) / 3);
  background: var(--blush);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }

.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; background: var(--blush-2); }

.card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 22px;
}

.card__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--white);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  padding: 9px;
  margin-bottom: 14px;
}

.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.card__cta svg { width: 15px; height: 15px; flex-shrink: 0; }
.card__cta:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(238, 5, 120, 0.55); }
.card__cta::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%); background-size: 200% 100%; background-position: 200% 0; animation: btn-shine 4.5s ease-in-out infinite; }

@keyframes btn-shine {
  0% { background-position: 200% 0; }
  20% { background-position: -120% 0; }
  100% { background-position: -120% 0; }
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.diferenciais {
  background: radial-gradient(circle at 20% 20%, var(--pink-deep), var(--ink) 55%);
  padding: 96px 0;
}

.diferenciais__list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto;
}

.diferencial {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 28px;
  padding: 34px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: background .25s ease;
}
.diferenciais__list .diferencial:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.diferencial:hover { background: rgba(255, 255, 255, 0.04); }

.diferencial__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 143, 193, 0.55);
  transition: color .25s ease, -webkit-text-stroke .25s ease;
}
.diferencial:hover .diferencial__num {
  color: var(--pink);
  -webkit-text-stroke: 1.5px var(--pink);
}

.diferencial h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.diferencial p { color: rgba(255, 255, 255, 0.62); font-size: 0.94rem; line-height: 1.55; max-width: 460px; }

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.depoimentos { padding: 96px 0; background: var(--blush); }

.depoimentos__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.depo-arrows { display: flex; gap: 10px; flex-shrink: 0; }
.depo-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--blush-2);
  background: var(--white);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
  box-shadow: var(--shadow-sm);
}
.depo-arrow svg { width: 20px; height: 20px; }
.depo-arrow:hover { background: var(--pink); border-color: var(--pink); color: var(--white); transform: scale(1.07); }
.depo-arrow:disabled { opacity: .35; pointer-events: none; }

.depoimentos__track {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}

.depoimentos__inner {
  display: flex;
  gap: 20px;
  padding: 8px 24px 8px calc((100% - var(--container) + 48px) / 2);
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}

.depoimento {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.depoimento:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.depoimento__stars { color: var(--pink); letter-spacing: 2px; margin-bottom: 14px; }
.depoimento p { font-size: 0.96rem; line-height: 1.6; color: var(--ink); margin-bottom: 22px; }

.depoimento__autor { display: flex; align-items: center; gap: 12px; }
.depoimento__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--pink), var(--pink-deep));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento__autor strong { display: block; font-size: 0.88rem; }
.depoimento__autor span { font-size: 0.78rem; color: var(--muted); }

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final {
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-dark) 60%, var(--pink-deep) 100%);
  padding: 80px 0;
}
.cta-final__inner { text-align: center; }
.cta-final h2 { color: var(--white); font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.cta-final p { color: rgba(255,255,255,0.85); margin: 14px 0 30px; font-size: 1.05rem; }

/* ==========================================================================
   Localização
   ========================================================================== */
.localizacao { padding: 96px 0; background: var(--white); }

.localizacao__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.localizacao h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 24px; }

.info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.info-list li { display: flex; align-items: center; gap: 14px; font-size: 0.98rem; }
.info-list svg { width: 22px; height: 22px; color: var(--pink); flex-shrink: 0; }
.info-list a:hover { color: var(--pink); }

.localizacao__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.localizacao__actions .btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.localizacao__actions .btn--outline:hover { background: var(--ink); color: var(--white); }

.localizacao__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3.4;
}
.localizacao__map iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 88% -10%, var(--pink-deep) 0%, var(--ink) 45%);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 143, 193, 0.5), transparent);
}

.footer__watermark {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 360px;
  height: 360px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.footer__watermark img { width: 100%; height: 100%; filter: brightness(0) invert(1); }

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand img { height: 26px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: 0.9rem; max-width: 280px; margin-bottom: 18px; line-height: 1.6; }

.footer__social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px;
  transition: border-color .2s ease, color .2s ease;
}
.footer__social:hover { border-color: var(--pink); color: var(--pink); }

.footer__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8fc1;
  margin-bottom: 18px;
}

.footer__nav { display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; }
.footer__nav a:hover { color: var(--white); }

.footer__contato { display: flex; flex-direction: column; gap: 12px; font-size: 0.88rem; }
.footer__contato li { display: flex; align-items: center; gap: 10px; }
.footer__contato svg { width: 17px; height: 17px; color: var(--pink); flex-shrink: 0; }
.footer__contato a:hover { color: var(--white); }

.footer__top {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer__top svg { width: 16px; height: 16px; }
.footer__top:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.35);
  z-index: 90;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
  transition: transform .2s ease;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.85), 0 0 0 10px rgba(37, 211, 102, 0.14); }
}

@media (max-width: 720px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .atendimento__grid { grid-template-columns: 1fr; }
  .atendimento__media { order: -1; }
  .card { flex-basis: calc((100% - 20px) / 2); }
  .localizacao__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__toggle { display: flex; margin-left: auto; }

  .hero {
    display: grid;
    min-height: auto;
    align-items: start;
    padding: 0;
    background-image: none;
  }
  .hero__mob-img {
    display: block;
    grid-area: 1 / 1;
    width: 100%;
    /* recorte calculado pra bater com a altura real do texto (padding-top
       + conteúdo, ~220vw): alto o bastante pra não sobrar a cor de fundo
       aparecendo por baixo (emenda visível), mas sem esticar bem além do
       texto e deixar uma sobra vazia antes do próximo bloco */
    aspect-ratio: 800 / 1760;
    object-fit: cover;
    object-position: top center;
  }
  .hero__inner {
    grid-area: 1 / 1;
    align-self: start;
    /* produto termina ~66vw; 74vw dá uma folga pequena antes do texto */
    padding: 74vw 24px 48px;
  }
  .hero__content { width: 100%; max-width: 100%; text-align: center; }
  .hero__content h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }

  .card { flex-basis: 100%; }

  .atendimento, .marcas, .produtos, .diferenciais, .depoimentos, .localizacao { padding: 64px 0; }
  .cta-final { padding: 64px 0; }

  .depoimentos__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .depoimento { width: 270px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 460px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
}
