/* =========================================================
   A&C Supermercados — Landing Page
   Mobile-first, sem dependências externas
   ========================================================= */

:root {
  --brand: #a80f1d;
  --brand-dark: #690812;
  --brand-deep: #39070d;
  --brand-soft: #fff0f1;
  --accent: #ffd244;
  --accent-dark: #5e4300;
  --cream: #fff8ec;
  --paper: #ffffff;
  --ink: #21191a;
  --muted: #6e6263;
  --line: #e8dddd;
  --success: #237a45;
  --shadow-sm: 0 8px 24px rgba(57, 7, 13, 0.08);
  --shadow-md: 0 20px 55px rgba(57, 7, 13, 0.12);
  --shadow-brand: 0 16px 35px rgba(168, 15, 29, 0.24);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 73.75rem;
  --header-height: 4.75rem;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* Reset e base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 11vw, 4.5rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 8vw, 3.55rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 780;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--brand);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--brand-deep);
  border-radius: 0.5rem;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Rótulos e títulos de seção */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 1.75rem;
  height: 0.18rem;
  background: currentColor;
  border-radius: 999px;
}

.eyebrow-centered {
  justify-content: center;
}

.eyebrow-light {
  color: var(--accent);
}

.section-heading {
  max-width: 43rem;
  margin-bottom: 2.5rem;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

/* Botões e links de ação */
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.88rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}

.button-primary:hover {
  background: #8b0c18;
  box-shadow: 0 18px 38px rgba(168, 15, 29, 0.3);
}

