/* ═══════════════════════════════════════════════════════════
   DESAFIO FAÇA & VENDA — Landing Page Styles
   Stack: CSS Vanilla · Mobile-First · BEM · Gourmet Premium Redesign
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   1. RESET & BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ═══════════════════════════════════════════
   2. DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  /* Gourmet Cinematic Warm Backgrounds */
  --color-bg-primary:       #FFFDF9; /* Gourmet warm editorial cream */
  --color-bg-secondary:     #FAF6F0; /* Soft warm sand */
  --color-bg-card:          #FFFFFF; /* Pure White */
  --color-bg-elevated:      #F5EFE6; /* Sandy warm accent */
  --color-bg-dark-gourmet:  #0E0906; /* Cinematic Warm Black / Charcoal */
  --color-bg-dark-secondary:#1D120D; /* Cacao Deep Brown */

  /* Gold & Warm Accents (Prestígio & Tradição) */
  --color-gold-500:         #C59A4E; /* Burnished premium gold */
  --color-gold-300:         #D5AB55; /* Old Gold warm glow */
  --color-gold-700:         #9D722A; /* Deep dark gold syrup */
  --color-gold-glow:        rgba(213, 171, 85, 0.15);
  --color-gold-glow-strong: rgba(213, 171, 85, 0.35);

  /* Festa Junina Culinária (Terracota & Sálvia) */
  --color-terracota:        #B75B3F; /* Refined Clay/Copper */
  --color-terracota-light:  #C66547;
  --color-marigold:         #D87D43; /* Soft amber/sunset orange */
  
  --color-sage-green:       #3D7A5A; /* Herbal Sage green */
  --color-sage-light:       #E8F2EC;

  /* Typography / Espresso Tones */
  --color-text-primary:     #1D120D; /* Espresso charcoal */
  --color-text-secondary:   #4E3E34; /* Soft Cocoa grey */
  --color-text-muted:       #8A796E; /* Sand muted clay */
  --color-text-inverse:     #FFFDF9; /* Contrast white */

  /* Semantic */
  --color-success:          var(--color-sage-green);
  --color-danger:           var(--color-terracota);

  /* Typography Pairing (Lora & Plus Jakarta Sans) */
  --font-display:           'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-body:              'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   0.8125rem;
  --text-sm:   0.9375rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.625rem;
  --text-3xl:  2rem;
  --text-4xl:  2.625rem;
  --text-5xl:  3.5rem;
  --text-price: 3.8rem;

  --leading-tight:   1.15;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;

  --tracking-cta:   0.08em;
  --tracking-wide:  0.03em;
  --tracking-wider: 0.12em;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --section-padding-y: var(--space-24); /* Substantial visual breathing room (96px) */
  --section-gap:       var(--space-12); /* 48px */
  --container-max:     960px;
  --container-padding: var(--space-5);

  /* Borders & Radii */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --border-subtle:      1px solid rgba(29, 18, 13, 0.08);
  --border-gold:        1px solid rgba(197, 154, 78, 0.25);
  --border-gold-strong: 1px solid var(--color-gold-500);

  /* Shadows */
  --shadow-card:           0 8px 30px rgba(29, 18, 13, 0.04);
  --shadow-gold-sm:        0 0 20px var(--color-gold-glow);
  --shadow-gold-md:        0 0 40px var(--color-gold-glow);
  --shadow-gold-lg:        0 0 60px var(--color-gold-glow);
  --shadow-gold-pulse-min: 0 0 25px rgba(197, 154, 78, 0.25);
  --shadow-gold-pulse-max: 0 0 45px rgba(197, 154, 78, 0.55);

  /* Transitions */
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --duration-fast:      150ms;
  --duration-normal:    300ms;
  --duration-slow:      600ms;
  --duration-animation: 2500ms;

  /* Z-Index */
  --z-base:    2;
  --z-card:    10;
  --z-sticky:  100;
  --z-overlay: 200;
}

/* ═══════════════════════════════════════════
   3. UTILITIES & ICONS
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-padding-y);
  background-color: var(--color-bg-primary);
  position: relative;
}

.section--alt {
  background-color: var(--color-bg-secondary);
}

.section--dark {
  background-color: var(--color-bg-dark-gourmet);
  color: var(--color-text-inverse);
}

.section--dark .section-headline {
  color: var(--color-text-inverse);
}

.section--dark .feature-item {
  background: rgba(29, 18, 13, 0.85); /* Premium cacao dark glassmorphism */
  border-color: rgba(197, 154, 78, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.section--dark .feature-item::before {
  border-color: rgba(197, 154, 78, 0.25);
}

.section--dark .feature-item__text {
  color: #EDE7E3; /* High contrast white text on dark cards */
}

.section--dark .feature-item:hover {
  border-color: var(--color-gold-300);
  box-shadow: 0 12px 25px rgba(197, 154, 78, 0.18);
}

.section-headline {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--section-gap);
  letter-spacing: -0.01em;
}

