/* ══════════════════════════════════════════════════════
   DESAFIO 30 DIAS SEM GLÚTEN · Chef GlutenFree
   Design: Organic Luxury Food Magazine
   ══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  --green-deep:   #1a3c2a;
  --green-mid:    #2d5a3d;
  --green-light:  #4a7c59;
  --green-pale:   #d4ead9;
  --amber:        #e8923a;
  --amber-deep:   #c9721e;
  --amber-light:  #fdefd8;
  --terra:        #c25c3a;
  --cream:        #f5efe6;
  --cream-dark:   #ede4d6;
  --brown-light:  #8c6a4f;
  --text:         #1c1c1e;
  --text-muted:   #6b6b6b;
  --white:        #ffffff;

  --petrol:        #0D2E4E;
  --petrol-mid:    #163D60;
  --petrol-light:  #1E5080;
  --orange-urgency:#E8A020;
  --orange-cta:    #E8A020;
  --orange-hover:  #C9861A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-sm:    0 2px 12px rgba(26,60,42,.08);
  --shadow-md:    0 8px 32px rgba(26,60,42,.12);
  --shadow-lg:    0 20px 60px rgba(26,60,42,.18);
  --shadow-amber: 0 8px 32px rgba(232,146,58,.35);

  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --max-w:        1140px;
  --gutter:       clamp(20px, 5vw, 80px);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,146,58,.12);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.section-label--light { color: var(--amber-light); background: rgba(255,255,255,.12); }
.section-label--amber { color: var(--amber-deep); background: var(--amber-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.section-title em { color: var(--amber); font-style: italic; }
.section-title--light { color: var(--white); }
.section-desc { max-width: 560px; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 48px; }
.strike { text-decoration: line-through; color: var(--text-muted); }
h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; line-height: 1.35; }

/* ── Focus accessibility ───────────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange-urgency);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { border-radius: var(--radius-xl); }
summary:focus-visible { border-radius: var(--radius-md); }

/* ── Reveal animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}
.btn--primary:hover {
  background: var(--amber-deep);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(232,146,58,.45);
}
.btn--secondary {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: var(--shadow-md);
}
.btn--secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn--outline:hover { background: var(--green-deep); color: var(--white); }
.btn--lg  { font-size: 1rem; padding: 16px 34px; }
.btn--xl  { font-size: 1.1rem; padding: 20px 42px; }

/* ══ URGENCY BAR ════════════════════════════════════════ */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--orange-urgency);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ══ HEADER ════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,46,78,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(13,46,78,.4); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--gutter);
  max-width: calc(var(--max-w) + var(--gutter) * 2);
  margin: 0 auto;
}
.header__logo-img { height: 38px; }
.header__logo-text {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.logo-chef { color: var(--white); }
.logo-gf   { color: var(--orange-urgency); }
.header__cta-main {
  background: var(--orange-cta);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}
.header__cta-main:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--petrol);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px var(--gutter) 16px;
}
.header__mobile-nav.open { display: flex; }
.header__mobile-cta {
  background: var(--orange-cta);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .9rem;
}