.button-ghost,
.button-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-ghost:hover,
.button-outline:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.button-light {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.button-light:hover {
  background: var(--accent);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
  transition: text-decoration-color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 0.7rem;
  text-decoration-color: currentColor;
}

.light-link {
  color: #fff;
}

/* Cabeçalho */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 25px rgba(57, 7, 13, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 4.65rem;
  height: 3.1rem;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 0.45rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  place-content: center;
  gap: 0.27rem;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.site-nav.is-open,
.no-js .site-nav {
  display: flex;
}

.site-nav > a:not(.button) {
  padding: 0.75rem 0.85rem;
  color: #493d3e;
  border-radius: 0.6rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav > a:not(.button):hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.no-js .nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 4.5rem 5rem;
  background:
    linear-gradient(120deg, rgba(255, 248, 236, 0.96), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, transparent, transparent 5rem, rgba(168, 15, 29, 0.03) 5rem, rgba(168, 15, 29, 0.03) calc(5rem + 1px));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-glow-one {
  top: -8rem;
  right: -8rem;
  width: 19rem;
  height: 19rem;
  background: rgba(255, 210, 68, 0.25);
}

.hero-glow-two {
  bottom: -6rem;
  left: -7rem;
  width: 16rem;
  height: 16rem;
  background: rgba(168, 15, 29, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.25rem;
}

.hero-copy {
  max-width: 43rem;
}

.hero h1 em {
  color: var(--brand);
  font-style: normal;
}

.hero-text {
  max-width: 39rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.check {
  display: grid;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  max-width: 34rem;
  margin-inline: auto;
  padding: 0.6rem 0.55rem 2.5rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 27rem;
  padding: 1.35rem;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 210, 68, 0.35) 0 9%, transparent 9.5%),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.09) 0 25%, transparent 25.5%),
    linear-gradient(145deg, var(--brand) 0%, #8d0a17 55%, var(--brand-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.25rem 2.25rem 5.5rem 2.25rem;
  box-shadow: 0 35px 70px rgba(105, 8, 18, 0.3);
}

.hero-card::after {
  position: absolute;
  right: -4.25rem;
  bottom: -4.25rem;
  width: 12rem;
  height: 12rem;
  border: 2rem solid rgba(255, 210, 68, 0.8);
  border-radius: 50%;
  content: "";
}

.hero-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  color: var(--brand-dark);
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.store-count strong {
  font-size: 1rem;
}

.hero-card-brand {
  position: relative;
  z-index: 1;
  margin-top: 2.2rem;
  font-size: clamp(4rem, 20vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.9;
}

.hero-card-brand span {
  color: var(--accent);
}

.hero-card > p {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.35;
}

.benefit-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 20rem;
}

.benefit-pills span {
  padding: 0.48rem 0.68rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.rating-float {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: 11.5rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.rating-stars {
  color: #f3ae00;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.rating-float strong {
  font-size: 0.96rem;
}

.rating-float small {
  color: var(--muted);
  font-size: 0.66rem;
}

/* Indicadores */
.trust-bar {
  position: relative;
  z-index: 3;
  color: #fff;
  background: var(--brand-deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.trust-item {
  display: flex;
  min-height: 7.2rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.15rem 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-item:nth-child(2n) {
  border-right: 0;
}

.trust-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.trust-item strong {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 850;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
}

/* Benefícios */
.benefits {
  background: #fff;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid #f1e3d0;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.benefit-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 7rem;
  height: 7rem;
  background: rgba(168, 15, 29, 0.05);
  border-radius: 50%;
  content: "";
}

.featured-card {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.featured-card::after {
  background: rgba(255, 210, 68, 0.18);
}

.card-number {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 2rem;
  place-items: center;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.featured-card .card-number {
  color: var(--brand-dark);
  background: var(--accent);
  border-color: var(--accent);
}

.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 1;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.77);
}

/* História */
.brand-story {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 210, 68, 0.15), transparent 32%),
    var(--brand-deep);
}

.brand-story::after {
  position: absolute;
  top: -8rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 2rem;
}

.story-seal {
  display: grid;
  width: 9rem;
  height: 9rem;
  place-content: center;
  text-align: center;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 50% 18%;
  box-shadow: inset 0 0 0 0.5rem rgba(255, 255, 255, 0.05);
  transform: rotate(-4deg);
}

.story-seal span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-seal strong {
  color: var(--accent);
  font-size: 2rem;
  line-height: 1.1;
}

.story-copy h2 {
  max-width: 42rem;
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.story-copy > p:last-child {
  max-width: 45rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Lojas */
.stores {
  background: #fff;
}

.stores-heading {
  max-width: none;
}

.stores-grid {
  display: grid;
  gap: 1.25rem;
}

.store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.store-card-accent {
  border: 2px solid var(--brand);
}

.popular-tag {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 1.35rem;
  margin: 0;
  padding: 0.38rem 0.65rem;
  color: var(--brand-dark);
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.store-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.store-kicker {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--brand);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.store-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 7vw, 2.4rem);
}

.google-rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 0.3rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.7rem;
  background: var(--cream);
  border-radius: 0.8rem;
}

.google-rating > span {
  color: #f3ae00;
  font-size: 1rem;
}

.google-rating strong {
  font-size: 1.08rem;
  line-height: 1;
}

.google-rating small {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.6rem;
}

.store-details {
  display: grid;
  flex: 1;
  gap: 1.15rem;
  padding-block: 1.4rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.detail-icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.detail-row strong {
  display: block;
  margin-bottom: 0.16rem;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.detail-row p,
.detail-row address,
.detail-row a {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.5;
}

.detail-row a {
  color: var(--brand);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.store-actions {
  display: grid;
  gap: 0.65rem;
}

.data-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

/* Avaliações */
.reviews {
  background: var(--cream);
}

.reviews-top {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.reviews-top .section-heading {
  margin-bottom: 0;
}

.reviews-summary {
  display: flex;
  max-width: 22rem;
  gap: 0.75rem;
}

.reviews-summary > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 0.3rem;
  flex: 1;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}

.reviews-summary span {
  color: #f3ae00;
}

.reviews-summary strong {
  font-size: 1.25rem;
}

.reviews-summary small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.62rem;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 19rem;
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.review-featured {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}

.quote-mark {
  position: absolute;
  top: -1.6rem;
  right: 0.65rem;
  color: rgba(168, 15, 29, 0.07);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.review-featured .quote-mark {
  color: rgba(255, 255, 255, 0.1);
}

.review-stars {
  position: relative;
  z-index: 1;
  color: #f3ae00;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
}

.review-stars span {
  color: #d6cdcd;
}

.review-featured .review-stars {
  color: var(--accent);
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 2.2rem 0;
  font-size: 1.17rem;
  font-weight: 720;
  line-height: 1.45;
}

.review-card figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
}

.review-card figcaption strong {
  font-size: 0.88rem;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.7rem;
}

.review-featured figcaption span {
  color: rgba(255, 255, 255, 0.7);
}

/* CTA social */
.social-cta {
  color: #fff;
  background: var(--brand);
}

.social-cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: 3rem;
}

.social-symbol {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  color: var(--brand-dark);
  background: var(--accent);
  border-radius: 50% 50% 50% 18%;
  font-size: 2rem;
  font-weight: 900;
  transform: rotate(-5deg);
}

.social-cta h2 {
  max-width: 43rem;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 7vw, 2.7rem);
}

/* FAQ */
.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  gap: 2.5rem;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 2.2rem;
  gap: 1rem;
  align-items: center;
  min-height: 4.75rem;
  padding-block: 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-item[open] summary {
  color: var(--brand);
}

.faq-item[open] summary > span {
  color: #fff;
  background: var(--brand);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 45rem;
  padding: 0 3rem 1.35rem 0;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.faq-answer a {
  color: var(--brand);
  font-weight: 750;
  text-decoration: underline;
}

/* CTA final */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
  background:
    radial-gradient(circle at 10% 0, rgba(255, 210, 68, 0.22), transparent 25%),
    radial-gradient(circle at 90% 100%, rgba(168, 15, 29, 0.1), transparent 30%),
    var(--cream);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 9rem;
  height: 9rem;
  border: 1.2rem solid rgba(168, 15, 29, 0.05);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -4rem;
  left: -4rem;
}

.final-cta::after {
  right: -4rem;
  bottom: -4rem;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 49rem;
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.03rem;
}

/* Rodapé */
.site-footer {
  padding-top: 4rem;
  color: #fff;
  background: #210509;
}

.footer-grid {
  display: grid;
  gap: 2.3rem;
  padding-bottom: 3rem;
}

.brand-footer .brand-copy {
  color: #fff;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand > p {
  max-width: 20rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

.footer-column h2 {
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.footer-column > a {
  display: table;
  margin-top: 0.4rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 0.22em;
}

.footer-column > a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-block: 1.2rem 6.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

/* CTA móvel persistente */
.mobile-cta {
  position: fixed;
  z-index: 900;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
}

.mobile-cta a {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(57, 7, 13, 0.35);
}

.mobile-cta span {
  font-size: 0.7rem;
  opacity: 0.75;
}

.mobile-cta strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
}

.mobile-cta strong span {
  font-size: 1rem;
  opacity: 1;
}

/* Pequenos celulares */
@media (min-width: 30rem) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-card {
    padding: 1.7rem;
  }

  .store-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets e desktops */
@media (min-width: 48rem) {
  :root {
    --header-height: 5.25rem;
  }

  body {
    font-size: 1.02rem;
  }

  .section {
    padding-block: 6.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .no-js .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav > a:not(.button) {
    padding: 0.65rem 0.6rem;
    font-size: 0.82rem;
  }

  .nav-cta {
    margin-left: 0.4rem;
  }

  .hero {
    padding-block: 5.7rem 6rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    align-items: center;
    gap: 4rem;
  }

  .hero-visual {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-item {
    min-height: 8rem;
    padding-inline: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 0;
  }

  .trust-item:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .trust-item strong {
    font-size: 1.3rem;
  }

  .trust-item span {
    font-size: 0.75rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }

  .story-grid .text-link {
    grid-column: 2;
  }

  .stores-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 3rem;
  }

  .stores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-card {
    padding: 1.75rem;
  }

  .popular-tag {
    right: 1.75rem;
  }

  .reviews-top {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .reviews-summary {
    min-width: 21rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .review-featured {
    transform: translateY(-0.8rem);
  }

  .social-cta-inner {
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }

  .faq-grid {
    grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
    gap: 5rem;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.2rem;
  }

  .mobile-cta {
    display: none;
  }
}

/* Telas largas */
@media (min-width: 64rem) {
  .site-nav {
    gap: 0.55rem;
  }

  .site-nav > a:not(.button) {
    padding-inline: 0.75rem;
    font-size: 0.88rem;
  }

  .hero-grid {
    gap: 6rem;
  }

  .hero-card {
    min-height: 31rem;
    padding: 2rem;
  }

  .hero-card-brand {
    margin-top: 3.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-card {
    min-height: 17rem;
  }

  .story-grid {
    grid-template-columns: auto 1fr auto;
  }

  .story-grid .text-link {
    grid-column: auto;
  }
}

/* Respeita preferências de movimento do sistema */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Impressão limpa */
@media print {
  .site-header,
  .mobile-cta,
  .hero-actions,
  .store-actions,
  .social-cta,
  .final-cta {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