.section-headline strong {
  font-weight: var(--weight-bold);
  background: linear-gradient(
    90deg,
    var(--color-gold-700) 0%,
    var(--color-gold-300) 25%,
    #FFF0CD 50%,
    var(--color-gold-300) 75%,
    var(--color-gold-700) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Custom SVGs styles */
.icon {
  display: inline-flex;
  align-self: center;
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.icon--success {
  color: var(--color-sage-green);
}

.icon--success circle {
  fill: var(--color-sage-green);
  opacity: 0.08;
  stroke: none;
}

.icon--danger {
  color: var(--color-terracota);
}

.icon--danger circle {
  fill: var(--color-terracota);
  opacity: 0.08;
  stroke: none;
}

.icon--fire {
  color: var(--color-marigold);
}

.icon--shield {
  color: var(--color-gold-300);
}

.icon--sparkles {
  color: var(--color-gold-500);
}

.icon--profit {
  color: var(--color-sage-green);
  width: 1.1em;
  height: 1.1em;
  margin-right: 4px;
}

/* ═══════════════════════════════════════════
   4. CTA BUTTON
   ═══════════════════════════════════════════ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-10);
  background: linear-gradient(135deg, #FFE3A8 0%, var(--color-gold-500) 40%, var(--color-gold-700) 100%);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 30px rgba(197, 154, 78, 0.35);
  transition: transform var(--duration-normal) var(--ease-bounce),
              box-shadow var(--duration-normal) var(--ease-default),
              background var(--duration-normal) var(--ease-default);
  animation: cta-pulse var(--duration-animation) ease-in-out infinite;
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.45) 70%,
    transparent
  );
  animation: cta-sweep 4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.cta-button--large {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

.cta-button--full {
  width: 100%;
}

@media (hover: hover) {
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-pulse-max);
    background: linear-gradient(135deg, #E0A93C, var(--color-gold-500));
  }

  .cta-button:active {
    transform: translateY(-1px);
  }
}

.cta-button:focus-visible {
  outline: 2px solid var(--color-gold-300);
  outline-offset: 4px;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--section-gap);
}

.cta-microcopy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
}

.cta-microcopy .icon {
  width: 1.3em;
  height: 1.3em;
}

/* ═══════════════════════════════════════════
   5. BANDEIRINHAS DECORATIVAS
   ═══════════════════════════════════════════ */
.bandeirinhas {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  height: 60px;
}

/* Modifiers to position flags gracefully without overlaps */
.bandeirinhas--top {
  top: 0;
  bottom: auto;
}

.bandeirinhas--relative {
  position: relative;
  bottom: auto;
  left: auto;
  margin-block: var(--space-6) var(--space-10);
  height: 48px;
}

/* Highly styled elegant double copper trace string behind flags */
.bandeirinhas::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -5%;
  right: -5%;
  height: 36px;
  border-bottom: 2px dashed rgba(198, 101, 71, 0.4);
  border-top: 1px dashed rgba(197, 154, 78, 0.25);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.bandeirinha {
  display: inline-block;
  width: 16px;
  height: 22px;
  position: relative;
  z-index: 2;
  transform-origin: top center;
  flex-shrink: 0;
  opacity: 0.95;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--duration-normal) var(--ease-bounce),
              filter var(--duration-normal) var(--ease-default),
              opacity var(--duration-fast) var(--ease-default);
}

.bandeirinha:hover {
  animation: none !important;
  transform: scale(1.35) rotate(15deg) translateY(-3px) !important;
  opacity: 1;
  filter: drop-shadow(0 6px 12px rgba(197, 154, 78, 0.45));
  z-index: 10;
  cursor: pointer;
}

/* Alternate Flag Shapes (Triangular vs Two-Point cuts) for premium handcrafted look */
.bandeirinha:nth-child(2n+1) {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  animation: sway 2.8s ease-in-out infinite;
}

.bandeirinha:nth-child(2n) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  animation: sway 3.2s ease-in-out infinite;
}

.bandeirinha:nth-child(4n+1) { background: linear-gradient(135deg, var(--color-terracota), #90301A); }
.bandeirinha:nth-child(4n+2) { background: linear-gradient(135deg, var(--color-gold-300), var(--color-gold-700)); }
.bandeirinha:nth-child(4n+3) { background: linear-gradient(135deg, var(--color-marigold), #A64E1D); }
.bandeirinha:nth-child(4n+4) { background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-elevated)); border-color: rgba(197, 154, 78, 0.35); }

/* Staggered sway animations */
.bandeirinha:nth-child(1)  { animation-delay: 0.00s; }
.bandeirinha:nth-child(2)  { animation-delay: 0.12s; }
.bandeirinha:nth-child(3)  { animation-delay: 0.24s; }
.bandeirinha:nth-child(4)  { animation-delay: 0.36s; }
.bandeirinha:nth-child(5)  { animation-delay: 0.48s; }
.bandeirinha:nth-child(6)  { animation-delay: 0.60s; }
.bandeirinha:nth-child(7)  { animation-delay: 0.72s; }
.bandeirinha:nth-child(8)  { animation-delay: 0.84s; }
.bandeirinha:nth-child(9)  { animation-delay: 0.96s; }
.bandeirinha:nth-child(10) { animation-delay: 1.08s; }
.bandeirinha:nth-child(11) { animation-delay: 1.20s; }
.bandeirinha:nth-child(12) { animation-delay: 1.32s; }
.bandeirinha:nth-child(13) { animation-delay: 1.44s; }
.bandeirinha:nth-child(14) { animation-delay: 1.56s; }
.bandeirinha:nth-child(15) { animation-delay: 1.68s; }
.bandeirinha:nth-child(16) { animation-delay: 1.80s; }

/* Parabolic translateY & rotate mapping to follow the catenary curve perfectly */
.bandeirinha:nth-child(1)  { transform: translateY(0px) rotate(14deg); }
.bandeirinha:nth-child(2)  { transform: translateY(4px) rotate(11deg); }
.bandeirinha:nth-child(3)  { transform: translateY(8px) rotate(8deg); }
.bandeirinha:nth-child(4)  { transform: translateY(11px) rotate(6deg); }
.bandeirinha:nth-child(5)  { transform: translateY(14px) rotate(4deg); }
.bandeirinha:nth-child(6)  { transform: translateY(16px) rotate(2deg); }
.bandeirinha:nth-child(7)  { transform: translateY(17px) rotate(1deg); }
.bandeirinha:nth-child(8)  { transform: translateY(18px) rotate(0deg); }
.bandeirinha:nth-child(9)  { transform: translateY(18px) rotate(0deg); }
.bandeirinha:nth-child(10) { transform: translateY(17px) rotate(-1deg); }
.bandeirinha:nth-child(11) { transform: translateY(16px) rotate(-2deg); }
.bandeirinha:nth-child(12) { transform: translateY(14px) rotate(-4deg); }
.bandeirinha:nth-child(13) { transform: translateY(11px) rotate(-6deg); }
.bandeirinha:nth-child(14) { transform: translateY(8px) rotate(-8deg); }
.bandeirinha:nth-child(15) { transform: translateY(4px) rotate(-11deg); }
.bandeirinha:nth-child(16) { transform: translateY(0px) rotate(-14deg); }

/* ═══════════════════════════════════════════
   6. HERO SECTION (DARK GOURMET)
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--color-bg-dark-gourmet);
  color: var(--color-text-inverse);
  min-height: auto; /* Flow naturally on mobile to prevent clipping and CTA button overlapping */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible; /* Let photo and circular halo float out freely */
  padding: var(--space-20) 0 var(--space-12); /* Generous top padding for top flags, clean bottom spacing */
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42; /* Increased visibility of typical food */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(61, 11, 15, 0.25) 0%,
    rgba(29, 18, 13, 0.75) 50%,
    var(--color-bg-dark-gourmet) 100%
  );
  background-blend-mode: multiply;
  z-index: -1;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 157, 59, 0.16) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.hero__smoke {
  position: absolute;
  width: 800px;
  height: 400px;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(213, 171, 85, 0.05) 0%,
    transparent 65%
  );
  z-index: -1;
  animation: smoke-drift 12s linear infinite;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   PARTÍCULAS CINEMATOGRÁFICAS (BRASAS)
   ═══════════════════════════════════════════ */
.particles-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  bottom: -20px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle, #FFA24A 20%, rgba(213, 171, 85, 0.4) 80%);
  box-shadow: 0 0 10px rgba(255, 162, 74, 0.9), 0 0 20px rgba(213, 171, 85, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: float-embers var(--duration) linear infinite;
  animation-delay: var(--delay);
}

.offer-card .particle {
  animation-name: float-embers-card;
  background: radial-gradient(circle, #FFE3A8 20%, rgba(213, 171, 85, 0.5) 80%);
  box-shadow: 0 0 8px rgba(255, 227, 168, 0.9), 0 0 16px rgba(213, 171, 85, 0.6);
}

@keyframes float-embers-card {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-380px) scale(0.3) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float-embers {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-110vh) scale(0.3) rotate(360deg);
    opacity: 0;
  }
}