/* ══ HERO ══════════════════════════════════════════════ */
.hero {
  background: var(--petrol);
  background-image:
    radial-gradient(ellipse at 80% 0%, rgba(232,160,32,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(30,80,128,.4) 0%, transparent 50%);
  padding: clamp(60px, 10vw, 100px) var(--gutter) clamp(60px, 8vw, 90px);
  padding-top: calc(40px + 64px + clamp(48px, 7vw, 80px));
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,.18);
  border: 1px solid rgba(232,160,32,.4);
  color: #F5C842;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  width: fit-content;
  animation: fadeInDown .6s cubic-bezier(.4,0,.2,1) both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  animation: fadeInUp .7s .1s cubic-bezier(.4,0,.2,1) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 560px;
  animation: fadeInUp .7s .2s cubic-bezier(.4,0,.2,1) both;
}
.hero__price-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp .7s .3s cubic-bezier(.4,0,.2,1) both;
}
.hero__price-line {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__price-old {
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: rgba(232,160,32,.6);
}
.hero__price-current {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.hero__price-current strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #F5C842;
}
.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: .03em;
  padding: 18px 36px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(232,160,32,.4), 0 2px 8px rgba(0,0,0,.2);
  width: fit-content;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.btn--hero:hover {
  background: var(--orange-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(232,160,32,.55), 0 4px 12px rgba(0,0,0,.25);
  animation: none;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(232,160,32,.4), 0 2px 8px rgba(0,0,0,.2); }
  50%       { box-shadow: 0 8px 40px rgba(232,160,32,.7), 0 2px 8px rgba(0,0,0,.2); }
}
.hero__microcopy {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  letter-spacing: .01em;
}
.hero__image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px dashed rgba(232,160,32,.35);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  min-height: 360px;
}
.hero__placeholder-text {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(232,160,32,.7);
  text-transform: uppercase;
}
.hero__placeholder-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}
.hero__image-caption {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  font-style: italic;
}

/* ══ TRUST BAR ═════════════════════════════════════════ */
.trust-bar {
  background: var(--petrol-mid);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
}
.trust-bar__icon { font-size: 1.3rem; }
.trust-bar__label {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}
.trust-bar__divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}


/* ══ PROBLEMA ══════════════════════════════════════════ */
.problema {
  background: #F5F5F0;
  padding: clamp(64px, 9vw, 112px) 0;
}
.problema__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.problema__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.problema__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.problema__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px 24px 24px;
  border-left: 4px solid var(--orange-urgency);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(13,46,78,.06);
}
.problema__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,46,78,.11);
}
.problema__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.problema__card-body { display: flex; flex-direction: column; gap: 6px; }
.problema__card-body h3 {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.3;
}
.problema__card-body p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Insight block */
.problema__insight {
  background: var(--petrol);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.problema__insight-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.problema__insight-text p {
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}
.problema__insight-text strong {
  color: #F5C842;
  font-weight: 700;
}

/* CTA arrow bridge */
.problema__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.problema__cta-hook {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: var(--petrol);
  font-style: italic;
}
.problema__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange-urgency);
  color: var(--white);
  transition: var(--transition);
  animation: bounceDown 2s ease-in-out infinite;
}
.problema__cta-arrow:hover {
  background: var(--orange-hover);
  transform: translateY(4px);
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ══ SOLUÇÃO ═══════════════════════════════════════════ */
.solucao {
  background: var(--petrol);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 0;
}
.solucao__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.solucao__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,.1), transparent 70%);
  top: -150px; right: -150px;
}
.solucao__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,80,128,.5), transparent 70%);
  bottom: -100px; left: -100px;
}
.solucao__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  position: relative;
}
.solucao__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
}
.solucao__title em {
  color: #F5C842;
  font-style: italic;
  display: block;
  margin-top: 6px;
}

