/* ============================================
   DESCÚBRETE - Landing Page Styles
   Raquel's Holistic Coaching
   ============================================ */

/* CSS Variables */
:root {
  --white: #ffffff;
  --off-white: #fefdf8;
  --cream: #f9f7f0;
  --verde-claro: #a9bf5c;
  --verde-oscuro: #95ac38;
  --rosado-claro: #f39d9d;
  --rosado-oscuro: #ef6565;
  --text-dark: #2d2d2d;
  --text-medium: #5a5a5a;
  --text-light: #7a7a7a;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

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

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

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

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

/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
  background: linear-gradient(135deg, var(--rosado-oscuro) 0%, var(--rosado-claro) 100%);
  color: var(--white);
  padding: 12px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.92; }
}

.urgency-bar p {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.urgency-bar strong {
  font-weight: 700;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 8px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 50px;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.9;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(169, 191, 92, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(243, 157, 157, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-oscuro));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--verde-oscuro), var(--text-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 span {
  color: var(--rosado-oscuro);
  -webkit-text-fill-color: var(--rosado-oscuro);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-strong);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--verde-claro);
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rosado-oscuro) 0%, var(--rosado-claro) 100%);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(239, 101, 101, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-cta::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: 0.5s;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(239, 101, 101, 0.45);
}

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

.btn-cta-secondary {
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-claro) 100%);
  box-shadow: 0 8px 25px rgba(149, 172, 56, 0.35);
}

.btn-cta-secondary:hover {
  box-shadow: 0 12px 35px rgba(149, 172, 56, 0.45);
}

.btn-small-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}

/* ========================================
   PAIN POINTS SECTION
======================================== */
.pain-section {
    padding: 80px 0;
    background: var(--white);
}

.pain-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.pain-section > .container > p {
    text-align: center;
    margin-bottom: 40px;
}

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

.pain-card {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--rosado-oscuro);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rosado-oscuro) 0%, var(--rosado-claro) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.pain-card:hover::before {
    opacity: 0.05;
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.pain-card p {
    position: relative;
    z-index: 1;
    color: var(--text-medium);
    margin: 0;
}

.pain-validation {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-claro) 100%);
    border-radius: 24px;
    color: var(--white);
}

.validation-text {
    font-size: 1.125rem;
    margin-bottom: 16px;
    opacity: 0.95;
    color: var(--white);
}

.validation-highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.story-image {
  width: 100%;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

.story-text h2 {
  margin-bottom: 25px;
}

.story-text h2 span {
  color: var(--verde-oscuro);
}

.quote-highlight {
  background: var(--white);
  padding: 25px 30px;
  border-left: 4px solid var(--verde-claro);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 30px 0;
  font-style: italic;
}

.quote-highlight p {
  font-size: 1.15rem;
  color: var(--verde-oscuro);
  margin: 0;
}










/* ============================================
   TRANSFORMATION SECTION
   ============================================ */
.transformation {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.transformation h2 span {
  color: var(--verde-oscuro);
}

.transformation > .container > img {
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.transformation-item {
  padding: 40px 30px;
  background: var(--cream);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.transformation-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--verde-claro), var(--verde-oscuro));
}

.transformation-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.transformation-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-oscuro));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.transformation-item h4 {
  margin-bottom: 15px;
  color: var(--verde-oscuro);
}

/* ============================================
   PRODUCT SECTION
   ============================================ */
.product-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}

.product-intro {
  text-align: center;
  margin-bottom: 50px;
}

.product-intro h2 span {
  color: var(--rosado-oscuro);
}

.product-name {
  display: inline-block;
  background: linear-gradient(135deg, var(--verde-oscuro), var(--verde-claro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 20px 0;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.product-benefits {
  display: grid;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-oscuro));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.benefit-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.benefit-text p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules-section {
  padding: 80px 0;
  background: var(--white);
}

.modules-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.modules-section h2 span {
  color: var(--verde-oscuro);
}

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

.module-card {
  background: var(--cream);
  border-radius: var(--border-radius-lg);
  padding: 35px 30px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--verde-oscuro), var(--verde-claro));
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.module-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--verde-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.module-badge {
  display: inline-block;
  background: var(--rosado-claro);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.module-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-right: 50px;
}

.module-value {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
}

.included-badge {
  background: var(--verde-oscuro);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  text-align: center;
}

.pricing-section h2 {
  margin-bottom: 15px;
}

.pricing-section h2 span {
  color: var(--rosado-oscuro);
}

.value-stack {
  max-width: 600px;
  margin: 40px auto;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-medium);
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.value-item .check {
  color: var(--verde-oscuro);
  font-weight: bold;
}

.value-item .price {
  font-weight: 600;
  color: var(--text-light);
  text-decoration: line-through;
}

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 10px;
  border-top: 2px solid var(--verde-claro);
  font-weight: 700;
  font-size: 1.2rem;
}