.hero__content {
  display: flex;
  flex-direction: column-reverse; /* Render Djenifer + Logo 3D Composition at the top on mobile/tablet */
  align-items: center;
  gap: var(--space-8);
  width: 100%;
  z-index: var(--z-base);
}

.hero__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--color-gold-300);
  background: rgba(212, 155, 40, 0.08);
  border: 1px solid rgba(212, 155, 40, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-2);
  animation: hero-fade-in 0.8s var(--ease-out) both;
}

.hero__logo {
  max-width: 340px; /* Enlarged logo for mobile */
  margin-bottom: var(--space-2);
  display: block;
}

.hero__logo img {
  width: 100%;
  height: auto;
  animation: logo-float 6s ease-in-out infinite;
  transition: transform var(--duration-normal) var(--ease-bounce), filter var(--duration-normal) var(--ease-default);
}

.hero__logo:hover img {
  transform: scale(1.04) rotate(0.5deg);
  filter: drop-shadow(0 8px 24px rgba(213, 171, 85, 0.25));
}

.hero__logo-overlap {
  display: block;
  position: absolute;
  bottom: 12px; /* Shifted down to bottom waist/pants area to clear laptop and hands completely */
  left: 50%;
  transform: translateX(-50%);
  width: 350px; /* Visibly enlarged logo on mobile leaving only a tiny margin on screen edges */
  max-width: 92vw; /* Ensure it expands to fill 92% of screen width on mobile while scaling down gracefully */
  z-index: 4; /* Render in front of Djenifer (which is z-index: 3) */
  pointer-events: none; /* Make clicks pass through */
}

.hero__logo-overlap img {
  width: 100%;
  height: auto;
  /* Removed float animation to keep it stable and solid */
  transition: transform var(--duration-normal) var(--ease-bounce), filter var(--duration-normal) var(--ease-default);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.98)) drop-shadow(0 12px 35px rgba(0, 0, 0, 0.95));
}

.hero__photo-wrapper:hover .hero__logo-overlap img {
  transform: scale(1.06) rotate(0.5deg);
  filter: drop-shadow(0 15px 35px rgba(213, 171, 85, 0.35)) drop-shadow(0 12px 35px rgba(0, 0, 0, 0.98));
}

/* Deeper shadow overlay for Djenifer's waist down to dramatically enhance readability */
.hero__photo-shadow-overlay {
  display: block;
  position: absolute;
  inset: 0;
  /* Multi-stop gradient starting from 25% (ribs/chest) down to 75% (solid black) */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 25%,
    rgba(14, 9, 6, 0.45) 45%,
    rgba(14, 9, 6, 0.88) 60%,
    rgba(14, 9, 6, 1) 75%,
    rgba(14, 9, 6, 1) 100%
  );
  z-index: 3.5; /* Between Djenifer (3) and Logo (4) */
  pointer-events: none;
}