/* Pilares */
.solucao__pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 7vw, 72px);
  position: relative;
}
.solucao__pilar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}
.solucao__pilar:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(232,160,32,.3);
  transform: translateY(-3px);
}
.solucao__pilar-icon { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.solucao__pilar-body { display: flex; flex-direction: column; gap: 8px; }
.solucao__pilar-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #F5C842;
}
.solucao__pilar-body p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* Checklist */
.solucao__recebe {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.solucao__recebe-header {
  margin-bottom: 28px;
}
.solucao__recebe-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
}
.solucao__checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.solucao__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.solucao__check { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.solucao__checklist strong { color: #F5C842; font-weight: 600; }

/* ══ INCLUÍDO ══════════════════════════════════════════ */
.incluido { background: var(--cream); }
.incluido__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.incluido__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: var(--transition);
}
.incluido__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.incluido__card-icon { font-size: 2rem; margin-bottom: 12px; }
.incluido__card-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--amber-light);
  color: var(--amber-deep);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
}
.incluido__card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; }
.incluido__card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.incluido__value { font-size: .85rem; font-weight: 600; color: var(--amber-deep); }
.incluido__total {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.incluido__total p { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.incluido__total-price { font-size: 1.3rem; color: var(--white) !important; margin-bottom: 24px !important; }
.incluido__total-price strong { font-family: var(--font-display); font-size: 2.5rem; color: var(--amber); }

/* ══ RECEITAS ══════════════════════════════════════════ */
.receitas { position: relative; background: var(--cream-dark); }
.receitas__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(26,60,42,.04) 0%, transparent 50%);
  pointer-events: none;
}
.receitas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.receitas__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.receitas__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.receitas__card-img { position: relative; overflow: hidden; }
.receitas__card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.receitas__card:hover .receitas__card-img img { transform: scale(1.05); }
.receitas__card-day {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-deep);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}
.receitas__card-body { padding: 20px; }
.receitas__card-category { font-size: .75rem; font-weight: 600; color: var(--amber); display: block; margin-bottom: 8px; }
.receitas__card-body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.receitas__card-body p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.receitas__card-meta { display: flex; gap: 14px; font-size: .8rem; color: var(--text-muted); }
.receitas__cta { text-align: center; }
.receitas__cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }
.receitas__cta strong { color: var(--green-deep); }

/* ══ MIXES ═════════════════════════════════════════════ */
.mixes { background: var(--cream); }
.mixes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.mixes__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.mixes__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mixes__card-img img { width: 100%; height: 260px; object-fit: cover; }
.mixes__card-body { padding: 28px; flex: 1; }
.mixes__card-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; }
.mixes__card-body p  { color: var(--text-muted); font-size: .95rem; margin-bottom: 16px; }
.mixes__card-body ul { display: flex; flex-direction: column; gap: 8px; }
.mixes__card-body li { font-size: .9rem; color: var(--green-mid); font-weight: 500; }

/* ══ DEPOIMENTOS ═══════════════════════════════════════ */
.depoimentos {
  background: #1A3F6F;
  padding: clamp(64px, 9vw, 112px) 0;
  overflow: hidden;
}
.depoimentos__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.depoimentos__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.depoimentos__subtitle {
  font-size: clamp(.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Slider layout */
.depoimentos__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.depoimentos__slider {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.depoimentos__track {
  display: flex;
  will-change: transform;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

/* Individual card */
.dep-card {
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}
.dep-card__inner {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .25s;
  backdrop-filter: blur(4px);
}
.dep-card__inner:hover { background: rgba(255,255,255,.15); }

.dep-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dep-card__photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(232,160,32,.5);
  position: relative;
}
.dep-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.dep-card__photo-ph {
  display: none;
  width: 100%; height: 100%;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,.4);
}
.dep-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}
.dep-card__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.dep-card__city {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}
.dep-card__stars {
  color: var(--orange-urgency);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-top: 2px;
}
.dep-card__text {
  font-size: .92rem;
  font-style: italic;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  flex: 1;
}
.dep-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,139,34,.35);
  border: 1px solid rgba(100,200,100,.3);
  color: #7DEFA7;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 99px;
  width: fit-content;
}
.dep-card__badge::before { content: '✓'; font-size: .8rem; }