.value-total .total-price {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 1.4rem;
}

.final-price {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px dashed var(--verde-claro);
}

.final-price p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.old-price {
  font-size: 2rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.new-price {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--verde-oscuro);
}

.new-price span {
  font-size: 1.5rem;
  vertical-align: super;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--rosado-oscuro), var(--rosado-claro));
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

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

/* ============================================
   BONUSES SECTION
   ============================================ */
.bonuses-section {
  padding: 80px 0;
  background: var(--white);
}

.bonuses-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.bonuses-section h2 span {
  color: var(--rosado-oscuro);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bonus-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(243, 157, 157, 0.1), rgba(239, 101, 101, 0.05));
  border-radius: var(--border-radius-lg);
  border: 2px dashed var(--rosado-claro);
  transition: var(--transition-smooth);
}

.bonus-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

.bonus-image {
  flex-shrink: 0;
  width: 120px;
}

.bonus-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.bonus-content h4 {
  color: var(--rosado-oscuro);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.bonus-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.bonus-value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-value .old {
  text-decoration: line-through;
  color: var(--text-light);
}

.bonus-value .free {
  background: var(--verde-oscuro);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--cream);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-section h2 span {
  color: var(--verde-oscuro);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--verde-claro);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
  padding: 80px 0;
  background: var(--white);
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(169, 191, 92, 0.1), rgba(149, 172, 56, 0.05));
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--verde-claro);
}

.guarantee-badge {
  flex-shrink: 0;
  width: 150px;
}

.guarantee-badge img {
  width: 100%;
}

.guarantee-text h2 {
  margin-bottom: 15px;
  color: var(--verde-oscuro);
}

.guarantee-text p {
  font-size: 1.05rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: var(--cream);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section h2 span {
  color: var(--rosado-oscuro);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: rgba(169, 191, 92, 0.1);
}

.faq-question.active {
  background: var(--verde-claro);
  color: var(--white);
}

.faq-icon {
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 20px 25px;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-claro) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.final-cta .price-display {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.final-cta .old-price {
  color: rgba(255, 255, 255, 0.6);
}

.final-cta .new-price {
  color: var(--white);
}

.final-cta .btn-cta {
  background: var(--white);
  color: var(--verde-oscuro);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.final-cta .btn-cta:hover {
  background: var(--off-white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  width: 100%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--verde-oscuro);
}

.about-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.about-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--cream);
  border-radius: 50%;
  color: var(--verde-oscuro);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.about-socials a:hover {
  background: var(--verde-claro);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer a {
  color: var(--verde-claro);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .hero-content,
  .story-content,
  .product-showcase,
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    max-width: 350px;
  }
  
  /* Story Section - Responsive */
  .story-section .story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .story-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .story-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  
  .story-text {
    text-align: center;
  }
  
  .quote-highlight {
    text-align: left;
  }
  
  /* About Section - Responsive */
  .about-image {
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .transformation-grid,
  .modules-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 40px auto 0;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .urgency-bar p {
    font-size: 0.85rem;
  }
  
  .countdown {
    gap: 10px;
  }
  
  .countdown-number {
    font-size: 1.1rem;
    padding: 6px 10px;
    min-width: 40px;
  }
  
  .hero {
    padding: 40px 0 60px;
  }
  
  .btn-cta {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .new-price {
    font-size: 3rem;
  }
  
  .bonus-card {
    flex-direction: column;
    text-align: center;
  }
  
  .bonus-image {
    width: 100px;
    margin: 0 auto;
  }
  
  /* Story Section - Mobile */
  .story-image img {
    max-width: 280px;
  }
  
  /* Pain Section - Mobile */
  .pain-section h2 {
    white-space: normal !important;
    font-size: 1.5rem;
  }
  
  .pain-grid {
    grid-template-columns: 1fr;
  }
  
  .pain-card {
    padding: 24px;
  }
  
  .pain-validation {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .pain-item,
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .module-card {
    padding: 25px 20px;
  }
  
  .value-stack {
    padding: 25px;
  }
  
  .value-item {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  /* Story Section - Small Mobile */
  .story-image img {
    max-width: 250px;
  }
  
  /* About Section - Small Mobile */
  .about-image img {
    max-width: 250px;
  }
}

/* Animations on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}