/* ==========================================
   MANITAS DE ARTISTA - Landing Page Styles
   El Arca de Noé - Historias de la Biblia
   ========================================== */

/* CSS Custom Properties (Variables) */
:root {
  --color-primary: #ff65c3;
  --color-primary-dark: #e85aaf;
  --color-primary-light: #ff88d4;
  --color-teal: #2D9B9B;
  --color-teal-dark: #248080;
  --color-green: #4CAF50;
  --color-text-dark: #2D3748;
  --color-text: #555;
  --color-text-light: #666;
  --color-text-muted: #888;
  --color-bg-pink: #FFF5F5;
  --color-bg-white: #ffffff;
  --color-bg-gray: #FAFAFA;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 20px;
  --border-radius-xl: 25px;
  --border-radius-full: 50px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg-pink);
  overflow-x: hidden;
}

/* Selection styling */
::selection {
  background: rgba(255, 101, 195, 0.2);
  color: var(--color-text-dark);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

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

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

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

/* ==========================================
   Logo Header
   ========================================== */
.logo-header {
  padding: 20px 0 10px;
  background: linear-gradient(135deg, #FFF0F3 0%, #FFF5F5 100%);
}

.header-bar {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  align-items: center;
  gap: 16px;
}

.logo {
  max-width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.badge--header {
  justify-self: center;
  margin-bottom: 0;
}

.header-spacer {
  width: 110px;
  height: 1px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  background: linear-gradient(180deg, #FFF0F3 0%, #FFE4EC 50%, #FFF5F5 100%);
  padding: 25px 20px 60px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(173, 216, 216, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-teal);
  padding: 12px 28px;
  border-radius: var(--border-radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 155, 155, 0.2);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF88B8 0%, #FF6BA8 50%, #FF5C98 100%);
  color: white;
  padding: 18px 50px;
  border-radius: var(--border-radius-full);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 25px rgba(255, 77, 141, 0.35), 0 0 0 0 rgba(255, 107, 168, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 77, 141, 0.45), 0 0 0 4px rgba(255, 107, 168, 0.2);
  background: linear-gradient(135deg, #FF7DAF 0%, #FF5C98 50%, #FF4D8D 100%);
}

.cta-button:active {
  transform: translateY(-2px) scale(1);
}

.cta-button.large {
  padding: 22px 65px;
  font-size: 1.18rem;
}

.heart-icon {
  font-size: 1.2rem;
}

/* Mini Features */
.features-mini {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.feature-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.green {
  background-color: #4CAF50;
}

/* ==========================================
   Book Preview Section
   ========================================== */
.book-preview {
  position: relative;
  background: transparent;
  padding: 40px 20px 80px;
  text-align: center;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23FFF5F5' d='M0,0 C360,40 1080,40 1440,0 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  transform: rotate(180deg);
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23FFF5F5' d='M0,40 C360,0 1080,0 1440,40 L1440,40 L0,40 Z'/%3E%3C/svg%3E") no-repeat top;
  background-size: cover;
}

.book-image {
  max-width: 850px;
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.book-image:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   Problem Section
   ========================================== */
.problem-section {
  background: #FFF5F5;
  padding: 80px 20px;
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--border-radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  transition: transform var(--transition-fast);
}

.section-badge:hover {
  transform: scale(1.05);
}

.section-badge.pink {
  background: #FFE4EC;
  color: #ff65c3;
}

.section-badge.blue {
  background: #E3F2FD;
  color: #1976D2;
}

.section-badge.purple {
  background: #F3E5F5;
  color: #7B1FA2;
}

.section-badge.green {
  background: #E8F5E9;
  color: #388E3C;
}

.section-badge.gray {
  background: #F5F5F5;
  color: #616161;
}

.section-badge.pink-outline {
  background: transparent;
  color: #ff65c3;
  border: 2px solid #ff65c3;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 28px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.highlight-pink {
  color: #ff65c3;
}

.highlight-teal {
  color: #2D9B9B;
}

.problem-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.highlight-question {
  color: #ff65c3;
  font-weight: 500;
}

.highlight-question em {
  font-style: italic;
}

/* ==========================================
   Empathy Section
   ========================================== */
.empathy-section {
  padding: 40px 20px 80px;
  background: #FFF5F5;
}

.empathy-card {
  background: white;
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 101, 195, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.empathy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.heart-icon-large {
  font-size: 2.5rem;
  color: #FFB6C1;
  margin-bottom: 20px;
}

.heart-icon-large.pink {
  color: #FF69B4;
}

.empathy-text {
  font-size: 1.2rem;
  color: #555;
  font-weight: 500;
}

/* ==========================================
   Solution Section
   ========================================== */
.solution-section {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.solution-description {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits-section {
  background: #FAFAFA;
  padding: 60px 20px 80px;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 40px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 28px 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 101, 195, 0.15);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon.pink {
  background: #FFE4EC;
}

.benefit-icon.orange {
  background: #FFF3E0;
}

.benefit-icon.coral {
  background: #FFEBEE;
}

.benefit-icon.purple {
  background: #F3E5F5;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ==========================================
   Book Cover Section
   ========================================== */
.book-cover-section {
  background: #FAFAFA;
  padding: 40px 20px 80px;
  text-align: center;
}

.book-cover-image {
  max-width: 750px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   What's Included Section
   ========================================== */
.includes-section {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.includes-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

.includes-list {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  background: white;
  border: 2px solid #F0D9DD;
  border-radius: var(--border-radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 28px 32px;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #F0D9DD;
  transition: background var(--transition-fast);
}

.include-item:hover {
  background: #FEFBFC;
}

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

.check-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  transition: transform var(--transition-fast);
}

.include-item:hover .check-icon {
  transform: scale(1.1);
}

.include-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 6px;
}

.include-content .emoji {
  margin-right: 5px;
}

.include-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ==========================================
   Guarantee Section
   ========================================== */
.guarantee-section {
  background: #F5F5F5;
  padding: 60px 20px;
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  padding: 40px 50px;
  border-radius: var(--border-radius-lg);
  max-width: 950px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 1px solid #E8E8E8;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.guarantee-shield {
  width: 140px;
  height: 140px;
  background: linear-gradient(180deg, #5DD39E 0%, #3CB371 50%, #2E8B57 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  box-shadow: 
    0 8px 25px rgba(60, 179, 113, 0.35),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1),
    inset 0 3px 10px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  padding: 15px;
}

.shield-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.shield-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.shield-check {
  display: none;
}

.guarantee-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.guarantee-days {
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.guarantee-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 15px;
}

.guarantee-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.about-icon {
  width: 60px;
  height: 60px;
  background: #FFE4EC;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 30px;
}

.about-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
  background: #FAFAFA;
  padding: 80px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 101, 195, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover .avatar {
  transform: scale(1.1);
}

.avatar.pink {
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
}

.avatar.teal {
  background: linear-gradient(135deg, #2D9B9B 0%, #1E8080 100%);
}

.avatar.yellow {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: #888;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.stars {
  color: #FFD700;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ==========================================
   Stats Section
   ========================================== */
.stats-section {
  background: #FAFAFA;
  padding: 40px 20px 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 101, 195, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon.pink {
  background: #FFE4EC;
}

.stat-icon.coral {
  background: #FFEBEE;
}

.stat-icon.yellow {
  background: #FFF8E1;
}

.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--color-text-dark) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card p {
  font-size: 0.9rem;
  color: #666;
}

/* ==========================================
   Quote Section
   ========================================== */
.quote-section {
  background: #F5FBF5;
  padding: 60px 20px;
}

.quote-card {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  padding: 55px 65px;
  background: linear-gradient(135deg, #FFD9E8 0%, #E0F7F4 100%);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #3D4852;
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 500;
}

.quote-author {
  font-size: 0.95rem;
  color: #888;
  font-weight: 500;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-section {
  background: linear-gradient(180deg, #FFF0F3 0%, #FFE4EC 100%);
  padding: 80px 20px;
  text-align: center;
}

.pricing-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Countdown */
.countdown-wrapper {
  margin-bottom: 40px;
}

.countdown-label {
  display: inline-block;
  color: #ff65c3;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

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

.countdown-item {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 18px 22px;
  border-radius: var(--border-radius-md);
  min-width: 85px;
  box-shadow: 0 6px 20px rgba(255, 101, 195, 0.35);
  transition: transform var(--transition-fast);
}

.countdown-item:hover {
  transform: scale(1.05);
}

.countdown-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.countdown-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-size: 2rem;
  font-weight: 700;
  color: #ff65c3;
}

/* Pricing Card */
.pricing-card {
  background: white;
  padding: 55px 55px;
  border-radius: var(--border-radius-xl);
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 101, 195, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  background: linear-gradient(135deg, #f877c7 0%, #ff65c3 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: -50px -40px 30px;
  margin-top: -50px;
}

.pricing-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

.pricing-launch {
  color: #2D9B9B;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.price-original {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 5px;
}

.price-original s {
  text-decoration: line-through;
}

.price-current {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.price-access {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #555;
}

.check.green {
  color: #4CAF50;
  font-weight: bold;
}

/* Security & Payment */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0 20px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.security-icon {
  font-size: 1.5rem;
  color: #666;
}

.security-icon.shield {
  background: #F5F5F5;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.security-text {
  font-size: 0.7rem;
  color: #666;
  text-align: left;
  line-height: 1.3;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-logo {
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #F5F5F5;
  color: #333;
}

.payment-logo.paypal {
  color: #003087;
}

.payment-logo.visa {
  color: #1A1F71;
}

.payment-logo.mastercard {
  color: #EB001B;
}

.payment-logo.amex {
  color: #006FCF;
}

.pricing-quote {
  font-style: italic;
  color: #666;
  margin-top: 40px;
  font-size: 1rem;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.faq-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

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

.faq-item {
  background: white;
  border: 1px solid #E8E8E8;
  border-radius: var(--border-radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 101, 195, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px;
  background: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #2D3748;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #FAFAFA;
}

.faq-icon {
  font-size: 0.8rem;
  color: #888;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta-section {
  background: #FFF5F5;
  padding: 80px 20px;
  text-align: center;
}

.final-cta-text {
  font-size: 1.05rem;
  color: #666;
  max-width: 550px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.arrow-down {
  font-size: 1.5rem;
  color: #ff65c3;
  margin-bottom: 25px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: linear-gradient(180deg, #F8F9FA 0%, #F0F1F3 100%);
  padding: 70px 20px 50px;
  text-align: center;
  border-top: 1px solid #E5E5E5;
}

.footer-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

.footer h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.footer-collection {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.footer-love {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #999;
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.35);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.3s ease;
}

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

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.45);
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablets grandes y pantallas medianas */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

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

/* Tablets */
@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Móviles grandes y tablets pequeñas */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .logo-header {
    padding: 18px 0 12px;
  }

  .header-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .header-spacer {
    display: none;
  }

  .badge--header {
    text-align: center;
    padding: 9px 18px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 30px 15px 50px;
  }
  
  .cta-button {
    padding: 16px 35px;
    font-size: 0.95rem;
  }
  
  .cta-button.large {
    padding: 18px 45px;
    font-size: 1rem;
  }
  
  .features-mini {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .book-preview {
    padding: 60px 15px;
  }

  .book-image {
    max-width: 100%;
  }

  .problem-section,
  .solution-section,
  .benefits-section,
  .includes-section,
  .about-section,
  .testimonials-section,
  .stats-section,
  .pricing-section {
    padding: 60px 15px;
  }

  .empathy-card {
    padding: 35px 25px;
  }

  .includes-list {
    max-width: 100%;
  }
  
  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
    gap: 25px;
  }
  
  .guarantee-shield {
    width: 120px;
    height: 120px;
    padding: 12px;
  }

  .shield-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .shield-icon {
    width: 26px;
    height: 26px;
  }

  .guarantee-label {
    font-size: 0.75rem;
  }

  .guarantee-days {
    font-size: 1.1rem;
  }

  .guarantee-content h3 {
    font-size: 1.2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .quote-card {
    padding: 35px 25px;
  }

  .quote-text {
    font-size: 1.05rem;
  }
  
  .countdown {
    gap: 5px;
  }
  
  .countdown-item {
    padding: 12px 15px;
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .pricing-card {
    padding: 40px 25px;
    max-width: 100%;
  }
  
  .pricing-header {
    margin: -40px -25px 25px;
    padding: 25px 20px;
  }
  
  .price-current {
    font-size: 2.5rem;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 15px;
  }
  
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .benefit-icon {
    margin: 0 auto;
  }
  
  .include-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .check-icon {
    margin: 0 auto;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-card h3 {
    font-size: 1.8rem;
  }

  .countdown-item {
    padding: 10px 12px;
    min-width: 60px;
  }

  .countdown-number {
    font-size: 1.3rem;
  }

  .countdown-text {
    font-size: 0.6rem;
  }

  .pricing-features li {
    font-size: 0.85rem;
  }

  .payment-methods {
    gap: 10px;
  }

  .payment-logo {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}