/* Nav buttons */
.dep-nav {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.dep-nav:hover {
  background: var(--orange-urgency);
  border-color: transparent;
  transform: scale(1.08);
}
.dep-nav:disabled {
  opacity: .3;
  pointer-events: none;
}
.dep-nav--prev,
.dep-nav--next { /* direction variants — visual handled by SVG */ }

/* Dots */
.depoimentos__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dep-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.dep-dot--active {
  background: var(--orange-urgency);
  width: 24px;
}

/* ══ CHEF ══════════════════════════════════════════════ */
.chef {
  background: #F5F5F0;
  padding: clamp(64px, 9vw, 112px) 0;
}
.chef__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.chef__image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.chef__image-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.chef__image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.chef__image-placeholder {
  display: none;
  width: 100%;
  aspect-ratio: 4/5;
  border: 2px dashed rgba(13,46,78,.25);
  border-radius: var(--radius-lg);
  background: rgba(13,46,78,.04);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.chef__placeholder-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(13,46,78,.4);
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}
.chef__placeholder-sub { font-size: .7rem; color: rgba(13,46,78,.25); }
.chef__image-caption {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* Content column */
.chef__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chef__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--petrol);
  line-height: 1.15;
}
.chef__role {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--orange-urgency);
  margin-top: -10px;
}
.chef__bio {
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.chef__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chef__social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--petrol);
  transition: color .2s;
}
.chef__social-item:hover { color: var(--orange-urgency); }
.chef__social-icon { font-size: 1rem; width: 20px; text-align: center; }
.btn--chef {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--petrol);
  border: 2px solid var(--petrol);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
}
.btn--chef:hover {
  background: var(--petrol);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══ BÔNUS ══════════════════════════════════════════════ */
.bonus {
  background: #F5F5F0;
  padding: clamp(64px, 9vw, 112px) 0;
}
.bonus__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.bonus__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--petrol);
  line-height: 1.2;
  margin-bottom: 12px;
}
.bonus__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Grid 2×2 */
.bonus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 56px);
}
.bonus__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--orange-urgency);
  box-shadow: 0 4px 20px rgba(13,46,78,.08);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bonus__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .55s ease;
  pointer-events: none;
}
.bonus__card:hover::after { transform: translateX(100%); }
.bonus__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13,46,78,.14);
}
.bonus__card--star {
  border-top-color: #F5C842;
  background: linear-gradient(160deg, #fff 70%, rgba(245,200,66,.06));
}

/* Badge label */
.bonus__card-badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange-urgency);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  width: fit-content;
}
.bonus__card-badge--star {
  background: linear-gradient(90deg, #E8A020, #F5C842);
  color: var(--petrol);
}

/* Icon */
.bonus__card-icon {
  font-size: 2.4rem;
  line-height: 1;
}

/* Body */
.bonus__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bonus__card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.35;
}
.bonus__card-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Value row */
.bonus__card-value {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}
.bonus__value-label {
  font-size: .75rem;
  font-weight: 700;
  color: #2e8b4a;
  background: rgba(46,139,74,.1);
  padding: 3px 10px;
  border-radius: 99px;
}
.bonus__value-price {
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Image placeholder */
.bonus__card-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 80px;
  border: 2px dashed rgba(13,46,78,.18);
  border-radius: var(--radius-md);
  background: rgba(13,46,78,.03);
}
.bonus__card-img-ph span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(13,46,78,.3);
  text-transform: uppercase;
  text-align: center;
}
.bonus__card-img-ph small {
  font-size: .62rem;
  color: rgba(13,46,78,.2);
}

/* Bonus 4 highlight */
.bonus__card-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bonus__highlight-old {
  font-size: .95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(232,160,32,.6);
}
.bonus__highlight-free {
  font-size: .95rem;
  font-weight: 800;
  color: #2e8b4a;
}
.bonus__card-gift {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #E8A020, #F5C842);
  color: var(--petrol);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 99px;
  width: fit-content;
}

