:root {
  --azul-principal: #123D68;
  --azul-profundo: #0D2B4C;
  --vermelho-principal: #C7352D;
  --vermelho-escuro: #A92B25;
  --amarelo-milho: #F4C542;
  --amarelo-claro: #FFE8A3;
  --laranja-fogueira: #E67E22;
  --laranja-quente: #F28C28;
  --bege-fundo: #FFF4D8;
  --bege-logo: #F7E6C4;
  --creme-card: #FFF9EC;
  --marrom-madeira: #6B3F22;
  --marrom-texto: #4A2C1A;
  --verde-bandeirinha: #2E7D32;
  --branco: #FFFFFF;
  --cinza-texto: #4B4B4B;
  --shadow-soft: 0 14px 34px rgba(74, 44, 26, 0.13);
  --shadow-strong: 0 26px 70px rgba(74, 44, 26, 0.22);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 197, 66, 0.24), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(242, 140, 40, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.36) 25%, transparent 25%) 0 0 / 18px 18px,
    var(--bege-fundo);
  color: var(--cinza-texto);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.recovery-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: linear-gradient(90deg, var(--vermelho-escuro), var(--vermelho-principal), var(--azul-profundo));
  color: var(--branco);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.95rem;
}

.urgency-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--amarelo-milho);
  color: var(--marrom-texto);
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(199, 53, 45, 0.16);
  background: rgba(255, 249, 236, 0.78);
  box-shadow: 0 12px 34px rgba(13, 43, 76, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 104px;
  height: 58px;
  object-fit: contain;
}

.text-brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--vermelho-principal);
  font-size: 1.28rem;
  font-weight: 1000;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--marrom-texto);
  font-size: 0.94rem;
  font-weight: 900;
}

.nav a:hover {
  color: var(--vermelho-principal);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.section {
  position: relative;
  padding: clamp(48px, 7vw, 86px) 0;
}

.hero {
  overflow: hidden;
  padding: 0 0 clamp(42px, 7vw, 78px);
  background:
    linear-gradient(120deg, rgba(255, 232, 163, 0.9), rgba(255, 244, 216, 0.74)),
    repeating-linear-gradient(45deg, rgba(18, 61, 104, 0.04) 0 12px, transparent 12px 24px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding-top: 30px;
}

.hero-banner-full {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 clamp(18px, 4vw, 34px);
  overflow: hidden;
}

.hero-banner-full img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.hero-card-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 249, 236, 0.72);
  backdrop-filter: blur(18px);
}

.hero-copy {
  width: min(860px, 100%);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--amarelo-milho);
  color: var(--marrom-texto);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--marrom-texto);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3.8vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 560px;
  margin: 16px auto 18px;
  color: var(--marrom-madeira);
  font-size: 1.12rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-list {
  gap: 8px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--verde-bandeirinha);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.62);
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #D84338, var(--vermelho-principal));
  color: var(--branco);
  box-shadow: 0 14px 28px rgba(199, 53, 45, 0.27);
  cursor: pointer;
  font-weight: 1000;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  filter: saturate(1.08);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(199, 53, 45, 0.34);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--azul-principal), var(--azul-profundo));
  box-shadow: 0 14px 28px rgba(13, 43, 76, 0.22);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn-wide {
  width: 100%;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--marrom-madeira);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-art-card,
.image-card {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 249, 236, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.hero-art-card {
  animation: floaty 5s ease-in-out infinite;
}

.hero-art-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-100%);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-art-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mockup-section {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.mockup-full {
  width: 100vw;
  margin: 0;
  overflow: hidden;
}

.mockup-full img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading p {
  margin: 10px 0 0;
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 249, 236, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.recipe-card:hover,
.category-list div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.card h3 {
  margin-bottom: 8px;
  color: var(--azul-principal);
}

.card p {
  margin: 0;
}

.proof-band,
.warm,
.guarantee-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(199, 53, 45, 0.09), transparent 24%),
    var(--amarelo-claro);
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.recipe-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: var(--creme-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.recipe-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 249, 236, 0.9);
  color: var(--marrom-texto);
  font-weight: 1000;
  text-align: center;
  backdrop-filter: blur(12px);
}

