/* ==========================================================================
   MEGA BIBLIOTECA DE MOLDES PARA FIESTAS - DESIGN SYSTEM V2 (CRO OPTIMIZED)
   ========================================================================== */

:root {
  /* Colors */
  --primary: #ff3366;
  --primary-hover: #e61e53;
  --primary-light: #fff0f3;
  --primary-gradient: linear-gradient(135deg, #ff3366 0%, #ff6b8b 100%);
  
  --secondary: #7c3aed;
  --secondary-hover: #6d28d9;
  --secondary-light: #f5f3ff;
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  --accent-gold-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);

  --dark: #0f172a;
  --dark-soft: #1e293b;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-page: #fffdfc;
  --bg-card: #ffffff;
  --bg-soft-gray: #f8fafc;
  --border-light: #f1f5f9;
  --border-pink: #fecdd3;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(255, 51, 102, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 35px -5px rgba(255, 51, 102, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 12px 25px -5px rgba(245, 158, 11, 0.3);
  --shadow-btn: 0 8px 20px rgba(255, 51, 102, 0.35);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.88rem;
  text-align: center;
  position: relative;
  z-index: 100;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 51, 102, 0.45);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 26px;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark-soft);
  border: 2px solid #cbd5e1;
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.15rem;
}

.btn-xl {
  padding: 22px 48px;
  font-size: 1.25rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.pulse-btn {
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 51, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); }
}

.hero-top-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-pink);
}

.hero-price-tag-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-gold-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.5px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-tag-gold {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b45309;
  background: var(--accent-gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 77, 136, 0.12);
}

.shape-2 {
  bottom: 5%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(251, 191, 36, 0.12);
}

.shape-3 {
  top: 40%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: rgba(124, 58, 237, 0.06);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero-title-secondary {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.35;
  margin-bottom: 16px;
}

.highlight-text {
  background: linear-gradient(120deg, #ff3366, #ff8008);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
}

.feature-item .f-icon {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: 10px;
}

.feature-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: var(--dark);
}

.feature-item small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hero-cta-wrapper {
  margin-bottom: 20px;
}

.cta-guarantee-text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  font-weight: 600;
}

.micro-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.micro-social-proof .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.micro-social-proof p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Hero Mockup Visual */
.hero-visual {
  position: relative;
}

.mockup-card {
  position: relative;
  background: #ffffff;
  padding: 12px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #fed7e2;
  transition: var(--transition);
}

.mockup-card:hover {
  transform: translateY(-4px);
}

.mockup-img {
  border-radius: 16px;
  width: 100%;
  display: block;
}

.mockup-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--accent-gold-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: var(--shadow-gold);
  z-index: 10;
}

.mockup-floating-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  border: 1px solid #fbcfe8;
  z-index: 5;
  animation: float-tag 4s ease-in-out infinite;
}

.tag-left {
  bottom: -12px;
  left: 10px;
  animation-delay: 0s;
}

.tag-right {
  bottom: 20px;
  right: -12px;
  animation-delay: 2s;
}

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

/* ==========================================================================
   2. AGITAR EL PROBLEMA
   ========================================================================== */
.problem-section {
  padding: 80px 0;
  background-color: var(--bg-soft-gray);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.problem-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #fee2e2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #fca5a5;
}

.problem-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 8px;
}

.problem-card p {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.5;
}

.empathy-box {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border: 2px dashed #f43f5e;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.empathy-icon {
  font-size: 2.5rem;
  background: #ffffff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.empathy-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #881337;
  margin-bottom: 6px;
}

.empathy-resolution {
  font-size: 1.05rem;
  color: var(--dark-soft);
  font-weight: 500;
}

/* ==========================================================================
   3. PRESENTACIÓN DE LA SOLUCIÓN
   ========================================================================== */
.solution-section {
  padding: 80px 0 60px;
  background: #ffffff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.solution-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 20px;
  border: 1px solid #fce7f3;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.sol-icon-box {
  font-size: 2.2rem;
  width: 68px;
  height: 68px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ==========================================================================
   4. NOVA SEÇÃO: ¿QUÉ PUEDES CREAR CON ESTOS MOLDES?
   ========================================================================== */
.what-to-create-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #fffbfd 100%);
}