/* Summary box */
.bonus__summary {
  background: var(--petrol);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px) clamp(24px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bonus__summary-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bonus__summary-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bonus__summary-value {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
}
.bonus__summary-value s {
  color: rgba(255,255,255,.4);
  text-decoration-color: rgba(232,160,32,.5);
}
.bonus__summary-free {
  font-size: .95rem;
  color: #7DEFA7;
}
.bonus__summary-free strong {
  font-weight: 800;
}
.bonus__summary-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══ GARANTIA ═══════════════════════════════════════════ */
.garantia {
  background: #1B5E20;
  padding: clamp(64px, 9vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.garantia__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.06) 0%, transparent 65%);
  pointer-events: none;
}
.garantia__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.garantia__shield {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  filter: drop-shadow(0 4px 24px rgba(255,255,255,.15));
  animation: shieldPulse 3s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%,100% { transform: scale(1);   filter: drop-shadow(0 4px 24px rgba(255,255,255,.15)); }
  50%      { transform: scale(1.06); filter: drop-shadow(0 8px 32px rgba(255,255,255,.28)); }
}
.garantia__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.garantia__days {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #A5D6A7;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 99px;
}
.garantia__text {
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  max-width: 580px;
}
.garantia__text strong { color: #A5D6A7; font-weight: 700; }
.garantia__obs {
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  text-align: left;
  max-width: 620px;
}
.garantia__obs strong { color: rgba(255,255,255,.8); }

/* ══ OFERTA ════════════════════════════════════════════ */
.oferta {
  background: var(--petrol);
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.oferta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.oferta__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,.1), transparent 70%);
  top: -200px; right: -200px;
}
.oferta__glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,80,128,.5), transparent 70%);
  bottom: -150px; left: -150px;
}

/* Countdown */
.oferta__countdown-wrap {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
  position: relative;
}
.oferta__countdown-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.oferta__countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-urgency);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  box-shadow: 0 8px 32px rgba(232,160,32,.35);
}
.cnt-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
}
.cnt-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cnt-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.cnt-sep {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: rgba(255,255,255,.5);
  line-height: 1;
  margin-bottom: 16px;
  align-self: flex-start;
  padding-top: 10px;
}

/* Header */
.oferta__head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.oferta__badge-urg {
  display: inline-block;
  background: rgba(232,160,32,.18);
  border: 1px solid rgba(232,160,32,.4);
  color: #F5C842;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.oferta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

/* Box */
.oferta__box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.oferta__box-top {
  background: var(--petrol);
  padding: 22px 32px;
  border-bottom: 3px solid var(--orange-urgency);
}
.oferta__box-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

/* Checklist */
.oferta__checklist {
  padding: 24px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--cream-dark);
}
.oferta__checklist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
.oferta__check { font-size: .95rem; flex-shrink: 0; }
.oferta__checklist strong { color: var(--petrol); font-weight: 700; }
.oferta__checklist em { color: var(--text-muted); font-style: normal; font-size: .82rem; }

/* Pricing */
.oferta__pricing {
  text-align: center;
  padding: 24px 32px 0;
}
.oferta__price-from {
  display: block;
  font-size: .95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(232,160,32,.6);
  margin-bottom: 6px;
}
.oferta__price-main {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.oferta__price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--petrol);
  margin-top: 12px;
}
.oferta__price-amount {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--petrol);
  line-height: 1;
}
.oferta__price-install {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 20px;
}

/* CTA */
.oferta__cta {
  display: flex;
  margin: 0 32px 16px;
  justify-content: center;
  align-items: center;
  width: calc(100% - 64px);
  font-size: clamp(.85rem, 1.4vw, 1rem);
}
.oferta__security-text {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  padding: 0 32px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Payment icons */
.oferta__payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 32px 28px;
  border-top: 1px solid var(--cream-dark);
}
.pay-icon {
  border-radius: 5px;
  display: block;
  transition: opacity .2s;
}
.oferta__urgency strong { color: var(--amber); }