.hero__notification {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 18, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(197, 154, 78, 0.28);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 
              inset 0 1px 2px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 2.8; /* Float BEHIND Djenifer's hair/arm and behind overlapping logo for 3D parallax depth */
  min-width: 170px;
  max-width: 190px;
}

.hero__notification-icon {
  width: 24px;
  height: 24px;
  background: rgba(14, 9, 6, 0.8);
  border: 1px solid rgba(197, 154, 78, 0.45);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 9px;
  color: #FFF0D0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.hero__notification-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__notification-title {
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
}

.hero__notification-value {
  color: var(--color-gold-300);
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
}

.hero__notification--top-left {
  left: -32px;
  top: 50px;
  animation: float-top-left 5s ease-in-out infinite alternate;
}

.hero__notification--top-right {
  right: -32px;
  top: 15px;
  animation: float-top-right 6.5s ease-in-out infinite alternate;
}

.hero__notification--mid-right {
  right: -32px;
  top: 85px;
  animation: float-mid-right 5.8s ease-in-out infinite alternate;
}

.hero__notification--bottom-right {
  right: -32px;
  top: 155px;
  animation: float-bottom-right 6s ease-in-out infinite alternate;
}

@keyframes float-top-left {
  0% { transform: translateY(0) rotate(1deg); }
  100% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes float-top-right {
  0% { transform: translateY(0) rotate(-1.5deg) scale(0.85); }
  100% { transform: translateY(-12px) rotate(1deg) scale(0.85); }
}

@keyframes float-mid-right {
  0% { transform: translateY(0) rotate(1deg) scale(0.92); }
  100% { transform: translateY(-10px) rotate(-1.5deg) scale(0.92); }
}

@keyframes float-bottom-right {
  0% { transform: translateY(0) rotate(-0.5deg) scale(0.98); }
  100% { transform: translateY(-8px) rotate(1deg) scale(0.98); }
}



.hero__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 2.1rem; /* Scaled up from var(--text-2xl) (1.625rem) to 2.1rem (33.6px) for massive impact */
  line-height: 1.15;
  color: var(--color-text-inverse);
  max-width: 620px;
  letter-spacing: -0.02em;
}

.hero__headline strong {
  font-weight: var(--weight-bold);
  background: linear-gradient(
    90deg,
    var(--color-gold-700) 0%,
    var(--color-gold-300) 25%,
    #FFF0CD 50%,
    var(--color-gold-300) 75%,
    var(--color-gold-700) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s linear infinite;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #DDD4CD;
  max-width: 500px;
  line-height: var(--leading-normal);
}

.hero__proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: #C5B9B0;
  max-width: 420px;
  text-align: left;
  margin-block: var(--space-2);
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__proof .icon {
  width: 1.15em;
  height: 1.15em;
  color: var(--color-gold-300);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
}

.hero__actions .cta-microcopy {
  color: #8A7B70;
}

.hero__actions .cta-microcopy .icon {
  color: var(--color-terracota-light);
}

.hero__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-gold-300);
  opacity: 0.9;
  font-weight: var(--weight-medium);
  letter-spacing: 0.5px;
}

.hero__guarantee .icon {
  width: 1.25em;
  height: 1.25em;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: var(--space-4);
}

/* Soft gold glow behind the magazine arched picture frame */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 155, 40, 0.25) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}

/* Beautiful Gourmet Arched Frame for Djenifer - REMOVED standard rigid borders to let her float freely */
.hero__photo-wrapper {
  position: relative;
  width: 290px; /* Redimensionada de forma inteligente para celular para liberar as laterais para as notificações sem cortes */
  height: 385px; /* Redimensionada de forma inteligente para celular */
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible; /* Let her silhouette pop out freely! */
  transition: transform var(--duration-slow) var(--ease-default);
}

.hero__photo-wrapper:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Renascença Lace Repeating Background Pattern - Refined as a soft circular halo behind her */
.hero__photo-lace {
  position: absolute;
  inset: -10px -20px 20px -20px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
  background-image: radial-gradient(circle at 50% 50%, transparent 6px, var(--color-gold-300) 7px, transparent 8px),
                    radial-gradient(circle at 0 0, transparent 6px, var(--color-gold-300) 7px, transparent 8px),
                    radial-gradient(circle at 100% 0, transparent 6px, var(--color-gold-300) 7px, transparent 8px),
                    radial-gradient(circle at 100% 100%, transparent 6px, var(--color-gold-300) 7px, transparent 8px),
                    radial-gradient(circle at 0 100%, transparent 6px, var(--color-gold-300) 7px, transparent 8px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px, 12px 12px, 12px 12px, 12px 12px;
  pointer-events: none;
  mask-image: radial-gradient(circle, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 80%);
}

/* Color-dodge Spotlight Glowing Aura behind Djenifer - Larger halo */
.hero__photo-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 157, 59, 0.38) 0%, transparent 70%);
  z-index: 2;
  mix-blend-mode: color-dodge;
  filter: blur(15px);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

.hero__photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85)); /* Cinematic 3D pop off the dark background */
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keep the portrait's shape fully visible (never crop head or elbows) */
  object-position: center bottom;
  /* Extra feathered, high-performance mask to blend her waistline perfectly into the dark background */
  mask-image: linear-gradient(to bottom, black 72%, rgba(0, 0, 0, 0.6) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 72%, rgba(0, 0, 0, 0.6) 85%, transparent 100%);
}

