/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #374151;
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 50%, #faf5ff 100%);
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilidades */
.text-pink {
  color: #ec4899;
}

.text-green {
  color: #10b981;
}

.font-bold {
  font-weight: 700;
}

.line-through {
  text-decoration: line-through;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #ec4899;
  color: white;
}

.btn-primary:hover {
  background-color: #db2777;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-white {
  background-color: white;
  color: #ec4899;
}

.btn-white:hover {
  background-color: #f9fafb;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

/* Hero Section */
.hero {
  padding: 3rem 0 5rem;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  background-color: #fce7f3;
  color: #be185d;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
    line-height: 1.1;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.feature i {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.alert {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.alert-title {
  font-weight: 600;
  color: #92400e;
}

.alert-text {
  color: #b45309;
  margin: 0;
}

.alert i {
  color: #d97706;
}

.cta-center {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .cta-center {
    justify-content: center;
  }
}

.guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem; /* 14px aprox */
  color: #6b7280; /* gris */
  background-color: transparent; /* aseguramos transparencia */
  padding: 0; /* sin espacios adicionales */
  margin: 0; /* sin espacios adicionales */
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* separa icono del texto */
  line-height: 1; /* reduce altura del contenedor */
  background-color: transparent; /* sin fondo */
  padding: 0; /* sin relleno */
  margin: 0; /* sin márgenes */
}

.guarantee i {
  font-size: 1rem; /* o ajusta según tu diseño */
  line-height: 1;
  vertical-align: middle;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-container {
  position: relative;
  z-index: 10;
}

.book-cover {
  max-width: 400px;
  width: 100%;
  height: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
}

@media (max-width: 1023px) {
  .hero-title {
    text-align: left;
  }

  .hero-description {
    text-align: left;
  }

  .cta-center {
    justify-content: flex-start;
  }
}

/* Social Proof */
.social-proof {
  padding: 3rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.rating-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background-color: white;
  border: 1px solid #fce7f3;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stars-small {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars-small i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-text {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.avatar-pink {
  background-color: #fce7f3;
  color: #ec4899;
}

.avatar-purple {
  background-color: #ede9fe;
  color: #8b5cf6;
}

.avatar-green {
  background-color: #d1fae5;
  color: #10b981;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: #6b7280;
}

/* What's Inside */
.whats-inside {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
}

.chapters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .chapters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .chapters {
    grid-template-columns: repeat(3, 1fr);
  }
}

.chapter {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chapter-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-pink {
  background-color: #fce7f3;
  color: #ec4899;
}

.icon-purple {
  background-color: #ede9fe;
  color: #8b5cf6;
}

.icon-red {
  background-color: #fee2e2;
  color: #ef4444;
}

.icon-green {
  background-color: #d1fae5;
  color: #10b981;
}

.icon-blue {
  background-color: #dbeafe;
  color: #3b82f6;
}

.icon-yellow {
  background-color: #fef3c7;
  color: #f59e0b;
}

.icon-indigo {
  background-color: #e0e7ff;
  color: #6366f1;
}

.chapter-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.chapter-description {
  color: #6b7280;
}

/* Bonuses */
.bonuses {
  padding: 4rem 0;
  background-color: white;
}

.bonus-alert {
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 32rem;
  margin: 0 auto;
  color: #92400e;
  font-weight: 600;
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 3rem auto 0;
}

@media (min-width: 768px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus {
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.bonus-pink {
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
  border-color: #fce7f3;
}

.bonus-purple {
  background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
  border-color: #e9d5ff;
}

.bonus-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #ecfdf5 100%);
  border-color: #dbeafe;
}

.bonus-image {
  width: 6rem;
  height: 8rem;
  margin: 0 auto 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.bonus-description {
  color: #6b7280;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.bonus-value {
  background-color: #ec4899;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

.bonus-value-purple {
  background-color: #d8b4fe;
  color: #7c3aed;
}

.bonus-value-blue {
  background-color: #93c5fd;
  color: #1d4ed8;
}

.total-value {
  background-color: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 48rem;
  margin: 3rem auto 0;
  text-align: center;
}

.total-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.5rem;
}

.total-description {
  color: #15803d;
  font-size: 1.125rem;
}

.total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #166534;
  margin-top: 0.5rem;
}

/* Urgency */
.urgency {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: white;
}

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

.urgency-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .urgency-title {
    font-size: 2.5rem;
  }
}

.urgency-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.urgency-box {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.urgency-savings {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.urgency-limited {
  opacity: 0.9;
}

/* Guarantee */


.guarantee-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.guarantee-icon {
  width: 5rem;
  height: 5rem;
  background-color: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.guarantee-icon i {
  font-size: 2.5rem;
  color: #10b981;
}

.guarantee-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.guarantee-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.guarantee-features {
  background-color: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #166534;
  font-weight: 600;
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.final-cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.5rem;
  }
}

.final-cta-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.final-cta-box {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

.price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ec4899;
}

.old-price {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount-badge {
  background-color: #ef4444;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.final-cta-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}

.final-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .final-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.final-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.final-feature i {
  color: #10b981;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background-color: white;
}

.faq-list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ec4899;
}

.faq-question i {
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #6b7280;
}

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

.faq-target {
  margin-bottom: 1rem;
}

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

.faq-target h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.font-medium {
  font-weight: 500;
  color: #374151;
}

.access-steps {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.access-steps p {
  margin-bottom: 0.5rem;
}

.access-steps p:last-child {
  margin-bottom: 0;
}

.step-number {
  font-weight: 600;
  color: #ec4899;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 2rem 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

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

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

  .urgency-title {
    font-size: 1.75rem;
  }

  .final-cta-title {
    font-size: 1.75rem;
  }

  .current-price {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}