.center-note {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
}

.center-note p {
  margin-bottom: 16px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.split p {
  font-size: 1.05rem;
}

.bonus-section {
  overflow: hidden;
  background: var(--bege-fundo);
}

.bonus-copy {
  text-align: center;
}

.bonus-copy .check-list {
  display: inline-grid;
  margin: 0 auto 18px;
  text-align: left;
}

.bonus-image {
  margin: 0 auto 22px;
  max-width: 620px;
}

.bonus-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
}

.bonus-price span {
  color: var(--marrom-texto);
  font-weight: 900;
  text-decoration: line-through;
}

.bonus-price strong {
  color: var(--vermelho-principal);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}

.category-list div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 249, 236, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-list strong {
  color: var(--marrom-texto);
}

.category-list span {
  color: var(--vermelho-principal);
  font-size: 1.5rem;
  font-weight: 1000;
}

.offer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(244, 197, 66, 0.18), transparent 30%),
    linear-gradient(145deg, var(--azul-profundo), var(--azul-principal));
  color: var(--branco);
}

.offer-section h2,
.offer-section .section-heading p:not(.eyebrow) {
  color: var(--branco);
}

.offer-card {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 44px);
  border: 2px solid rgba(244, 197, 66, 0.78);
  border-radius: 30px;
  background: rgba(255, 249, 236, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color: var(--cinza-texto);
  backdrop-filter: blur(18px);
}

.offer-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: var(--laranja-quente);
  filter: blur(60px);
  opacity: 0.22;
  pointer-events: none;
}

.offer-card h3 {
  color: var(--azul-principal);
}

.offer-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--amarelo-milho);
  color: var(--marrom-texto);
  font-weight: 1000;
}

.offer-price {
  display: grid;
  margin: 16px 0;
}

.offer-price span {
  color: var(--marrom-texto);
  font-weight: 900;
  text-decoration: line-through;
}

.offer-price strong {
  color: var(--vermelho-principal);
  font-size: clamp(2.85rem, 8vw, 4.9rem);
  line-height: 0.96;
}

.price-breakdown {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 232, 163, 0.46);
}

.price-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price-breakdown strong {
  color: var(--azul-principal);
}

.price-breakdown .total {
  padding-top: 8px;
  border-top: 1px dashed rgba(74, 44, 26, 0.28);
  color: var(--marrom-texto);
  font-weight: 1000;
}

.almost-free {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(199, 53, 45, 0.1);
  color: var(--vermelho-principal);
  font-size: 0.88rem;
  font-weight: 1000;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-grid span {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 249, 236, 0.86);
  color: var(--marrom-texto);
  box-shadow: var(--shadow-soft);
  font-weight: 1000;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(199, 53, 45, 0.16);
  border-radius: 18px;
  background: rgba(255, 249, 236, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

summary {
  padding: 17px 20px;
  color: var(--marrom-texto);
  cursor: pointer;
  font-weight: 1000;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(244, 197, 66, 0.32), transparent 36%),
    var(--amarelo-claro);
}

.final-cta p {
  font-size: 1.06rem;
}

.footer {
  padding: 42px 0 28px;
  background: var(--marrom-texto);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 132px;
  height: 72px;
  margin-bottom: 12px;
  object-fit: contain;
}

.footer-brand {
  display: block;
  margin-bottom: 10px;
  color: var(--amarelo-milho);
  font-size: 1.35rem;
}

.footer nav {
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--amarelo-milho);
}

.legal-copy {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 197, 66, 0.24), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(242, 140, 40, 0.16), transparent 30%),
    var(--bege-fundo);
}

