/* ===== CSS RESET & ROOT VARIABLES ===== */
:root {
  --ink: #fff7ea;
  --muted: #f1d6a8;
  --bg-1: #0b0905;
  --bg-2: #12100b;
  --bg-3: #1a140a;
  --gold: #ffc34d;
  --amber: #ffb02e;
  --orange: #ff8a1e;
  --rose: #ff5a3c;
  --lime: #7ef0b7;
  --card: #14100a;
  --card-2: #181208;
  --border: rgba(255, 220, 170, 0.16);
  --radius: 22px;
  --rsm: 16px;
  --maxw: 1160px;
  --pad: clamp(16px, 3.2vw, 24px);
  --sec-pad: clamp(56px, 9vw, 92px);
  --shadow-lg: 0 14px 36px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.36);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--ink);
  font-family: system-ui, -apple-system, Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--gold);
  color: var(--bg-1);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  z-index: 1000;
  transition: var(--transition);
}

.skip-link:focus {
  top: 6px;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-1);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== GLOBAL STYLES ===== */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: var(--sec-pad) 0;
}

.panel {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 4vw, 32px);
  position: relative;
}

/* ===== ANIMATED BACKGROUND ===== */
#fx-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
}

.beams,
.beams::before,
.beams::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: conic-gradient(from 200deg at 15% 0%, rgba(255, 179, 71, 0.28), transparent 60%),
    conic-gradient(from 160deg at 85% 0%, rgba(255, 140, 40, 0.22), transparent 60%);
  mix-blend-mode: screen;
  filter: blur(18px);
  animation: slant 18s ease-in-out infinite;
  will-change: transform;
}

.beams::before {
  background: conic-gradient(from 210deg at 20% 10%, rgba(255, 206, 123, 0.26), transparent 65%),
    conic-gradient(from 150deg at 80% 5%, rgba(255, 160, 64, 0.20), transparent 65%);
  animation-duration: 26s;
  opacity: 0.9;
}

.beams::after {
  background: conic-gradient(from 230deg at 50% -10%, rgba(255, 110, 44, 0.18), transparent 60%);
  animation-duration: 34s;
  opacity: 0.8;
}

@keyframes slant {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -2%, 0) scale(1.02); }
}

.spots {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.spot {
  position: absolute;
  width: 38vw;
  height: 70vh;
  left: 10%;
  top: -10%;
  background: radial-gradient(40% 60% at 50% 0%, rgba(255, 232, 180, 0.25), transparent 70%),
    linear-gradient(180deg, rgba(255, 181, 70, 0.55), transparent 60%);
  filter: blur(18px);
  opacity: 0.34;
  transform: skewX(-10deg) rotate(6deg);
  mix-blend-mode: screen;
  animation: cone1 12s ease-in-out infinite;
  clip-path: polygon(50% 0%, 65% 20%, 80% 100%, 20% 100%, 35% 20%);
  will-change: transform;
}

.spot.s2 {
  left: auto;
  right: 10%;
  transform: skewX(10deg) rotate(-6deg);
  background: radial-gradient(40% 60% at 50% 0%, rgba(255, 225, 160, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(255, 150, 60, 0.50), transparent 60%);
  animation: cone2 14s ease-in-out infinite;
}

@keyframes cone1 {
  0%, 100% { transform: skewX(-10deg) rotate(6deg) translateY(0); }
  50% { transform: skewX(-8deg) rotate(4deg) translateY(2%); }
}

@keyframes cone2 {
  0%, 100% { transform: skewX(10deg) rotate(-6deg) translateY(0); }
  50% { transform: skewX(8deg) rotate(-4deg) translateY(1%); }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 70%;
  filter: brightness(0.62) contrast(1.1) saturate(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 6, 0.08) 0%, rgba(12, 10, 6, 0.55) 58%, rgba(12, 10, 6, 0.94) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px var(--pad) 98px;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kicker {
  font-size: clamp(11px, 2vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffe5b3;
  font-weight: 800;
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 12px;
}

h1 {
  margin: 12px 0 10px;
  font-size: clamp(32px, 6.5vw, 72px);
  line-height: 1.06;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 900;
}

.subtitle {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: 1.6;
}

/* ===== CTA BUTTONS ===== */
.cta {
  margin-top: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--gold), var(--amber));
  color: #3a2400;
  font-weight: 900;
  border: 1px solid rgba(255, 230, 180, 0.35);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(255, 176, 40, 0.35),
    0 0 0 6px rgba(255, 200, 120, 0.12),
    inset 0 1px 0 rgba(255, 250, 220, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
  text-align: center;
  min-height: 56px;
  font-size: clamp(14px, 2.2vw, 16px);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 40%, transparent 60%);
  transform: translateX(-100%);
  animation: shine 4.2s linear infinite;
  pointer-events: none;
}

.cta:hover,
.cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(255, 180, 60, 0.45),
    0 0 0 8px rgba(255, 210, 150, 0.16);
}

.cta:active {
  transform: translateY(0);
}

.main-cta {
  font-size: clamp(16px, 2.5vw, 18px);
  padding: 20px 32px;
  margin-top: 32px;
}

@keyframes shine {
  to { transform: translateX(100%); }
}

/* ===== DIVIDERS ===== */
.cut {
  position: relative;
  height: 64px;
}

.cut::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 215, 160, 0.22), transparent);
  filter: blur(0.4px);
}

