/* ═══════════════════════════════════════════════════════
   RURAL ELITE — Premium Mobile-First CSS
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables / Design Tokens ── */
:root {
  /* Colors */
  --bg-dark: #030d01;
  --bg-dark-2: #071504;
  --bg-dark-3: #0c1e07;
  --bg-medium: #0a1f05;
  --bg-light: #f5f7f2;
  --bg-light-2: #eef2ea;

  --green-deep: #0d2e0f;
  --green-bright: #4caf50;
  --green-accent: #66bb6a;
  --green-glow: rgba(76, 175, 80, 0.3);

  --gold: #f5a623;
  --gold-light: #FFD54F;
  --gold-dark: #d98c00;
  --gold-glow: rgba(245, 166, 35, 0.35);

  --text-white: #ffffff;
  --text-white-80: rgba(255, 255, 255, 0.85);
  --text-white-60: rgba(255, 255, 255, 0.6);
  --text-white-40: rgba(255, 255, 255, 0.4);
  --text-dark: #1a2e12;
  --text-dark-60: rgba(26, 46, 18, 0.6);

  /* Spacing */
  --section-py: clamp(60px, 8vw, 100px);
  --container-px: clamp(16px, 4vw, 32px);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.35s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 50px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white-80);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── Utility Classes ── */
.gold { color: var(--gold); font-style: normal; }
.green { color: var(--green-bright); font-style: normal; }

/* ── Protected Image ── */
.protected-image-wrapper { position: relative; overflow: hidden; }
.protected-image-overlay,
.img-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: all;
}
.protected-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════════════════
   COUNTDOWN BAR
   ═══════════════════════════════════════════════════════ */
.countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1a3a0a 0%, #0d2e0f 50%, #1a3a0a 100%);
  border-bottom: 1px solid rgba(76, 175, 80, 0.2);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cd-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.cd-items {
  display: flex;
  align-items: center;
  padding: 0 40px;
  flex-shrink: 0;
}

.cd-msg {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-white-80);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.cd-hours, .cd-minutes, .cd-seconds {
  color: var(--gold);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 0 120px;
  background: linear-gradient(170deg, #030d01 0%, #071504 40%, #0a1f05 70%, #051002 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 120vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(245, 166, 35, 0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
}

.hero-grid-centered {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-headline {
  font-size: clamp(1.7rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: normal;
}

.hero-headline em.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Showcase / Mockup ── */
.hero-showcase {
  gap: 0 !important;
  width: 100%;
}

.hmv2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hmv2-img-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hmv2-mockup-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  aspect-ratio: 1110 / 1230;
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.55));
  border-radius: var(--radius-lg);
  animation: mockupFloat 4s ease-in-out infinite;
}

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

.hero-grid-centered .hero-showcase {
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-white-60);
  max-width: 520px;
  line-height: 1.65;
}

.hero-sub strong {
  color: var(--green-bright);
  font-weight: 700;
}

.hero-grid-centered .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero CTA ── */
.hero-cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFE082 0%, #FFB74D 100%);
  transform: translateY(-3px);
}

.btn-gold:active {
  transform: scale(0.97);
}

.hero-cta-wrap .btn-gold {
  padding: 20px 40px;
}

.hero-cta-wrap .btn-gold.btn-pulse,
.btn-gold.btn-pulse {
  animation: hero-btn-pulse 2.2s ease-in-out infinite;
}

@keyframes hero-btn-pulse {
  0%, 100% { box-shadow: 0 10px 42px rgba(255, 167, 38, 0.55), 0 4px 16px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 16px 60px rgba(255, 167, 38, 0.85), 0 0 0 10px rgba(255, 167, 38, 0.12); }
}

.hero-grid-centered .btn-gold {
  margin-left: auto;
  margin-right: auto;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-white-40);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-white-40);
  border-bottom: 2px solid var(--text-white-40);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════════════════ */
.section-dark {
  background: linear-gradient(170deg, var(--bg-dark) 0%, var(--bg-dark-2) 50%, var(--bg-medium) 100%);
  padding: var(--section-py) 0;
  position: relative;
}