/* Nested copper dashed border - HIDDEN since we don't have the rigid container anymore */
.hero__photo-inner-border {
  display: none;
}

/* ═══════════════════════════════════════════
   7. FINANCIAL RESULTS (LIGHT GOURMET)
   ═══════════════════════════════════════════ */
.recipe-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  width: 100%;
  perspective: 1000px; /* 3D Tilt perspective context */
}

.recipe-card {
  background: rgba(29, 18, 13, 0.85); /* Premium warm dark glassmorphism */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(197, 154, 78, 0.24);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--shadow-gold-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-bounce),
              box-shadow var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default);
}

.recipe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.05) 70%,
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 5;
  transition: left 0s;
}

@media (hover: hover) {
  .recipe-card:hover::before {
    left: 150%;
    transition: left 1.2s var(--ease-default);
  }

  .recipe-card:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 
                0 0 35px rgba(197, 154, 78, 0.4), 
                inset 0 0 20px rgba(197, 154, 78, 0.25);
    border-color: var(--color-gold-300);
  }
}

.recipe-card__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  background: radial-gradient(circle, #FFF0D0 0%, var(--color-gold-500) 50%, var(--color-gold-700) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  border: 2px solid var(--color-gold-300);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), 
              inset 0 2px 4px rgba(255, 255, 255, 0.6),
              0 0 15px var(--color-gold-glow-strong);
  transition: transform var(--duration-normal) var(--ease-bounce);
  position: relative;
  overflow: hidden; /* Clip food image to circle */
  z-index: 1;
}

/* Wax seal internal dashed circle */
.recipe-card__icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1.2px dashed rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 2; /* Render on top of the food image */
}

.recipe-card:hover .recipe-card__icon-wrapper {
  transform: scale(1.1) rotate(6deg);
}

.recipe-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
  z-index: 1;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.recipe-card:hover .recipe-card__img {
  transform: scale(1.1);
}

.recipe-card__icon {
  width: 38px;
  height: 38px;
  color: var(--color-text-primary);
  stroke-width: 2.2;
}

.recipe-card__title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  color: var(--color-text-inverse); /* High contrast */
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.recipe-card__profit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  background: rgba(197, 154, 78, 0.06);
  border: 1.5px dashed rgba(197, 154, 78, 0.3);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2);
  transition: background var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default);
}

.recipe-card:hover .recipe-card__profit {
  background: rgba(197, 154, 78, 0.12);
  border-style: solid;
  border-color: var(--color-gold-500);
}

.recipe-card__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: #DDD4CD; /* Muted high contrast */
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.recipe-card__label .icon {
  color: var(--color-gold-300);
  width: 14px;
  height: 14px;
  margin: 0;
}

.recipe-card__value {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 2.125rem;
  color: var(--color-gold-300); /* Luxury gold color */
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: inline-block;
  animation: profit-glow-pulse 3s ease-in-out infinite alternate;
}

/* ═══════════════════════════════════════════
   SIMULADOR DE LUCROS
   ═══════════════════════════════════════════ */
.simulator-card {
  background: rgba(29, 18, 13, 0.96); /* Dark cacao luxury glassmorphic contrast in light section */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--color-gold-500);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), var(--shadow-gold-sm);
  position: relative;
  max-width: 680px;
  margin: var(--space-10) auto 0;
  text-align: center;
  color: var(--color-text-inverse);
  overflow: hidden;
}

.simulator-card__inner-border {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 155, 40, 0.2);
  border-radius: calc(var(--radius-xl) - 6px);
  pointer-events: none;
}

.simulator-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-gold-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.simulator-card__title .icon {
  width: 24px;
  height: 24px;
}

.simulator-card__subtitle {
  font-size: var(--text-sm);
  color: #C5B9B0;
  max-width: 480px;
  margin: 0 auto var(--space-6);
  line-height: var(--leading-normal);
}

.simulator-card__control {
  max-width: 460px;
  margin: 0 auto var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.simulator-card__label {
  font-size: var(--text-base);
  color: #EDE7E3;
  font-weight: var(--weight-medium);
}

.simulator-card__label strong {
  color: var(--color-gold-300);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-left: 4px;
}

/* Beautiful custom slider range */
.simulator-card__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  border: 1px solid rgba(212, 155, 40, 0.25);
  cursor: pointer;
}

.simulator-card__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FFE3A8 0%, var(--color-gold-500) 50%, var(--color-gold-700) 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5), 0 0 10px var(--color-gold-glow-strong);
  transition: transform var(--duration-fast) var(--ease-default);
}

.simulator-card__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.simulator-card__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FFE3A8 0%, var(--color-gold-500) 50%, var(--color-gold-700) 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5), 0 0 10px var(--color-gold-glow-strong);
  transition: transform var(--duration-fast) var(--ease-default);
  cursor: pointer;
}

.simulator-card__slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.simulator-card__ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-1);
  font-size: var(--text-xs);
  color: #8A7B70;
  font-weight: var(--weight-medium);
}

.simulator-card__results {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  background: rgba(255, 255, 255, 0.02);
  padding: var(--space-6) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: var(--space-5);
}

.simulator-card__result-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: center;
}

.simulator-card__result-label {
  font-size: var(--text-xs);
  color: #8A7B70;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: var(--weight-semibold);
}

.simulator-card__result-val {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #EDE7E3;
  font-weight: var(--weight-bold);
}

.simulator-card__result-item--highlight .simulator-card__result-label {
  color: var(--color-gold-300);
}