/* ===== TYPOGRAPHY ===== */
.section h2 {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 900;
  line-height: 1.2;
}

.lead {
  text-align: center;
  color: var(--muted);
  margin: 12px auto 32px;
  font-size: clamp(15px, 2.4vw, 18px);
  max-width: 600px;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
  line-height: 1.7;
}

.achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.achievement {
  text-align: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 195, 77, 0.08), rgba(255, 138, 30, 0.08));
}

.achievement .number {
  display: block;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.achievement .label {
  font-size: 14px;
  color: var(--muted);
}

.photo img {
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* ===== COMPARISON SECTION ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 40px;
}

.col {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #130e08, #1b140a);
  transition: var(--transition);
}

.col.winner {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 195, 77, 0.1), rgba(255, 138, 30, 0.1));
  transform: scale(1.02);
}

.col h3 {
  margin-bottom: 16px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.col ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.col li {
  margin: 12px 0;
  position: relative;
  padding-left: 8px;
}

.col li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.winner li::before {
  background: var(--gold);
}

.divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}

.divider img {
  width: min(220px, 40vw);
  aspect-ratio: 1/1.05;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(255, 170, 80, 0.35));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.choice {
  font-weight: 900;
  text-align: center;
  color: #ffd28a;
  font-size: 18px;
  padding: 8px 16px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  background: linear-gradient(45deg, rgba(255, 195, 77, 0.2), rgba(255, 138, 30, 0.2));
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 195, 77, 0.3);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.card h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ===== MODULES, BONUSES, TESTIMONIALS ===== */
.modules,
.bonuses,
.proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.modules .m,
.bonuses .b,
.proof .p {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #151008, #1d150a);
  transition: var(--transition);
}

.modules .m:hover,
.bonuses .b:hover,
.proof .p:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 195, 77, 0.3);
}

.modules .m h4,
.bonuses .b strong {
  margin-bottom: 8px;
  display: block;
  color: var(--gold);
  font-size: 16px;
}

.modules .m small {
  display: block;
  margin-top: 12px;
  opacity: 0.8;
  color: var(--muted);
  font-size: 13px;
}

.bonuses .b strong {
  font-size: 18px;
}