.section-light {
  background: linear-gradient(170deg, #f8faf5 0%, #f0f4eb 50%, #e8ede2 100%);
  padding: var(--section-py) 0;
  position: relative;
}

.section-medium {
  background: linear-gradient(170deg, var(--bg-dark-2) 0%, var(--bg-dark-3) 100%);
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--green-bright);
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag-dark {
  color: var(--green-deep);
  background: rgba(13, 46, 15, 0.08);
  border-color: rgba(13, 46, 15, 0.15);
}

.section-title {
  font-size: clamp(1.5rem, 4.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.3px;
  max-width: 700px;
  margin: 0 auto 12px;
}

.section-title em {
  font-style: normal;
}

.dark-title {
  color: var(--text-dark);
}

.section-desc {
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: var(--text-white-60);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-light .section-desc {
  color: var(--text-dark-60);
}

/* ═══════════════════════════════════════════════════════
   CATEGORIES GRID — "O que você vai receber"
   ═══════════════════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.cat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.cat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(76, 175, 80, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.cat-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cat-desc {
  font-size: 0.88rem;
  color: var(--text-white-60);
  line-height: 1.55;
}

.cat-desc strong {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   GALLERY / MARQUEE
   ═══════════════════════════════════════════════════════ */
.gallery-section-wrap {
  padding-bottom: var(--section-py);
}

.gallery-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.gal-track {
  display: flex;
  animation: galScroll 40s linear infinite;
  width: max-content;
}

.gal-row {
  display: flex;
  gap: 24px;
  padding: 0 8px;
  flex-shrink: 0;
}

.gal-item {
  flex-shrink: 0;
  width: clamp(280px, 45vw, 480px);
}

.gal-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-med);
}

.gal-img-wrap:hover {
  transform: scale(1.03);
}

.gal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.gal-img-wrap:hover .gal-bg {
  transform: scale(1.08);
}

.gal-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gal-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  z-index: 3;
}

.gal-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

@keyframes galScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ═══════════════════════════════════════════════════════ */
.testi-carousel {
  max-width: 380px;
  margin: 0 auto;
}

.testi-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testi-viewport::-webkit-scrollbar {
  display: none;
}

.testi-track {
  display: flex;
}

.testi-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 0 4px;
}

.testi-shot {
  display: block;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 340/604;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13, 46, 15, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.testi-dot.is-active {
  background: var(--green-bright);
  transform: scale(1.35);
  box-shadow: 0 0 12px var(--green-glow);
}

/* ═══════════════════════════════════════════════════════
   BONUS SECTION
   ═══════════════════════════════════════════════════════ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-med);
  overflow: hidden;
}

.bonus-card:hover {
  border-color: var(--gold-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(245, 166, 35, 0.15);
}

.bonus-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.bonus-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.bonus-old-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-white-40);
  text-decoration: line-through;
  background: rgba(229, 57, 53, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.bonus-capa-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.bonus-capa-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.bonus-card:hover .bonus-capa-img {
  transform: scale(1.04);
}

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--text-white-60);
  line-height: 1.55;
}

.bonus-card p strong {
  color: var(--gold);
}

/* ── Bonus Total ── */
.bonus-total {
  margin-top: 12px;
}

.bonus-total-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 24px);
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bt-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bt-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-white-40);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.bt-value {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 900;
  color: var(--text-white);
  text-decoration: line-through;
  text-decoration-color: rgba(229, 57, 53, 0.6);
}

.bt-proj {
  text-decoration: none;
  color: var(--green-bright);
}

.bt-sep {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white-40);
}

.bt-price {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION (pv2)
   ═══════════════════════════════════════════════════════ */
.pv2-section {
  background: linear-gradient(165deg, #030d01 0%, #071504 45%, #0a1f05 100%);
  padding: 24px 0 16px;
  position: relative;
  overflow: hidden;
}

.pv2-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 60%, rgba(74, 124, 47, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 82% 20%, rgba(245, 166, 35, 0.07) 0%, transparent 50%);
}

.pv2-section .section-header {
  position: relative;
  z-index: 1;
}

.pv2-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

/* ── Base Card ── */
.pv2-card {
  background: rgba(12, 30, 7, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid rgba(74, 124, 47, 0.3);
  flex: 0 0 auto;
  width: 330px;
  position: relative;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pv2-basic:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(74, 124, 47, 0.55);
}

/* ── Premium Card ── */
.pv2-premium {
  width: 390px;
  background: linear-gradient(150deg, rgba(20, 45, 8, 0.9) 0%, rgba(14, 34, 8, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--gold);
  box-shadow: 0 0 42px rgba(245, 166, 35, 0.25), 0 24px 64px rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
  z-index: 2;
}

.pv2-premium:hover {
  transform: scale(1.07) translateY(-5px);
  box-shadow: 0 0 62px rgba(245, 166, 35, 0.38), 0 32px 80px rgba(0, 0, 0, 0.65);
}

.pv2-premium::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249, 168, 37, 0.16) 0%, transparent 55%, rgba(249, 168, 37, 0.07) 100%);
  pointer-events: none;
}