/* ══ FAQ ═══════════════════════════════════════════════ */
.faq {
  background: #F5F5F0;
  padding: clamp(64px, 9vw, 112px) 0;
}
.faq__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--white);
  border: 1px solid rgba(13,46,78,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] {
  border-color: var(--orange-urgency);
  box-shadow: 0 4px 20px rgba(232,160,32,.12);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--petrol);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--orange-urgency);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__answer {
  border-top: 1px solid rgba(13,46,78,.07);
  padding: 18px 24px 22px;
  animation: faqFadeIn .22s ease both;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq__answer p { font-size: .95rem; color: var(--text-muted); line-height: 1.78; }
.faq__answer strong { color: var(--petrol); font-weight: 700; }
.faq__cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.faq__cta p { color: var(--text-muted); margin-bottom: 16px; font-size: .95rem; }

/* ══ FOOTER ════════════════════════════════════════════ */
.footer {
  background: #0A1A2E;
  padding: clamp(48px, 7vw, 80px) 0 0;
  color: rgba(255,255,255,.55);
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 40px;
  align-items: start;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer__logo span { color: var(--orange-urgency); }
.footer__brand { display: flex; flex-direction: column; }
.footer__slogan {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer__social-link:hover {
  background: var(--orange-urgency);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__links-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer__links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer__links-col a:hover { color: var(--orange-urgency); }
.footer__disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  margin-bottom: 0;
  max-width: 820px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}
.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__bottom-links a {
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer__bottom-links a:hover { color: var(--orange-urgency); }

/* ══ WHATSAPP FLOAT ════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  background: #25D366;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

/* ══ BACK TO TOP ════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 92px; right: 28px;
  z-index: 99;
  background: var(--petrol);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13,46,78,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover { background: var(--orange-urgency); }

/* ══ RESPONSIVE ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .receitas__grid { grid-template-columns: repeat(2, 1fr); }
  .incluido__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .solucao__pilares { grid-template-columns: 1fr; gap: 14px; }
  .bonus__grid { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr 340px; }
  .chef__inner { grid-template-columns: 340px 1fr; }
}

@media (max-width: 768px) {
  .header__hamburger { display: flex; }

  /* Hero mobile */
  .hero { padding-top: calc(40px + 64px + 36px); }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__badge { margin: 0 auto; }
  .hero__sub { margin: 0 auto; }
  .hero__price-line { justify-content: center; }
  .btn--hero { width: 100%; }
  .hero__image-wrap { order: -1; }
  .hero__image-frame { min-height: 260px; max-width: 320px; }

  /* Trust bar mobile */
  .trust-bar__inner { gap: 4px; }
  .trust-bar__item { padding: 8px 16px; }
  .trust-bar__divider { height: 20px; }

  .problema__grid { grid-template-columns: repeat(2, 1fr); }
  .problema__insight { flex-direction: column; gap: 12px; }
  .problema__card { padding: 18px 16px 18px 20px; }
  .solucao__pilares { grid-template-columns: 1fr; }
  .solucao__checklist { grid-template-columns: 1fr; }
  .chef__inner { grid-template-columns: 1fr; }
  .chef__image-col { max-width: 340px; margin: 0 auto; }
  .incluido__grid { grid-template-columns: 1fr; }
  .receitas__grid { grid-template-columns: 1fr; }
  .mixes__grid { grid-template-columns: 1fr; }
  .dep-nav { display: none; }
  .bonus__grid { grid-template-columns: 1fr; }
  .bonus__summary { flex-direction: column; align-items: flex-start; }
  .bonus__summary-btn { width: 100%; }
  .oferta__countdown { padding: 12px 16px; gap: 6px; }
  .cnt-unit { min-width: 40px; }
  .oferta__box-top,
  .oferta__checklist,
  .oferta__pricing,
  .oferta__cta,
  .oferta__security-text,
  .oferta__payments { padding-left: 20px; padding-right: 20px; }
  .oferta__cta { margin-left: 20px; margin-right: 20px; width: calc(100% - 40px); }
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .back-to-top { bottom: 88px; right: 20px; }
  .whatsapp-float { right: 20px; bottom: 24px; }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }
  .btn--xl { font-size: 1rem; padding: 16px 28px; }
  .oferta__amount { font-size: 4rem; }
  .urgency-bar { font-size: .72rem; padding: 8px 16px; }
  .trust-bar__inner { flex-direction: column; gap: 8px; }
  .trust-bar__divider { width: 40px; height: 1px; }
  .problema__grid { grid-template-columns: 1fr; }
}