.create-possibilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.create-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 22px;
  border: 1px solid #fed7e2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.create-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

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

.create-icon {
  font-size: 1.8rem;
  background: var(--primary-light);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.create-card-lead {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.create-card-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}

/* Seamless Visual Showcase (Light, Premium, Integrated) */
.crafts-showcase-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
  border-radius: 24px;
  border: 2px solid #fed7aa;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.crafts-showcase-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.crafts-showcase-content p {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
}

.crafts-showcase-media img {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 2px solid #ffffff;
}

/* ==========================================================================
   5. SECCIÓN DE CONTENIDO (CATEGORÍAS)
   ========================================================================== */
.content-section {
  padding: 80px 0;
  background: #fff8fa;
}

.abundance-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.counter-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
}

.counter-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.counter-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.category-card {
  background: #ffffff;
  padding: 20px 14px;
  border-radius: 18px;
  border: 1px solid #f1f5f9;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.category-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.category-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.content-note {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 18px;
}

/* ==========================================================================
   6. CÓMO FUNCIONA
   ========================================================================== */
.how-it-works-section {
  padding: 80px 0;
  background: #ffffff;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.step-card {
  flex: 1;
  background: var(--bg-soft-gray);
  padding: 32px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.step-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
}

.step-icon {
  font-size: 2.6rem;
  margin: 8px 0 14px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.step-card p {
  font-size: 0.93rem;
  color: var(--text-main);
  line-height: 1.45;
}

.step-connector {
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 900;
}

.quick-assurance {
  background: var(--accent-gold-light);
  border-radius: 14px;
  padding: 14px 22px;
  max-width: 760px;
  margin: 0 auto;
  color: #92400e;
  font-weight: 600;
}

/* ==========================================================================
   7. BONOS EXCLUSIVOS (PILHA DE VALOR)
   ========================================================================== */
.bonuses-section {
  padding: 80px 0;
  background: #ffffff;
}

.bonuses-showcase-wrapper {
  max-width: 720px;
  margin: 0 auto 36px;
}

.bonus-img-container {
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fde68a;
  box-shadow: var(--shadow-md);
}

.bonuses-img {
  border-radius: 16px;
  width: 100%;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.bonus-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  border: 1px solid #fed7aa;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bonus-tag {
  display: inline-block;
  background: var(--accent-gold-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 18px;
}

.bonus-val-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: #15803d;
  background: #dcfce7;
  padding: 6px 14px;
  border-radius: 12px;
  text-align: center;
}

/* ==========================================================================
   8. COMPARACIÓN DE VALOR
   ========================================================================== */
.value-comparison-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.value-box {
  background: #ffffff;
  border: 2px solid #fed7aa;
  border-radius: 24px;
  padding: 36px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.value-box h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 14px;
}

.value-list {
  list-style: none;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.value-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-soft-gray);
  border-radius: 12px;
  font-size: 0.98rem;
}

.value-list li strong {
  color: #dc2626;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.value-highlight {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.value-price-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.only-text {
  font-size: 0.92rem;
  color: #92400e;
  font-weight: 600;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 900;
  color: #b45309;
}

/* ==========================================================================
   9. OFERTA / PRECIO (PRICING SECTION V2)
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  max-width: 940px;
  margin: 0 auto 40px;
  align-items: center;
}

.pricing-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 28px;
  position: relative;
  transition: var(--transition);
}

/* Basic Plan */
.basic-plan {
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.basic-plan:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
}

/* Featured Complete Plan */
.featured-plan {
  border: 3px solid #ff3366;
  background: linear-gradient(180deg, #ffffff 0%, #fffbfd 100%);
  box-shadow: 0 20px 45px -10px rgba(255, 51, 102, 0.22), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.03);
}

.featured-plan:hover {
  transform: scale(1.05) translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 20px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.5px;
}

.plan-header {
  text-align: center;
  margin-bottom: 18px;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 18px 0;
}

.currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.featured-plan .amount {
  color: var(--primary);
}

.frequency {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.upsell-callout-badge {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.plan-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 18px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 26px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-main);
}

.check-green {
  color: #16a34a;
  font-weight: 900;
}

.check-gold {
  color: #d97706;
  font-weight: 900;
}

.star-gold {
  color: #d97706;
  font-size: 1.05rem;
}

.cross-grey {
  color: #94a3b8;
}

.disabled-feature {
  color: #94a3b8 !important;
  text-decoration: line-through;
}

.highlight-feature-gold {
  background: #fef3c7;
  padding: 8px 12px;
  border-radius: 10px;
  color: #92400e !important;
}

.plan-footnote {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 8px;
}

.smart-choice-note {
  text-align: center;
  font-size: 0.86rem;
  color: #b45309;
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* Trust Bar */
.checkout-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 18px;
  background: var(--bg-soft-gray);
  border-radius: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-soft);
}

/* ==========================================================================
   10. PROBA SOCIAL
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.93rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fed7aa 0%, #fbcfe8 100%);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}

.author-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
}

.author-info small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.testimonial-placeholder-note {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ==========================================================================
   11. GARANTÍA
   ========================================================================== */
.guarantee-section {
  padding: 70px 0;
  background: #ffffff;
}

.guarantee-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #86efac;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-sm);
}

.guarantee-seal {
  flex-shrink: 0;
}

.seal-inner {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed #16a34a;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.seal-icon {
  font-size: 1.6rem;
}

.seal-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1.1;
}

.guarantee-tag {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.guarantee-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 10px;
}

.guarantee-content p {
  font-size: 0.98rem;
  color: #166534;
  line-height: 1.55;
  margin-bottom: 6px;
}

.guarantee-sub {
  font-size: 0.88rem !important;
  color: #15803d !important;
}

/* ==========================================================================
   12. FAQ FINAL (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-soft-gray);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 14px;
}

.faq-toggle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.93rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* ==========================================================================
   13. CTA FINAL
   ========================================================================== */
.final-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff1f2 0%, #fffbeb 50%, #f5f3ff 100%);
  position: relative;
}

.final-cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.final-headline {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin: 14px 0;
}

.final-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.final-btn-wrap {
  margin-bottom: 20px;
}

.final-perks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 36px 0 85px; /* bottom padding for sticky bar */
  font-size: 0.82rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-disclaimer {
  max-width: 680px;
  margin: 0 auto 18px;
  line-height: 1.5;
  font-size: 0.75rem;
  color: #64748b;
}

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

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.78rem;
}

/* ==========================================================================
   15. STICKY BOTTOM CTA BAR (MOBILE & DESKTOP)
   ========================================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-sub {
  color: #94a3b8;
  font-size: 0.78rem;
}

/* Confetti Canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10000;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-top-badges {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-title-secondary {
    font-size: 1.25rem;
  }

  .hero-features-list {
    max-width: 460px;
    margin: 0 auto 28px;
    text-align: left;
  }

  .hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .micro-social-proof {
    justify-content: center;
  }

  .crafts-showcase-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .featured-plan {
    transform: none;
  }

  .featured-plan:hover {
    transform: translateY(-4px);
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
    margin: -8px 0;
  }

  .step-card {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .hero-section {
    padding: 36px 0 50px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-title-secondary {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .final-headline {
    font-size: 1.75rem;
  }

  .btn-lg, .btn-xl {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
  }

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

  .category-card {
    padding: 14px 8px;
  }

  .cat-icon {
    font-size: 1.7rem;
  }

  .category-card h4 {
    font-size: 0.9rem;
  }

  .category-card p {
    font-size: 0.72rem;
  }

  .abundance-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .counter-num {
    font-size: 1.7rem;
  }

  .empathy-box {
    flex-direction: column;
    text-align: center;
    padding: 22px 16px;
  }

  .value-box {
    padding: 22px 14px;
  }

  .value-list li {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .sticky-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .sticky-bar .btn {
    width: 100%;
  }
}
