/* ==========================================================================
   VENDEAUTOMATICO.COM — LANDING PAGE DESIGN SYSTEM
   Theme: Dark Cyber AI / VIP Neon Green & Cyan
   ========================================================================== */

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

:root {
  /* Color Tokens */
  --bg-dark: #050811;
  --bg-card: rgba(13, 20, 36, 0.75);
  --bg-card-hover: rgba(20, 32, 58, 0.85);
  --bg-glass: rgba(10, 16, 30, 0.65);
  
  --neon-green: #39FF14;
  --neon-green-glow: rgba(57, 255, 20, 0.35);
  --green-gradient: linear-gradient(135deg, #39FF14 0%, #22c55e 100%);
  --green-dark: #15803d;

  --neon-cyan: #00F0FF;
  --neon-cyan-glow: rgba(0, 240, 255, 0.35);
  --cyan-blue-gradient: linear-gradient(135deg, #00F0FF 0%, #3b82f6 100%);

  --neon-purple: #7000FF;
  --neon-purple-glow: rgba(112, 0, 255, 0.4);
  --yape-purple: #742284;
  --yape-teal: #00d2b5;

  --neon-gold: #FFD700;
  --gold-gradient: linear-gradient(135deg, #FFE259 0%, #FFA751 100%);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-card: rgba(57, 255, 20, 0.2);
  --border-cyan: rgba(0, 240, 255, 0.25);
  --border-glow: 0 0 20px rgba(57, 255, 20, 0.15);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(57, 255, 20, 0.08) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(5, 8, 17, 0.95), rgba(5, 8, 17, 1));
}

/* Grid & Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

.gradient-text-green {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--neon-green-glow);
}

.gradient-text-cyan {
  background: var(--cyan-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--neon-cyan-glow);
}

.gradient-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top Sticky Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #091326 0%, #0d2818 50%, #091326 100%);
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 100;
}

.top-bar .live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(57, 255, 20, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

/* Header & Navigation */
.navbar {
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.brand-logo span.highlight {
  color: var(--neon-green);
}

.brand-badge {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-cta {
  background: var(--green-gradient);
  color: #050811;
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 0 15px var(--neon-green-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.6);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.system-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-cyan);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.1);
}

.system-rating-badge .stars {
  color: var(--neon-gold);
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero-title .title-vip {
  display: inline-block;
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid var(--neon-cyan);
  padding: 0.1rem 0.8rem;
  border-radius: 12px;
  color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
  margin-left: 0.5rem;
  transform: skewX(-5deg);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 620px;
}

/* Hero Special Bonus Banner Box */
.bonus-banner-card {
  background: linear-gradient(135deg, rgba(13, 28, 20, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 2px solid var(--neon-green);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 0 30px var(--neon-green-glow);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.bonus-banner-card::before {
  content: 'BONO ESPECIAL';
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--neon-green);
  color: #050811;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.1rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 1px;
}

.bonus-icon {
  width: 54px;
  height: 54px;
  background: rgba(57, 255, 20, 0.15);
  border: 1px solid var(--neon-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.bonus-text h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.bonus-text h4 span {
  color: var(--neon-green);
}

.bonus-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  flex-direction: flex-start;
  gap: 1rem;
  width: 100%;
}

.btn-primary {
  background: var(--green-gradient);
  color: #050811;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--neon-green-glow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 45px rgba(57, 255, 20, 0.8);
}

.btn-yape {
  background: linear-gradient(135deg, var(--yape-purple) 0%, #a21caf 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1.1rem 1.8rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 25px var(--neon-purple-glow);
  border: 1px solid var(--yape-teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-yape:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--neon-purple-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* Feature Pills Grid (From Image 1) */
.hero-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
}

.pill-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.pill-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pill-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.pill-info h5 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero Media Column - Clean Integrated Cyber Avatar Frame */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.4), inset 0 0 30px rgba(57, 255, 20, 0.15);
  background: radial-gradient(circle at center, #0a1628 0%, #03060c 100%);
  max-width: 480px;
  width: 100%;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

/* Section Header Shared Component */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-green);
  margin-bottom: 0.8rem;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.25);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Section 2: Problem vs Solution */
.problem-solution-section {
  padding: 5rem 0;
  background: rgba(7, 12, 24, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ps-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.ps-card.problem {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ps-card.solution {
  background: rgba(57, 255, 20, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.3);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.08);
}

.ps-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ps-card.problem h3 { color: #f87171; }
.ps-card.solution h3 { color: var(--neon-green); }

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.ps-item .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ps-item p strong {
  color: #ffffff;
  display: block;
}

.ps-item p {
  color: var(--text-muted);
}

/* Section 3: Classroom & Modules (Skool Real Image Cards) */
.modules-section {
  padding: 6rem 0;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-green);
  box-shadow: 0 15px 35px rgba(57, 255, 20, 0.15);
}

.module-badge-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: rgba(5, 8, 17, 0.85);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.module-card-img {
  width: 100%;
  height: 200px;
  background-color: #0b1329;
  position: relative;
  overflow: hidden;
}

.module-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.module-card:hover .module-card-img img {
  transform: scale(1.05);
}

.module-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.module-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.module-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.module-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: auto;
}

.module-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--green-gradient);
  border-radius: 3px;
}

/* Section 4: VendeChat Pro Feature Highlight */
.vendechat-feature-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(5, 8, 17, 0) 0%, rgba(0, 240, 255, 0.05) 50%, rgba(5, 8, 17, 0) 100%);
}

.vendechat-box {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(5, 12, 24, 0.95) 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 0 50px var(--neon-cyan-glow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vendechat-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.vendechat-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.vendechat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.vendechat-feature-item {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.vendechat-feature-item h5 {
  font-size: 0.95rem;
  color: var(--neon-cyan);
  margin-bottom: 0.3rem;
}

.vendechat-feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Section 5: Official Pricing Card & Payment Tabs */
.pricing-section {
  padding: 6rem 0;
  position: relative;
}

.pricing-card-wrapper {
  max-width: 540px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(180deg, #091122 0%, #060b17 100%);
  border: 2px solid var(--neon-green);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 0 60px var(--neon-green-glow), inset 0 0 30px rgba(57, 255, 20, 0.05);
  position: relative;
  text-align: center;
}

.pricing-header-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pricing-community-tag {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  letter-spacing: 1.5px;
}

.pricing-vip-shield {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 167, 81, 0.15) 100%);
  border: 1px solid var(--neon-gold);
  color: var(--neon-gold);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.pricing-title {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.pricing-title span {
  color: var(--neon-green);
}

.pricing-checklist {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.pricing-checklist li .check-icon {
  width: 24px;
  height: 24px;
  background: var(--neon-green);
  color: #050811;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.pricing-price-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  margin-top: 1.5rem;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--neon-green);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 30px var(--neon-green-glow);
}

.pricing-amount span {
  font-size: 1.3rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-currency-note {
  font-size: 0.9rem;
  color: var(--neon-cyan);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.payment-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
}

.pricing-badges-row {
  display: flex;
  justify-content: space-around;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-mini-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.pricing-mini-badge .icon {
  font-size: 1.2rem;
  color: var(--neon-cyan);
}

.pricing-mini-badge div h6 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.pricing-mini-badge div p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   YAPE / PLIM HIGH-TECH QR MODAL & EFFECT (Image 2 style)
   ========================================================================== */

.yape-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.yape-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.yape-card-modal {
  background: #0b132b;
  border: 2px solid #00f0ff;
  border-radius: 28px;
  padding: 2rem 2rem 2.5rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.35);
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yape-modal-backdrop.active .yape-card-modal {
  transform: scale(1);
}

.yape-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.yape-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.yape-pill-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--neon-gold);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.yape-pill-status .dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-gold);
  animation: pulse-dot 1.2s infinite;
}

.yape-modal-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.yape-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Scanner Frame and Laser Line Animation */
.qr-scanner-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
  overflow: hidden;
}

.qr-scanner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Corner Bracket Accents */
.qr-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #00f0ff;
  border-style: solid;
  pointer-events: none;
  z-index: 5;
}

.qr-corner-tl { top: 10px; left: 10px; border-width: 3px 0 0 3px; border-top-left-radius: 8px; }
.qr-corner-tr { top: 10px; right: 10px; border-width: 3px 3px 0 0; border-top-right-radius: 8px; }
.qr-corner-bl { bottom: 10px; left: 10px; border-width: 0 0 3px 3px; border-bottom-left-radius: 8px; }
.qr-corner-br { bottom: 10px; right: 10px; border-width: 0 3px 3px 0; border-bottom-right-radius: 8px; }

/* Animated Laser Beam Scanner Line */
.scanner-laser-beam {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0) 0%, rgba(0, 240, 255, 0.9) 50%, rgba(0, 240, 255, 0) 100%);
  box-shadow: 0 0 15px #00f0ff, 0 0 25px #00f0ff;
  z-index: 4;
  animation: scanMotion 2.2s infinite ease-in-out;
}

@keyframes scanMotion {
  0% { top: 4%; }
  50% { top: 92%; }
  100% { top: 4%; }
}

.yape-expire-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--neon-gold);
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.yape-info-details {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 14px;
  padding: 1rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.yape-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.yape-info-row:last-child {
  border-bottom: none;
}

.yape-info-row span.label {
  color: var(--text-muted);
}

.yape-info-row span.value {
  color: #ffffff;
  font-weight: 700;
}

.yape-info-row span.value.highlight {
  color: var(--neon-green);
}

/* Section 6: FAQ Accordion */
.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--neon-cyan);
  transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--neon-cyan);
  color: #050811;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Floating Official WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

/* Footer */
footer {
  background: #020408;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.875rem;
}

footer p {
  margin-top: 0.5rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-pills-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vendechat-box {
    grid-template-columns: 1fr;
  }
  .ps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-pills-row {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .vendechat-grid {
    grid-template-columns: 1fr;
  }
  .pricing-badges-row {
    flex-direction: column;
    gap: 1rem;
  }
}
