:root {
  --color-primary: #0066cc;
  --color-primary-dark: #004c99;
  --color-accent: #ffc107;
  --color-text: #1a1a1a;
  --color-muted: #5a5a5a;
  --color-bg: #f8f9fa;
  --color-bg-alt: #ffffff;
  --color-border: #e0e0e0;
  --max-width: 1200px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.5;
  background: var(--color-bg);
  font-size: 14px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  text-decoration: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.site-header nav a:hover {
  color: var(--color-primary);
}

/* Botón de Suscripción en el Header (DESTACADO) */
.btn-nav-subscribe {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffb300 100%);
  color: #000 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 15px rgba(255,193,7,0.4);
  animation: pulse-subscribe 2s infinite;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-nav-subscribe:hover {
  background: linear-gradient(135deg, #ffb300 0%, var(--color-accent) 100%) !important;
  color: #000 !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,193,7,0.6);
}

@keyframes pulse-subscribe {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255,193,7,0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255,193,7,0.7);
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}

.site-header nav a {
  margin-left: 20px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-header nav a:hover {
  color: var(--color-primary);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero .subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #000;
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: #ffb300;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* About */
.about {
  padding: 40px 0;
  background: var(--color-bg-alt);
}

.about h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content > p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature-block {
  background: white;
  padding: 24px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

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

.feature-block h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.feature-block p {
  color: var(--color-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
  padding: 40px 0;
  background: white;
}

.benefits h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: #000;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: 50px 0;
  background: var(--color-bg);
}

.products h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.product-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  text-align: left;
  flex-grow: 1;
}

.product-card ul li {
  padding: 10px 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: 24px;
}

.product-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 900;
}

.product-card ul li:last-child {
  border-bottom: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  padding: 12px 32px;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
  padding: 40px 0;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stars {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Trust Section */
.trust-section {
  padding: 32px 0;
  background: white;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge {
  text-align: center;
  padding: 24px;
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.trust-badge p {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 2px 2px 25px rgba(0,0,0,0.4);
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Contact / lead form */
.contact {
  background: var(--color-bg);
  padding: 40px 0;
}

.contact h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

.contact > .container > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-muted);
}

#lead-form {
  max-width: 600px;
  margin: 48px auto 0;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  font-weight: 400;
}

.is-hidden {
  display: none;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 24px;
  font-weight: 500;
}

/* Legal pages */
.legal {
  padding: 56px 0 80px;
  background: var(--color-bg);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.legal h1 {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 2.5rem;
  border-bottom: 4px solid var(--color-accent);
  padding-bottom: 20px;
}

.legal .updated {
  color: var(--color-muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
  font-style: italic;
}

.legal-intro {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid var(--color-primary);
  margin-bottom: 40px;
}

.legal-intro p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.legal h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--color-primary);
  border-left: 5px solid var(--color-accent);
  padding-left: 20px;
}

.legal h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--color-text);
}

.legal h4 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.legal p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal ul {
  margin: 16px 0 24px 0;
  padding-left: 30px;
}

.legal ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.legal ul li strong {
  color: var(--color-primary);
}

.legal a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal a:hover {
  color: var(--color-primary-dark);
}

/* Info boxes */
.info-box {
  background: #fff9e6;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.info-box p {
  margin: 8px 0;
  font-size: 1rem;
}

.info-box strong {
  color: var(--color-text);
}

.important-notice {
  background: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin: 24px 0;
  border-radius: 8px;
}

.important-notice strong {
  color: #856404;
}

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.right-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

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

.right-card h4 {
  color: var(--color-primary);
  margin: 0 0 12px 0;
  font-size: 1.15rem;
}

.right-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Contact box */
.contact-box {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: white;
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
}

.contact-box h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.contact-box p {
  margin: 8px 0;
  color: rgba(255,255,255,0.95);
}

.contact-box a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Legal footer */
.legal-footer {
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}

.legal-footer p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.legal-footer p:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* Responsive adjustments for legal page */
@media (max-width: 768px) {
  .legal-content {
    padding: 30px 24px;
  }

  .legal h1 {
    font-size: 2rem;
  }

  .legal h2 {
    font-size: 1.4rem;
  }

  .legal h3 {
    font-size: 1.2rem;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 40px 0;
  font-size: 0.95rem;
  text-align: center;
}

.site-footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.site-footer p {
  margin: 8px 0;
}

.site-footer .copy {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  #lead-form {
    padding: 30px 24px;
  }

  .about h2,
  .contact h2,
  .benefits h2,
  .products h2,
  .testimonials h2 {
    font-size: 2rem;
  }

  .benefits-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-header nav {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .site-header nav a {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .btn-nav-subscribe {
    width: 100%;
    padding: 16px 28px !important;
    font-size: 1.1rem !important;
  }
}


/* Subscription Section */
.subscription {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.subscription-header {
  text-align: center;
  margin-bottom: 32px;
}

.subscription-header h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.subscription-header p {
  font-size: 1rem;
  color: var(--color-muted);
}

.pricing-container {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #000;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255,193,7,0.4);
}

.plan-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 16px;
}

.plan-name {
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.price-section {
  text-align: center;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.price-period {
  font-size: 1.2rem;
  color: var(--color-muted);
  align-self: flex-end;
  margin-bottom: 6px;
}

.plan-description {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.benefits-list {
  margin-bottom: 24px;
}

.benefits-list h4 {
  font-size: 0.8rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--color-accent);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-subscribe {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,102,204,0.3);
  margin-bottom: 12px;
}

.btn-subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,102,204,0.4);
}

.plan-note {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Modal Pasarela de Pago */
.modal-pago {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow-y: auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  max-width: 600px;
  margin: 40px auto;
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e0e0e0;
}

.modal-header h2 {
  margin: 0 0 8px 0;
  font-size: 2rem;
  color: var(--color-primary);
}

.modal-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.resumen-compra {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.resumen-compra h3 {
  margin: 0 0 16px 0;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.resumen-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #d0d0d0;
}

.resumen-precio {
  font-weight: 600;
  color: var(--color-text);
}

.resumen-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  font-size: 1.3rem;
  font-weight: 700;
}

.total-precio {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.form-section {
  margin-bottom: 32px;
}

.form-section h4 {
  margin: 0 0 20px 0;
  font-size: 1.2rem;
  color: var(--color-primary);
  padding-left: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-col-2 {
  width: 100%;
}

.tarjetas-aceptadas {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.tarjetas-aceptadas img {
  height: 25px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seguridad-info {
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.seguridad-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.seguridad-info strong {
  display: block;
  color: #2e7d32;
  margin-bottom: 4px;
}

.seguridad-info p {
  margin: 0;
  color: #1b5e20;
  font-size: 0.9rem;
}

.btn-pagar {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(76,175,80,0.3);
  margin-bottom: 16px;
}

.btn-pagar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76,175,80,0.4);
}

.terminos-pago {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.terminos-pago a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Responsive para suscripción y modal */
@media (max-width: 768px) {
  .pricing-card {
    padding: 32px 24px;
  }

  .price-amount {
    font-size: 3.5rem;
  }

  .modal-content {
    margin: 20px;
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-header h2 {
    font-size: 1.6rem;
  }
}
