/* ============================================================
   +150 Receitas Air Fryer — design system
   Direção: fast-food direct-response. Vermelho + amarelo pra
   apetite/urgência, tipografia bold arredondada, neuromarketing
   (prova social, ancoragem, escassez, autoridade, garantia).
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

:root {
  --red: #E8341C;
  --red-dark: #A81C0B;
  --red-glow: rgba(232, 52, 28, 0.45);
  --yellow: #FFC807;
  --yellow-soft: #FFF3C4;
  --dark: #241611;
  --dark-2: #17100D;
  --cream: #FFFBF2;
  --white: #ffffff;
  --green: #1E8E3E;
  --green-light: #3FC96A;
  --green-dark: #0F5C26;
  --green-glow: rgba(30, 142, 62, 0.45);
  --muted: #7a6c61;
  --shadow: 0 18px 40px rgba(36, 22, 17, 0.16);
  --radius: 22px;

  --font-display: "Fredoka", sans-serif;
  --font-badge: "Lilita One", cursive;
  --font-body: "Nunito Sans", sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

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

/* CRITICO: sem "height: auto" aqui, o atributo height="..." do HTML fixa uma
   altura em pixels que NENHUM aspect-ratio ou width responsivo em CSS
   consegue sobrescrever (o navegador so consulta aspect-ratio quando a
   altura e realmente "auto"). Isso causava a distorcao/esticamento em varias
   imagens da pagina (hero, grade de receitas, capa do video). */
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--font-display); margin: 0; }

p { line-height: 1.6; }

.hl {
  color: var(--red);
  position: relative;
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.32em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--dark);
  color: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-badge);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 8px 0;
}
.ticker__track {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 22s linear infinite;
  padding-left: 3rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sticky bar ---------- */
.stickybar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  transform: translateY(-120%);
  transition: transform 0.35s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__text { font-size: 0.9rem; }
.stickybar__text strong { color: var(--yellow); }
.stickybar__cta {
  background: linear-gradient(180deg, var(--green-light), var(--green-dark));
  color: var(--white);
  font-family: var(--font-badge);
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px var(--green-glow);
}

/* ---------- buttons ---------- */
/* Verde = "escolha certa" no cerebro reptiliano (semaforo, "pode seguir").
   Vermelho fica reservado pra urgencia/apetite no resto da pagina. */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: linear-gradient(180deg, var(--green-light), var(--green-dark));
  color: var(--white);
  font-family: var(--font-badge);
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.01em;
  padding: 18px 38px;
  border-radius: 999px;
  box-shadow: 0 14px 30px var(--green-glow);
  border: 3px solid rgba(255,255,255,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 36px var(--green-glow); }
.cta--lg { font-size: 1.25rem; padding: 20px 44px; }
.cta--sm { font-size: 0.95rem; padding: 14px 28px; margin-top: 12px; }
.cta__sub { font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; opacity: 0.9; letter-spacing: 0.02em; }

.cta--pulse { animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px var(--green-glow); }
  50% { box-shadow: 0 14px 44px var(--green-glow), 0 0 0 12px rgba(30,142,62,0.15); }
}

/* ---------- layout helpers ---------- */
main > section { padding: 84px 24px; }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 600;
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.25;
}
.section-title--left { text-align: left; margin: 0 0 18px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, #FF5A3C 0%, var(--red) 45%, var(--red-dark) 100%);
  color: var(--white);
  padding: 56px 24px 90px !important;
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-badge);
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero h1 .hl { color: var(--yellow); }
.hero h1 .hl::after { background: var(--white); opacity: 0.25; }
.hero__sub {
  font-size: 1.1rem;
  max-width: 46ch;
  opacity: 0.92;
  margin-bottom: 24px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
}
.checklist li { display: flex; align-items: center; gap: 10px; }
.checklist li::before {
  content: "✓";
  flex: none;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.9;
  flex-wrap: wrap;
}
.trust-row img { height: 16px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__img {
  width: min(420px, 90%);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.hero__badge {
  position: absolute;
  top: -6px;
  right: 6%;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-badge);
  font-size: 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(12deg);
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
  z-index: 2;
}
.hero__badge small { font-family: var(--font-body); font-weight: 800; font-size: 0.7rem; }

/* ============ AUTHORITY ============ */
.authority { background: var(--white); }
.authority__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.authority__flag {
  font-family: var(--font-badge);
  color: var(--red);
  text-align: center;
  margin: 0 0 14px;
}
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
}
.yt-facade {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
}
.yt-facade img, .video-wrap > iframe { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: 0.85; }
.video-wrap > iframe { opacity: 1; display: block; }
.yt-facade__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
}
.yt-facade__play::before {
  content: "";
  position: absolute;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(232,52,28,0.55); }
  100% { box-shadow: 0 0 0 26px rgba(232,52,28,0); }
}
.authority__caption { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 12px; }