/* ── Badge ── */
.pv2-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #061002;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.5);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(245, 166, 35, 0.5); }
  50% { box-shadow: 0 4px 28px rgba(245, 166, 35, 0.8); }
}

/* ── Card Header ── */
.pv2-head {
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pv2-plan-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--text-white-40);
  margin-bottom: 14px;
}

.pv2-premium .pv2-plan-name {
  color: var(--gold);
  opacity: 1;
}

.pv2-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.pv2-cur { font-size: 1.3rem; font-weight: 800; color: #fff; margin-top: 10px; }
.pv2-amt { font-size: 4rem; font-weight: 900; color: #fff; }
.pv2-cts { font-size: 1.6rem; font-weight: 800; color: #fff; margin-top: 12px; }

.pv2-premium .pv2-cur,
.pv2-premium .pv2-amt,
.pv2-premium .pv2-cts {
  color: var(--gold);
}

.pv2-once {
  display: block;
  font-size: 0.72rem;
  color: var(--text-white-40);
  margin-top: 5px;
}

.pv2-from {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  margin-bottom: 4px;
  display: block;
}

/* ── Feature List ── */
.pv2-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pv2-features li {
  font-size: 0.84rem;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}

.pv2-ic {
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pv2-yes .pv2-ic { color: #4caf50; }
.pv2-yes span:last-child { color: var(--text-white-80); }
.pv2-no .pv2-ic { color: #e53935; }
.pv2-no span:last-child {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.12);
}

.pv2-div {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 12px 0 14px;
}

/* ── Buttons ── */
.pv2-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease-spring);
}

.pv2-btn-basic {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
}

.pv2-btn-basic:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  transform: translateY(-2px);
}

.pv2-btn-premium {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #061002;
  font-size: 1rem;
  padding: 19px;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.44);
  position: relative;
  overflow: hidden;
}

.pv2-btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.pv2-btn-premium:hover {
  background: linear-gradient(135deg, #ffbe3d 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.62);
}

.pv2-btn-premium:active { transform: scale(0.97); }

/* ── Secure Row ── */
.pv2-secure { margin-top: 14px; text-align: center; }

.pv2-secure-lock {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-white-60);
  margin-bottom: 8px;
}

.pv2-pmethods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pv2-pm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-white-40);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════════════════
   GUARANTEE SECTION
   ═══════════════════════════════════════════════════════ */
#garantia {
  padding-top: 20px;
}

.guarantee-wrap {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.guarantee-badge-wrap {
  flex-shrink: 0;
}

.guarantee-badge-img {
  width: clamp(100px, 18vw, 160px);
  height: clamp(100px, 18vw, 160px);
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: guaranteePulse 3s ease-in-out infinite;
}

@keyframes guaranteePulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.2)); }
  50% { filter: drop-shadow(0 0 24px rgba(245, 166, 35, 0.4)); }
}

.guarantee-content h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.guarantee-content h2 em {
  font-style: normal;
}

.guarantee-content p {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: var(--text-white-60);
  line-height: 1.65;
}

.guarantee-content p strong {
  color: var(--text-white-80);
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(13, 46, 15, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-med);
}

.faq-item:hover {
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.faq-q:hover {
  color: var(--green-deep);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-bright);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
  width: 24px;
  text-align: center;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.35s var(--ease-out);
  padding: 0 22px;
}

.faq-item.is-open .faq-a {
  max-height: 600px;
  padding: 0 22px 20px;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-dark-60);
  line-height: 1.65;
  margin-bottom: 10px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

.faq-a ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.faq-a ul li {
  font-size: 0.88rem;
  color: var(--text-dark-60);
  line-height: 1.6;
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;
}