.legal-header {
  padding: 16px 0;
  border-bottom: 1px solid rgba(199, 53, 45, 0.14);
  background: rgba(255, 249, 236, 0.78);
  backdrop-filter: blur(18px);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.guarantee-copy {
  margin-bottom: 0;
}

.legal-content {
  max-width: 840px;
  margin: 46px auto;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: rgba(255, 249, 236, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-content p {
  font-size: 1.06rem;
}

.blob {
  position: absolute;
  z-index: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.24;
  pointer-events: none;
}

.blob-orange {
  right: 8%;
  top: 14%;
  background: var(--laranja-quente);
}

.blob-yellow {
  left: 5%;
  bottom: 12%;
  background: var(--amarelo-milho);
}

.blob-blue {
  right: 38%;
  bottom: 18%;
  background: var(--azul-principal);
  opacity: 0.16;
}

.blob-red {
  left: 42%;
  top: 18%;
  background: var(--vermelho-principal);
  opacity: 0.14;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.recovery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.recovery-modal.is-visible {
  display: flex;
}

.recovery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 76, 0.72);
  backdrop-filter: blur(14px);
}

.recovery-box {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  overflow: hidden;
  padding: 28px;
  border: 2px solid rgba(244, 197, 66, 0.75);
  border-radius: 28px;
  background: rgba(255, 249, 236, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
  animation: modalIn 0.26s ease both;
  backdrop-filter: blur(18px);
}

.recovery-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: var(--laranja-quente);
  filter: blur(55px);
  opacity: 0.22;
  pointer-events: none;
}

.recovery-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: var(--amarelo-milho);
  filter: blur(50px);
  opacity: 0.25;
  pointer-events: none;
}

.recovery-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--marrom-texto);
  cursor: pointer;
  font-size: 2rem;
}

.recovery-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--amarelo-milho);
  color: var(--marrom-texto);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.recovery-box h2 {
  margin-top: 14px;
}

.recovery-text {
  margin: 12px auto 14px;
  max-width: 360px;
  color: var(--marrom-madeira);
  font-weight: 700;
}

.recovery-price span {
  display: block;
  color: var(--marrom-texto);
  font-weight: 900;
  text-decoration: line-through;
}

.recovery-price strong {
  display: block;
  color: var(--vermelho-principal);
  font-size: clamp(2.8rem, 9vw, 4.4rem);
  font-weight: 1000;
  line-height: 1;
}

.recovery-bonus-pill {
  display: inline-flex;
  margin: 12px 0;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(199, 53, 45, 0.10);
  color: var(--vermelho-principal);
  font-size: 0.86rem;
  font-weight: 1000;
}

.recovery-list {
  display: grid;
  gap: 7px;
  max-width: 330px;
  margin: 8px auto 18px;
  padding: 0;
  color: var(--marrom-texto);
  list-style: none;
  text-align: left;
}

.recovery-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--verde-bandeirinha);
  font-weight: 1000;
}

.recovery-main-btn {
  width: 100%;
  animation: pulse 2.4s ease-in-out infinite;
}

.recovery-secondary {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--marrom-texto);
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
}

.purchase-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9000;
  width: min(340px, calc(100vw - 32px));
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 249, 236, 0.94);
  box-shadow: 0 18px 46px rgba(13, 43, 76, 0.22);
  color: var(--marrom-texto);
  font-size: 0.94rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  backdrop-filter: blur(16px);
}

.purchase-toast::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--verde-bandeirinha);
  color: var(--branco);
  font-size: 0.78rem;
  place-items: center;
  transform: translateY(-50%);
}

.purchase-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shine {
  0%,
  55% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    font-size: 0.84rem;
  }

  .site-header {
    gap: 10px;
    padding: 9px 16px;
  }

  .brand img {
    width: 86px;
    height: 48px;
  }

  .text-brand {
    min-height: 42px;
    font-size: 1.08rem;
  }

  .site-header .btn-small {
    flex: 1;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    padding-top: 16px;
  }

.hero-copy {
    padding: 22px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .lead,
  .split p,
  .section-heading p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .cards-4,
  .cards-3,
  .recipe-grid,
  .category-list,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .recipe-card,
  .recipe-card img {
    min-height: 220px;
  }

  .offer-card,
  .recovery-box {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .price-breakdown div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .almost-free,
  .recovery-bonus-pill {
    border-radius: 16px;
  }

  .purchase-toast {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .legal-header .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