.simulator-card__result-item--highlight .simulator-card__result-val {
  font-size: var(--text-3xl);
  color: var(--color-gold-300);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  display: inline-block;
  animation: profit-glow-pulse 3s ease-in-out infinite alternate;
}

.simulator-card__helper {
  font-size: var(--text-xs);
  color: #8A7B70;
  line-height: var(--leading-normal);
  max-width: 580px;
  margin: 0 auto;
}

@media (min-width: 481px) {
  .simulator-card__results {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-6);
  }
}

@media (min-width: 768px) {
  .simulator-card {
    padding: var(--space-10) var(--space-8);
  }
}

/* ═══════════════════════════════════════════
   8. FEATURE GRID (O QUE VOCÊ RECEBE)
   ═══════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.feature-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(197, 154, 78, 0.22);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: border-color var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default);
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dotted rgba(197, 154, 78, 0.15);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
}

@media (hover: hover) {
  .feature-item:hover {
    border-color: var(--color-gold-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 154, 78, 0.12);
  }
}

.feature-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-sage-green);
}

.feature-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  font-weight: var(--weight-bold);
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════
   9. OBJECTION BREAKER
   ═══════════════════════════════════════════ */
.objection__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 540px;
  margin: 0 auto;
}

.objection__negative,
.objection__positive {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default);
}

.objection__negative {
  background: rgba(183, 91, 63, 0.04);
  border: 1.5px solid rgba(183, 91, 63, 0.22);
}

.objection__positive {
  background: rgba(61, 122, 90, 0.05);
  border: 1.5px solid rgba(61, 122, 90, 0.26);
}

.objection__negative:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(183, 91, 63, 0.12);
  border-color: rgba(183, 91, 63, 0.45);
}

.objection__positive:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(61, 122, 90, 0.15);
  border-color: rgba(61, 122, 90, 0.50);
}

.objection__headline {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-6);
}

.objection__headline strong {
  font-weight: var(--weight-bold);
}

.objection__negative .objection__headline strong {
  color: var(--color-terracota);
}

.objection__positive .objection__headline strong {
  color: var(--color-sage-green);
}

.objection__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 320px;
  margin: 0 auto;
}

.objection__list li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
}

.objection__list--negative li {
  color: var(--color-text-secondary);
}

.objection__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.objection__list--positive li {
  color: var(--color-text-primary);
  font-weight: var(--weight-bold);
}

.objection__divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-4) 0;
}

.objection__divider::before,
.objection__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212, 155, 40, 0.22);
}

.objection__divider span {
  color: var(--color-gold-500);
  font-size: var(--text-lg);
  text-shadow: 0 0 8px rgba(212, 155, 40, 0.3);
}

@media (min-width: 768px) {
  .objection__content {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    gap: var(--space-8);
    align-items: stretch;
    position: relative;
  }

  .objection__divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    width: auto;
  }

  .objection__divider::before,
  .objection__divider::after {
    height: 35% !important;
    width: 1.5px !important;
    background: rgba(212, 155, 40, 0.22);
    flex: none;
  }

  .objection__divider span {
    background: var(--color-bg-primary);
    padding: var(--space-2);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 155, 40, 0.22);
    box-shadow: 0 6px 16px rgba(45, 30, 21, 0.05);
    margin: var(--space-2) 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
  }
}

/* ═══════════════════════════════════════════
   10. OFFER CARD (DARK COCOA LUXURY)
   ═══════════════════════════════════════════ */
.offer-card {
  background: linear-gradient(145deg, rgba(34, 21, 14, 0.94) 0%, rgba(14, 9, 6, 0.98) 100%), 
              url('assets/junina-pattern.png');
  background-blend-mode: multiply;
  background-size: cover, 180px 180px;
  background-repeat: no-repeat, repeat;
  border: 2px solid var(--color-gold-500);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 
              0 0 45px rgba(213, 171, 85, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-inverse);
  animation: offer-glow-pulse 5s ease-in-out infinite;
}

@keyframes offer-glow-pulse {
  0%, 100% {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(213, 171, 85, 0.12);
  }
  50% {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 
                0 0 50px rgba(213, 171, 85, 0.28);
  }
}

/* Double gold border inside the offer card */
.offer-card__inner-border {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 155, 40, 0.25);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
  z-index: 2;
}

.offer-card__inner-border::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(212, 155, 40, 0.15);
  border-radius: calc(var(--radius-xl) - 11px);
  pointer-events: none;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold-500), transparent);
}

.offer-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--color-gold-300);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-6);
  padding: var(--space-1) var(--space-4);
  background: rgba(212, 155, 40, 0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 155, 40, 0.2);
}

.offer-card__badge .icon {
  width: 1.25em;
  height: 1.25em;
}

.offer-card__subtitle {
  font-size: var(--text-sm);
  color: #C5B9B0;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: var(--weight-medium);
}

.offer-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
  max-width: 320px;
  margin: 0 auto var(--space-8);
}

.offer-card__list li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: #EDE7E3;
}

.offer-card__list li .icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold-300);
}

.offer-card__pricing {
  margin-bottom: var(--space-8);
  background: rgba(255, 255, 255, 0.02);
  padding: var(--space-5) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.offer-card__price-old {
  font-size: var(--text-sm);
  color: #8A7B70;
  display: block;
  margin-bottom: var(--space-2);
}

.offer-card__price-old s {
  text-decoration: line-through;
  text-decoration-color: var(--color-terracota);
}

.offer-card__price-label {
  font-size: var(--text-xs);
  color: #C5B9B0;
  display: block;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-card__price-current {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-price);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-3);
  background: linear-gradient(
    90deg,
    var(--color-gold-500) 0%,
    #FFF0CD 25%,
    #FFE3A8 50%,
    #FFF0CD 75%,
    var(--color-gold-500) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.offer-card__price-cents {
  font-size: 55%;
  vertical-align: super;
}

.offer-card__installments {
  font-size: var(--text-sm);
  color: #C5B9B0;
  display: block;
  font-weight: var(--weight-medium);
}

.offer-card .cta-button {
  margin: 0 auto var(--space-6);
}

.offer-card__guarantee {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-6);
  max-width: 380px;
  margin: 0 auto;
}

.offer-card__guarantee .icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold-300);
}