/* YouTube Comment Styling */
.youtube-comment {
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #181208, #1d150a);
  border: 1px solid var(--border);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.user-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.user-info strong {
  color: var(--gold);
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.user-info small {
  color: var(--muted);
  opacity: 0.8;
  font-size: 12px;
}

.youtube-comment p {
  color: var(--ink);
  line-height: 1.5;
  margin: 12px 0;
  font-style: italic;
}



/* ===== VIDEO & PRICING ===== */
.mini .frame {
  margin: 0 auto 24px;
  max-width: 820px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  background: #1a1208;
  aspect-ratio: 16/9;
}

.mini .frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.price-section {
  text-align: center;
  margin-top: 32px;
}

.price-wrap {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.strike {
  opacity: 0.6;
  text-decoration: line-through;
  font-size: clamp(20px, 3.2vw, 28px);
  color: var(--muted);
}

.price {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 900;
  background: linear-gradient(180deg, #fff5e6, #ffe0a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 28px rgba(255, 190, 120, 0.25);
  line-height: 1;
}

/* acrescentado corretamente */
.price .cents {
  font-size: 0.4em;       /* deixa o ,90 menor */
  vertical-align: super;  /* sobe o ,90 */
  margin-left: 2px;       /* dá espaço depois do 99 */
}

.guarantee {
  margin-top: 24px;
}

.guarantee img {
  display: block;
  margin: 16px auto 8px;
  max-width: 80px;
  height: auto;
}

/* ===== FAQ ===== */
.faq {
  max-width: 950px;
  margin: 40px auto 0;
}

.faq details {
  border: 1px solid var(--border);
  background: #1a140a;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 12px 0;
  transition: var(--transition);
}

.faq details:hover {
  border-color: rgba(255, 195, 77, 0.3);
}

.faq details[open] {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 195, 77, 0.05), rgba(255, 138, 30, 0.05));
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  padding: 4px 0;
  position: relative;
  transition: var(--transition);
}

.faq summary:hover {
  color: var(--gold);
}

.faq summary::marker {
  color: var(--gold);
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 8px;
}

/* ===== LIVEFEED NOTIFICATIONS ===== */
.livefeed {
  position: fixed;
  left: clamp(8px, 2vw, 18px);
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: min(88vw, 320px);
}

.toast {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(26, 20, 10, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 0.5s var(--bounce) forwards, slideOut 0.5s ease-in 4.5s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.toast .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 10%, #ffd1a1 60%, transparent 70%);
  box-shadow: 0 0 14px var(--orange);
  animation: pulse 2s infinite;
}

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

.toast .txt {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.toast .tag {
  font-size: 11px;
  opacity: 0.8;
  color: #ffdcae;
}

.toast .demo {
  font-size: 10px;
  opacity: 0.75;
  color: #ffe6bf;
  border: 1px solid rgba(255, 230, 180, 0.35);
  border-radius: 12px;
  padding: 4px 8px;
  background: rgba(255, 195, 77, 0.1);
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-float {
  position: fixed;
  bottom: calc(22px + env(safe-area-inset-bottom));
  right: clamp(12px, 2vw, 22px);
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #25d366, #128c7e);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s var(--bounce), box-shadow 0.2s ease;
  touch-action: manipulation;
  animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.4);
  animation-play-state: paused;
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(1);
}

.whatsapp-float svg {
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  width: 28px;
  height: 28px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 56px var(--pad) 32px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 220, 170, 0.16);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  margin-top: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  color: var(--muted);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(255, 195, 77, 0.2);
}

.social-links a[href*="instagram"]:hover {
  color: #e4405f;
  border-color: #e4405f;
  box-shadow: 0 8px 20px rgba(228, 64, 95, 0.2);
}

.social-links a[href*="youtube"]:hover {
  color: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.social-links a[href*="whatsapp"]:hover {
  color: #25d366;
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.footer-content p {
  margin-bottom: 8px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .photo {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .modules,
  .bonuses,
  .proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .compare {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .divider {
    order: 0;
    padding: 20px 0;
  }
  
  .col.winner {
    transform: none;
  }
  
  .achievements {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 720px) {
  :root {
    --sec-pad: clamp(40px, 8vw, 64px);
    --pad: 16px;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .modules,
  .bonuses,
  .proof {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 88vh;
  }
  
  .hero-content {
    padding: 84px var(--pad) 64px;
  }
  
  .cta {
    width: 100%;
    max-width: 400px;
  }
  
  .main-cta {
    max-width: 500px;
  }
  
  .panel {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
    padding: 20px;
  }
  
  .livefeed {
    max-width: min(92vw, 360px);
  }
  
  .achievements {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cut {
    height: 44px;
  }
  
  .col {
    padding: 20px;
  }
  
  .card {
    padding: 18px;
  }
  
  .toast .txt {
    font-size: 13px;
  }
  
  .whatsapp-float {
    width: 58px;
    height: 58px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  
  .livefeed {
    left: 12px;
    bottom: calc(96px + env(safe-area-inset-bottom));
    max-width: calc(100vw - 88px);
  }
  
  .hero-content {
    padding: 60px var(--pad) 50px;
  }
  
  .price-wrap {
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .toast {
    padding: 10px 12px;
    gap: 8px;
  }
  
  .cta,
  .main-cta {
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .modules .m,
  .bonuses .b,
  .proof .p {
    padding: 16px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .beams,
  .beams::before,
  .beams::after,
  .spot {
    animation: none;
  }
  
  .cta::after {
    animation: none;
  }
  
  .whatsapp-float {
    animation: none;
  }
  
  .hero-media img {
    transition: none;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(255, 255, 255, 0.4);
    --muted: #ffffff;
  }
  
  .beams,
  .beams::before,
  .beams::after,
  .spots {
    opacity: 0.3;
  }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: light) {
  /* Fallback for systems that somehow default to light mode */
  /* Keep dark theme as this is the intended design */
}

/* ===== PRINT STYLES ===== */
@media print {
  .beams,
  .spots,
  .whatsapp-float,
  .livefeed,
  #fx-canvas {
    display: none !important;
  }
  
  .hero-media {
    position: static;
    clip-path: none;
  }
  
  .hero {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  .cta {
    background: transparent !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}