/* player minimalista: o YT.Player SUBSTITUI a div holder pelo proprio iframe
   (por isso nao tem uma regra ".yt-player-holder iframe" — quem estiliza o
   iframe resultante e a regra ".video-wrap > iframe" ja existente acima) */
.yt-mini-control {
  position: absolute;
  left: 14px;
  bottom: 22px;
  z-index: 6;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  backdrop-filter: blur(2px);
  transition: background 0.15s ease, transform 0.15s ease;
}
.yt-mini-control:hover { background: rgba(0,0,0,0.75); transform: scale(1.06); }

/* barra de progresso falsa, incorporada por cima do video (estilo player de
   VSL): cria expectativa — dinamica no comeco, trava perto dos 60% pra
   segurar a atencao ate o "bonus" aparecer */
.video-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  padding: 0;
}
.video-progress__track {
  height: 11px;
  background: rgba(255,255,255,0.25);
}
.video-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transition: width 0.15s linear;
}
.video-progress__label {
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red);
  margin: 14px 0 0;
}

.authority__quote { position: relative; padding-left: 22px; border-left: 4px solid var(--yellow); }
.authority__photo {
  width: 84px; height: 84px; border-radius: 50%;
  object-fit: cover; margin-bottom: 14px;
  border: 3px solid var(--yellow);
}
.authority__quote blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--dark);
}
.authority__name { font-weight: 800; margin: 0 0 10px; }
.authority__name span { font-weight: 600; color: var(--muted); }
.authority__text { color: var(--muted); margin-bottom: 6px; }

/* ============ BENEFITS / BONUS cards ============ */
.benefits { background: var(--yellow-soft); }
.cards { display: grid; gap: 26px; max-width: 1080px; margin: 0 auto; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-6px); }
/* os icones originais sao brancos com transparencia (feitos pra ficar sobre
   fundo colorido) — sem o selo por tras, somem no card branco */
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--red), var(--red-dark));
  box-shadow: 0 10px 20px var(--red-glow);
}
.card__icon img { height: 46px; width: auto; margin: 0; filter: brightness(0) invert(1); }
.card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.card--bonus { position: relative; text-align: left; border-top: 6px solid var(--red); }
.card__tag {
  display: inline-block;
  font-family: var(--font-badge);
  background: var(--dark);
  color: var(--yellow);
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ============ MENU (recipe grid) ============ */
.menu { background: var(--dark); color: var(--white); }
.menu .section-title { color: var(--white); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.menu__grid figure {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.menu__grid img {
  /* proporcao real das fotos (520x326) — sem isso o object-fit:cover
     cortava as bordas pra forcar um 4:3 que nao bate com a foto */
  width: 100%; aspect-ratio: 520 / 326; object-fit: cover;
  transition: transform 0.5s ease;
}
.menu__grid figure:hover img { transform: scale(1.08); }
.menu__grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}
.menu__more {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--yellow-soft);
  font-size: 1rem;
}
.menu__more strong { color: var(--yellow); }

/* ============ OFFER / cupom ============ */
.offer { background: var(--cream); display: flex; justify-content: center; }
.offer__coupon {
  position: relative;
  background: var(--yellow);
  color: var(--dark);
  max-width: 480px;
  width: 100%;
  padding: 40px 30px 34px;
  text-align: center;
  border-radius: 26px;
  border: 3px dashed var(--dark);
  transform: rotate(-1.2deg);
  box-shadow: var(--shadow);
}
.offer__coupon::before,
.offer__coupon::after {
  content: "";
  position: absolute;
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.offer__coupon::before { left: -18px; }
.offer__coupon::after { right: -18px; }

.offer__discount-badge {
  position: absolute;
  top: -22px;
  right: 16px;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--red), var(--red-dark));
  color: var(--white);
  font-family: var(--font-badge);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1.05;
  font-size: 1.35rem;
  transform: rotate(10deg);
  box-shadow: 0 10px 22px rgba(0,0,0,0.3);
  border: 3px solid var(--cream);
  z-index: 2;
}
.offer__discount-badge small { font-family: var(--font-body); font-weight: 800; font-size: 0.6rem; }

.offer__eyebrow { font-family: var(--font-badge); font-size: 1rem; margin: 0 0 6px; }
.offer__was {
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0 0 2px;
  opacity: 0.85;
}
.offer__was s { opacity: 0.7; }
.offer__price {
  font-family: var(--font-badge);
  font-size: 4rem;
  line-height: 1;
  margin: 0;
}
.offer__currency { font-size: 1.8rem; vertical-align: top; margin-right: 2px; }
.offer__cents { font-size: 2rem; }
.offer__installment { font-weight: 800; margin: 6px 0 20px; }