.offer-card__guarantee p {
  font-size: var(--text-xs);
  color: #C5B9B0;
  line-height: var(--leading-normal);
}

.offer-card__guarantee strong {
  color: var(--color-gold-300);
}

/* ═══════════════════════════════════════════
   11. FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(45, 30, 21, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--duration-normal) var(--ease-default),
              background-color var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-default);
}

.faq-item:hover {
  border-color: rgba(212, 155, 40, 0.25);
  box-shadow: 0 10px 25px rgba(45, 30, 21, 0.05);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: var(--color-gold-500);
  background-color: var(--color-bg-secondary);
  box-shadow: 0 12px 30px rgba(212, 155, 40, 0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  list-style: none;
  user-select: none;
  font-family: var(--font-body);
  transition: color var(--duration-fast) var(--ease-default);
}

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

.faq-item__question::marker {
  display: none;
  content: '';
}

.faq-item:hover .faq-item__question {
  color: var(--color-gold-700);
}

.faq-item__icon {
  color: var(--color-gold-500);
  width: 18px;
  height: 18px;
  transition: transform var(--duration-normal) var(--ease-bounce);
  flex-shrink: 0;
  stroke-width: 3.5;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(90deg);
  color: var(--color-gold-700);
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-6);
  padding-left: calc(var(--space-6) + 18px + var(--space-4));
  border-top: 1px dashed rgba(212, 155, 40, 0.15);
  margin-top: -2px;
  background-color: #FFFFFF;
  animation: faq-slide-down var(--duration-normal) var(--ease-out) both;
}

.faq-item__answer p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  padding-top: var(--space-4);
}

@keyframes faq-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   12. STICKY CTA (MOBILE)
   ═══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-5) var(--space-4);
  background: linear-gradient(180deg, transparent 0%, rgba(26, 16, 11, 0.95) 30%);
  z-index: var(--z-sticky);
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-default);
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .cta-button {
  max-width: 360px;
  font-size: var(--text-xs);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
}

/* ═══════════════════════════════════════════
   13. FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--color-bg-dark-gourmet);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: var(--space-10) 0;
  padding-bottom: calc(var(--space-10) + 80px); /* Space for sticky CTA */
  text-align: center;
  color: #8A7B70;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: #8A7B70;
  margin-bottom: var(--space-4);
  line-height: var(--leading-normal);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
}

.footer__link {
  color: #8A7B70;
  transition: color var(--duration-fast) var(--ease-default);
}

.footer__link:hover {
  color: var(--color-gold-300);
}

.footer__separator {
  color: #8A7B70;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════
   14. ANIMATIONS (@keyframes)
   ═══════════════════════════════════════════ */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(212, 155, 40, 0.25); }
  50%      { box-shadow: 0 0 45px rgba(212, 155, 40, 0.55); }
}

@keyframes cta-sweep {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gold-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes profit-glow-pulse {
  0% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(213, 171, 85, 0.2);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 22px rgba(213, 171, 85, 0.65);
    transform: scale(1.03);
  }
}

@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