.faq-a ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(170deg, #030d01 0%, #071504 40%, #0a1f05 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, rgba(76, 175, 80, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
  margin: 16px 0;
}

.final-cta-content h2 em {
  font-style: normal;
}

.final-cta-content > p {
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: var(--text-white-60);
  line-height: 1.65;
  margin-bottom: 28px;
}

.final-cta-content .btn-gold {
  margin-bottom: 16px;
}

.cta-trust {
  font-size: 0.78rem;
  color: var(--text-white-40);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: #020a01;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 0 28px;
}

.footer-bottom {
  text-align: center;
  margin-bottom: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.logo-icon {
  font-size: 1.4rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-white-40);
  margin-bottom: 4px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  background: linear-gradient(160deg, #0e2208, #0c1e07);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.modal.is-visible .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white-60);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
}

.modal-header {
  margin-bottom: 16px;
}

.modal-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.modal-title {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 12px;
}

.modal-title em {
  font-style: normal;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-white-60);
  line-height: 1.55;
  margin-bottom: 16px;
}

.modal-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e53935;
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin-bottom: 24px;
  animation: modalCountdownPulse 1.5s ease-in-out infinite;
}

@keyframes modalCountdownPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(229, 57, 53, 0); }
}

.modal-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-modal-premium {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #061002;
  font-size: 1rem;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  line-height: 1.35;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.4);
}

.btn-modal-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.55);
}

.btn-modal-basic {
  font-size: 0.78rem;
  color: var(--text-white-40);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 10px;
  transition: color var(--transition-fast);
}

.btn-modal-basic:hover {
  color: var(--text-white-60);
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Stagger children */
.categories-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.categories-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.categories-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.categories-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.categories-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.bonus-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.bonus-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.bonus-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.faq-list .reveal:nth-child(2) { transition-delay: 0.05s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.1s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.15s; }
.faq-list .reveal:nth-child(5) { transition-delay: 0.2s; }
.faq-list .reveal:nth-child(6) { transition-delay: 0.25s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST ADJUSTMENTS
   ═══════════════════════════════════════════════════════ */

/* Extra-small (< 380px) */
@media (max-width: 379px) {
  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-cta-wrap .btn-gold {
    padding: 16px 24px;
    font-size: 0.88rem;
  }

  .pv2-amt { font-size: 2.8rem; }

  .bonus-total-inner {
    flex-direction: column;
    gap: 10px;
  }

  .bt-sep { display: none; }
}

/* Small (380px - 480px) */
@media (max-width: 480px) {
  .countdown-bar {
    height: 36px;
  }

  .cd-msg {
    font-size: 0.68rem;
  }

  .hero {
    padding: 56px 0 32px;
  }

  .scroll-indicator { display: none; }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pv2-card, .pv2-premium {
    padding: 28px 20px;
  }

  .pv2-amt { font-size: 3.2rem; }
  .pv2-section { padding: 16px 0 10px; }

  .guarantee-wrap {
    flex-direction: column;
    text-align: center;
  }

  .modal-box {
    padding: 24px 18px;
  }
}

/* Medium (481px - 768px) */
@media (max-width: 768px) {
  .testi-carousel {
    max-width: 100%;
    padding: 0 8px;
  }

  .gal-item {
    width: 260px;
  }
}

/* Tablet (max 880px) */
@media (max-width: 880px) {
  .pv2-grid {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .pv2-card, .pv2-premium {
    width: 100%;
    max-width: 440px;
    transform: none !important;
  }

  .pv2-premium {
    order: -1;
    box-shadow: 0 0 32px rgba(245, 166, 35, 0.22), 0 16px 48px rgba(0, 0, 0, 0.55);
  }

  .pv2-premium:hover {
    transform: translateY(-4px) !important;
  }
}

/* Desktop enhancements (> 768px) */
@media (min-width: 769px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero {
    padding: 80px 0 120px;
  }
}

/* Large desktop (> 1024px) */
@media (min-width: 1025px) {
  .bonus-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════
   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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection styling */
::selection {
  background: rgba(76, 175, 80, 0.3);
  color: var(--text-white);
}

/* ═══════════════════════════════════════════════════════
   ANTI-CLONE PROTECTION
   ═══════════════════════════════════════════════════════ */
img, .protected-image, .protected-image-overlay, .gal-img-wrap, .bonus-capa-wrap, .testi-shot {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