.offer__bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
  font-weight: 800;
  font-size: 0.95rem;
}
.offer__bullets li { display: flex; align-items: flex-start; gap: 8px; }
.offer__bullets li::before {
  content: "✓";
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--yellow);
  font-size: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.offer__timer { margin-bottom: 20px; font-weight: 800; }
.offer__timer span:first-child { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.offer__timer-clock {
  display: inline-block;
  font-family: var(--font-badge);
  font-size: 1.6rem;
  background: var(--dark);
  color: var(--yellow);
  padding: 6px 18px;
  border-radius: 12px;
}
.offer__badge { margin: 22px auto 0; width: 260px; height: auto; }
.offer--final .offer__coupon { transform: rotate(1deg); }

/* cronometro reaproveitado no hero da LP de remarketing (fundo vermelho) */
.offer__timer--hero {
  margin: 6px 0 22px;
  display: inline-block;
  background: rgba(0,0,0,0.2);
  padding: 12px 18px;
  border-radius: 14px;
}
.offer__timer--hero span:first-child { color: var(--yellow); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); }
.cards--photo {
  grid-template-columns: repeat(3, 1fr);
  max-width: 940px;
  row-gap: 58px;
  column-gap: 30px;
}
.photo-frame {
  /* prints de whatsapp tem proporcoes bem diferentes entre si — em vez de
     forcar todos num 4:3 (que cortava parte da conversa), cada um mostra
     a imagem inteira, na sua propria proporcao */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
  border-radius: 4px;
  transition: transform 0.25s ease;
}
.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.photo-frame:nth-child(odd) { transform: rotate(-2deg); }
.photo-frame:nth-child(even) { transform: rotate(2deg); }
.photo-frame:hover { transform: rotate(0deg) scale(1.04); z-index: 2; position: relative; }

/* ============ GUARANTEE ============ */
.guarantee {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.guarantee img { width: 180px; }
.guarantee p { color: var(--muted); }
.guarantee strong { color: var(--green); }

/* ============ FAQ ============ */
.faq { background: var(--yellow-soft); }
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__list details {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 4px 14px rgba(36,22,17,0.08);
}
.faq__list summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-badge);
  font-size: 1.3rem;
  color: var(--green);
  transition: transform 0.2s ease;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list p { color: var(--muted); margin: 12px 0 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 48px 24px;
  font-size: 0.82rem;
}
.footer__whatsapp { display: inline-block; margin-bottom: 18px; }
.footer p { max-width: 640px; margin: 0 auto 10px; }
.footer__links a { color: var(--yellow); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .checklist { align-items: center; }
  .trust-row { justify-content: center; }

  /* mobile: imagem da air fryer entra entre a subheadline e os bullets,
     pra ficar mais centrado e emendar direto na secao seguinte (video) */
  .hero__copy { display: contents; }
  .hero__copy .kicker { order: 1; }
  .hero__copy h1 { order: 2; }
  .hero__copy .hero__sub { order: 3; }
  .hero__visual { order: 4; margin-bottom: 8px; }
  .hero__copy .checklist { order: 5; }
  .hero__copy > a.cta { order: 6; }
  .hero__copy .trust-row { order: 7; }
  .authority__inner { grid-template-columns: 1fr; }
  .authority__quote { border-left: none; border-top: 4px solid var(--yellow); padding-left: 0; padding-top: 20px; text-align: center; }
  .authority__photo { margin-left: auto; margin-right: auto; }
  .cards--3, .cards--photo { grid-template-columns: 1fr 1fr; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee img { margin: 0 auto; }
}
@media (max-width: 560px) {
  main > section { padding: 60px 18px; }
  .cards--3, .cards--photo, .menu__grid { grid-template-columns: 1fr; }
  .stickybar__text { font-size: 0.78rem; }
  .offer__price { font-size: 3.2rem; }
}

/* ============ POPUP ULTIMA CHANCE (dispara quando o cronometro zera) ============ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 4, 0.8);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.popup-overlay.is-visible { opacity: 1; pointer-events: auto; }
.popup-card {
  position: relative;
  background: var(--yellow);
  border-radius: 26px;
  max-width: 420px;
  width: 100%;
  padding: 44px 30px 34px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  border: 4px solid var(--dark);
  transform: scale(0.88);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-overlay.is-visible .popup-card { transform: scale(1); }
.popup__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.15);
  color: var(--dark);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.popup__icon {
  font-size: 3.2rem;
  margin-bottom: 6px;
  display: inline-block;
  animation: pulse 1.4s ease-in-out infinite;
}
.popup__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red-dark);
  margin: 0 0 10px;
  line-height: 1.2;
}
.popup__text { margin: 0 0 20px; font-weight: 700; }
.popup__timer {
  font-family: var(--font-badge);
  background: var(--dark);
  color: var(--red);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