@keyframes smoke-drift {
  0%   { transform: translateX(-50%) translate(0, 0) scale(1); }
  50%  { transform: translateX(-50%) translate(20px, -15px) scale(1.06); }
  100% { transform: translateX(-50%) translate(0, 0) scale(1); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

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

@keyframes hero-fade-in {
  from {
    opacity: 0.01;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero staggered entrance animation */
.hero__info > * {
  animation: hero-fade-in 0.8s var(--ease-out) both;
}

.hero__info > :nth-child(1) { animation-delay: 0.1s; }
.hero__info > :nth-child(2) { animation-delay: 0.25s; }
.hero__info > :nth-child(3) { animation-delay: 0.4s; }
.hero__info > :nth-child(4) { animation-delay: 0.55s; }
.hero__info > :nth-child(5) { animation-delay: 0.7s; }

.hero__visual {
  animation: hero-fade-in 1s var(--ease-out) both;
  animation-delay: 0.4s;
}

/* ═══════════════════════════════════════════
   15. SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="100"] { transition-delay: 100ms; }
[data-animate-delay="200"] { transition-delay: 200ms; }
[data-animate-delay="300"] { transition-delay: 300ms; }
[data-animate-delay="400"] { transition-delay: 400ms; }
[data-animate-delay="500"] { transition-delay: 500ms; }
[data-animate-delay="600"] { transition-delay: 600ms; }
[data-animate-delay="700"] { transition-delay: 700ms; }
[data-animate-delay="800"] { transition-delay: 800ms; }
[data-animate-delay="900"] { transition-delay: 900ms; }

/* ═══════════════════════════════════════════
   16. RESPONSIVE — min-width: 481px (MOBILE HORIZONTAL / TABLET PEQUENO)
   ═══════════════════════════════════════════ */
@media (min-width: 481px) {
  .hero__proof {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3) var(--space-6);
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .hero__subheadline {
    font-size: var(--text-base);
  }
}

/* ═══════════════════════════════════════════
   17. RESPONSIVE — min-width: 768px (TABLET)
   ═══════════════════════════════════════════ */
@media (min-width: 768px) {
  :root {
    --section-padding-y: var(--space-28); /* 112px */
    --section-gap: var(--space-16); /* 64px */
  }

  .section-headline {
    font-size: var(--text-3xl);
  }

  .hero__headline {
    font-size: 2.6rem; /* Scaled up from var(--text-3xl) to 2.6rem (41.6px) */
  }

  .hero__logo {
    max-width: 400px; /* Enlarged logo on tablet */
  }

  .hero__photo-wrapper {
    width: 360px; /* Adjusted photo on tablet to free up margins */
    height: 460px; /* Adjusted photo on tablet */
    border-radius: 0; /* Transparent layout */
  }

  .hero__logo-overlap {
    width: 410px; /* Enlarged logo overlap */
    bottom: 20px; /* Shifted down to bottom waist/pants area to clear laptop and hands completely */
  }

  .hero__notification {
    min-width: 235px;
    padding: 10px 14px;
  }

  .hero__notification-icon {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .hero__notification-title {
    font-size: 11px;
  }

  .hero__notification-value {
    font-size: 10px;
  }

  .hero__notification--top-left {
    left: -40px;
    top: 65px;
  }

  .hero__notification--top-right {
    right: -40px;
    top: 25px;
  }

  .hero__notification--mid-right {
    right: -40px;
    top: 115px;
  }

  .hero__notification--bottom-right {
    right: -40px;
    top: 205px;
  }



  .recipe-cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-6);
  }

  .cta-button {
    width: auto;
    min-width: 320px;
  }

  .sticky-cta .cta-button {
    min-width: auto;
  }

  .objection__headline {
    font-size: var(--text-2xl);
  }

  .offer-card {
    padding: var(--space-12) var(--space-10);
  }

  .offer-card__price-current {
    font-size: var(--text-4xl);
  }
}

/* ═══════════════════════════════════════════
   18. RESPONSIVE — min-width: 1024px (DESKTOP GRID OVERHAUL)
   ═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root {
    --section-padding-y: var(--space-32); /* 128px */
    --section-gap: var(--space-20); /* 80px */
    --container-padding: 0;
    --text-price: 4.8rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden; /* Restore cinematic lock viewport on desktop */
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: center;
    text-align: left;
    height: 100%;
    margin-block: auto;
  }

  /* Frosted Gourmet Card for High Contrast & Ultra Luxury */
  .hero__info {
    align-items: flex-start;
    text-align: left;
    background: rgba(26, 16, 11, 0.72);
    padding: var(--space-8) var(--space-10);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 155, 40, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 580px;
  }

  .hero__headline {
    font-size: 3.4rem; /* Scaled up from var(--text-4xl) to 3.4rem (54.4px) for massive impact */
  }

  .hero__logo {
    display: none !important;
  }


  .hero__subheadline {
    font-size: var(--text-base);
  }

  .hero__proof {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3) var(--space-5);
  }

  .hero__actions {
    align-items: flex-start;
    width: auto;
  }

  .hero__visual {
    justify-content: flex-end;
    margin-top: 0;
    padding-right: var(--space-4);
  }

  .hero__photo-wrapper {
    width: 460px; /* Adjusted photo on desktop to free up margins */
    height: 580px; /* Adjusted photo on desktop */
    border-radius: 0; /* Transparent layout */
  }

  /* Show overlap and deep gradient overlay on desktop */
  .hero__logo-overlap {
    display: block;
    position: absolute;
    bottom: 25px; /* Shifted down to bottom waist/pants area to clear laptop and hands completely */
    left: 50%;
    transform: translateX(-50%);
    width: 500px; /* Enlarged logo on desktop */
    z-index: 4;
    pointer-events: none;
  }

  .hero__logo-overlap img {
    width: 100%;
    height: auto;
    /* Removed float animation on desktop for stability and overlap avoidance */
    transition: transform var(--duration-normal) var(--ease-bounce), filter var(--duration-normal) var(--ease-default);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.98)) drop-shadow(0 12px 35px rgba(0, 0, 0, 0.95));
  }

  .hero__photo-wrapper:hover .hero__logo-overlap img {
    transform: scale(1.05) rotate(0.5deg);
    filter: drop-shadow(0 15px 35px rgba(213, 171, 85, 0.35)) drop-shadow(0 12px 35px rgba(0, 0, 0, 0.98));
  }

  .hero__photo-shadow-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3.5;
    pointer-events: none;
  }

  .hero__notification {
    min-width: 260px;
    padding: 12px 16px;
  }

  .hero__notification-icon {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .hero__notification-title {
    font-size: 12px;
  }

  .hero__notification-value {
    font-size: 11px;
  }

  .hero__notification--top-left {
    left: -60px;
    top: 80px;
  }

  .hero__notification--top-right {
    right: -60px;
    top: 35px;
  }

  .hero__notification--mid-right {
    right: -60px;
    top: 155px;
  }

  .hero__notification--bottom-right {
    right: -60px;
    top: 275px;
  }


  .hero .bandeirinhas--top {
    position: absolute;
    top: 0;
    bottom: auto;
  }

  .section-headline {
    font-size: var(--text-4xl);
    letter-spacing: -0.02em;
  }

  .sticky-cta {
    display: none !important;
  }

  .footer {
    padding-bottom: var(--space-10);
  }

  .offer-card__price-current {
    font-size: var(--text-price);
  }
}

/* ═══════════════════════════════════════════
   19. ACCESSIBILITY
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__info > *,
  .hero__visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-gold-300);
  outline-offset: 4px;
}
