/* ======================================
   HOME SECTIONS - CSS CONSOLIDADO
   Archivo generado consolidando 8 archivos CSS individuales
   para reducir peticiones HTTP y mejorar PageSpeed
   
   SECCIONES INCLUIDAS:
   1. HERO SECTION (hero.css) - Líneas 8-154
   2. PROBLEMS SECTION (problems.css) - Líneas 156-290
   3. WE OFFER SECTION (weoffer.css) - Líneas 292-395
   4. HOW WORKS SECTION (howworks.css) - Líneas 397-476
   5. TRUST SECTION (trust.css) - Líneas 478-534
   6. TESTIMONIALS SECTION (testimonies.css) - Líneas 536-608
   7. PLAN/PRICING SECTION (plan.css) - Líneas 610-1050
   8. CTA SECTION (cta.css) - Líneas 1052-1187
   ====================================== */

/* ========================================================================
   1. HERO SECTION - Sección principal con título, CTA e imagen hero
   Archivo original: hero.css
   ======================================================================== */
.hero-text {
  max-width: 520px;
}

.h1-large {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}

.text-highlight {
  color: #93c5fd;
}

.p-large {
  font-size: 1.05rem;
  color: #dbeafe;
  margin-top: 18px;
  line-height: 1.6;
}

.btn-hero-primary {
  background: #ffffff;
  color: #1e3a8a;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: #f8fafc;
  color: #1e40af;
  text-decoration: none;
}

.hero-actions {
  margin-top: 28px;
}

.hero-trust {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #dbeafe;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-trust i {
  color: #22c55e;
  margin-right: 5px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
}

.hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.5s cubic-bezier(0.25, 1, 0.3, 1),
    box-shadow 0.5s ease,
    filter 0.5s ease;
  transform: scale(1);
  transform-origin: center center;
  filter: brightness(0.98) saturate(1.05);
  will-change: transform, box-shadow, filter;
  opacity: 0;
  animation: heroFadeIn 0.9s ease forwards;
}

.hero-image:hover img {
  transform: scale(1.08);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55);
  filter: brightness(1.08) saturate(1.1);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-image {
    margin-top: 40px;
  }
  .hero-image img {
    max-width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transform: scale(1);
  }
}

/* ========================================================================
   2. PROBLEMS SECTION - Comparación problema vs solución
   Archivo original: problems.css
   Clases principales: .ps-modern, .ps-box-problem, .ps-box-solution
   ======================================================================== */
.ps-modern {
  padding: 50px 0;
  background: #f9fafb;
}

.ps-modern-header h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.ps-modern-header h2 span {
  color: #2563eb;
}

.ps-modern-header p {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #475569;
}

.ps-box {
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 32px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.ps-box-problem h3 {
  color: #991b1b;
}

.ps-box-solution {
  border-color: #dbeafe;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.ps-box-solution h3 {
  color: #1e3a8a;
}

.ps-items {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.ps-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.5;
}

.ps-box-problem i {
  color: #dc2626;
  font-size: 1.05rem;
  margin-top: 4px;
}

.ps-box-solution i {
  color: green;
  font-size: 1.05rem;
  margin-top: 4px;
}

.ps-action {
  margin-top: 32px;
}

.btn-ps-modern {
  display: inline-block;
  padding: 13px 34px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-ps-modern:hover,
.btn-ps-modern:focus {
  background: #1e40af;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.ps-box:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.ps-header-icon {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 12px;
  opacity: 0.9;
}

.ps-box-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  margin-bottom: 18px;
}

.ps-box-title h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
}

.ps-box-problem .ps-box-title i {
  color: #dc2626;
  font-size: 1.3rem;
}

.ps-box-solution .ps-box-title i {
  color: #2563eb;
  font-size: 1.3rem;
}

@media (max-width: 991px) {
  .ps-box {
    padding: 36px 28px;
  }
  .ps-modern-header {
    text-align: center;
  }
  .ps-action {
    text-align: center;
  }
}

/* ========================================================================
   3. WE OFFER SECTION - Carrusel de módulos/características del sistema
   Archivo original: weoffer.css
   Clases principales: .offer-card, .section-offer, .mySwiper
   ======================================================================== */
.section-offer {
  background: #f9fafb;
}

.section-offer .section-title {
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1e3a8a;
}

.section-offer .section-subtitle {
  color: #6b7280;
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto;
}

.offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  height: 100%;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
  cursor: default;
}

.offer-card .icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 18px;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.offer-card h4,
.offer-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.2px;
  color: #1f2937;
  margin-bottom: 10px;
  min-height: 52px;
}

.offer-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.55;
  min-height: 72px;
  margin-bottom: 0;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-top-color: #2563eb;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
}

.offer-card:hover .icon {
  color: #1e40af;
  transform: scale(1.18);
}

.swiper-slide {
  display: flex;
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: #2563eb !important;
  transition: color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #1e40af !important;
}

.section-offer .text-secondary {
  color: #495057 !important;
  font-weight: 500;
}

/* ========================================================================
   4. HOW WORKS SECTION - Pasos para empezar a usar el sistema
   Archivo original: howworks.css
   Clases principales: .how-card, .how-step, .how-icon
   ======================================================================== */
.how-section {
  padding: 60px 0;
  background: #ffffff;
}

.how-header h2 {
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.how-header h2 i {
  color: #2563eb;
  margin-right: 10px;
}

.how-header p {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.how-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.how-icon {
  min-width: 55px;
  height: 55px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-icon i {
  font-size: 1.4rem;
  color: #2563eb;
}

.how-step h4,
.how-step h3 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f2937;
  font-size: 1.5rem;
}

.how-step p {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.how-image {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ========================================================================
   5. TRUST SECTION - Puntos de confianza y seguridad
   Archivo original: trust.css
   Clases principales: .trust-card, .trust-header
   ======================================================================== */
.trust-section {
  padding: 50px 0;
  background: #ffffff;
}

.trust-header h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
}

.trust-header p {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #475569;
}

.trust-card {
  height: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card i {
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 18px;
}

.trust-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.trust-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .trust-header {
    text-align: center;
  }
}

/* ========================================================================
   6. TESTIMONIALS SECTION - Carrusel de testimonios de clientes
   Archivo original: testimonies.css
   Clases principales: .testimonial-card, .testimonialsSwiper
   ======================================================================== */
.testimonials-section {
  padding: 80px 0;
  background: #f9fafb;
}

.testimonials-header h2 {
  font-weight: 800;
  color: #0f172a;
}

.testimonials-header h2 i {
  color: #fbbf24;
  margin-right: 8px;
}

.testimonials-header p {
  margin-top: 10px;
  color: #475569;
  margin-bottom: 50px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 18px;
}

.testimonial-card h4,
.testimonial-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #6b7280;
}

.testimonials-prev,
.testimonials-next {
  color: #2563eb;
  transition: color 0.3s ease;
}

.testimonials-prev:hover,
.testimonials-next:hover {
  color: #1e40af;
}

/* ========================================================================
   7. PLAN/PRICING SECTION - Carrusel de planes con precios dinámicos
   Archivo original: plan.css
   Clases principales: .pricing-card, .pricing-carousel, .select-plan
   Nota: Incluye estilos para 4 planes (emprendedor, negocio, avanzado, enterprise)
   ======================================================================== */
.text-90 {
  font-size: 0.9em !important;
}
.text-100 {
  font-size: 0.95em !important;
}
.text-110 {
  font-size: 0.95em !important;
}
.text-dark-d1 {
  color: #6c757d !important;
}
.text-green-d1 {
  color: #28a745 !important;
}
.text-primary-d1 {
  color: #276ab4 !important;
}
.text-danger-d1 {
  color: #dc3545 !important;
}
.text-warning-d1 {
  color: #ec971f !important;
}
.text-purple {
  color: #7c3aed !important;
}

.pricing-wrapper {
  position: relative;
  overflow: hidden;
}

.pricing-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 15px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.pricing-carousel::-webkit-scrollbar {
  display: none;
}

.pricing-intervals-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.pricing-intervals-buttons button {
  position: relative;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pricing-intervals-buttons button:hover:not(.active) {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.pricing-intervals-buttons button.active {
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: none;
  transform: translateY(-2px);
  transition: background 0.3s ease;
}

.pricing-intervals-buttons button.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.5);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.pricing-intervals-buttons button label {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 7px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.4);
  transform: rotate(4deg);
}

.pricing-card {
  min-width: 330px;
  max-width: 350px;
  height: 630px;
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 2px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background: transparent;
}

.pricing-card.expanded {
  height: 670px;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.pricing-card:hover::before {
  animation: shimmer 1.5s linear infinite;
  background-size: 300% 100%;
}

.pricing-card.emprendedor::before {
  background: linear-gradient(90deg, #2563eb, #3b82f6, #2563eb);
  background-size: 200% 100%;
}

.pricing-card.negocio::before {
  background: linear-gradient(90deg, #16a34a, #22c55e, #16a34a);
  background-size: 200% 100%;
}

.pricing-card.avanzado::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #7c3aed);
  background-size: 200% 100%;
}

.pricing-card.enterprise::before {
  background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
  background-size: 200% 100%;
}

.pricing-card.selected.emprendedor {
  border-color: #2563eb;
  background-color: #eff6ff;
}

.pricing-card.selected.negocio {
  border-color: #16a34a;
  background-color: #dcfce7;
}

.pricing-card.selected.avanzado {
  border-color: #7c3aed;
  background-color: #f3e8ff;
}

.pricing-card.selected.enterprise {
  border-color: #dc2626;
  background-color: #fee2e2;
}

.plan-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.plan-title,
h3.plan-title,
h5.plan-title {
  font-weight: 800;
  text-align: center;
  font-size: 1.25rem;
}

.plan-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}

.price {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0 3px;
  transition: all 0.3s ease;
}

.price span {
  font-size: 0.8rem;
  color: #6b7280;
}

.price-igv {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 8px;
  font-style: italic;
}

.price-before {
  text-align: center;
  font-size: 1.1rem;
  color: #dc2626;
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  display: none;
}

.price-before.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.has-discount .price {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.pricing-card.emprendedor.has-discount .price {
  color: #2563eb !important;
  text-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
}

.pricing-card.negocio.has-discount .price {
  color: #16a34a !important;
  text-shadow: 0 2px 12px rgba(22, 163, 74, 0.3);
}

.pricing-card.avanzado.has-discount .price {
  color: #7c3aed !important;
  text-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

.pricing-card.enterprise.has-discount .price {
  color: #dc2626 !important;
  text-shadow: 0 2px 12px rgba(220, 38, 38, 0.3);
}

.ideal-para {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #4b5563;
}

.caracteristicas {
  list-style: none;
  padding-left: 0;
  color: #4b5563;
  flex-grow: 1;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.caracteristicas li {
  padding: 4px 0;
}

.ver-mas {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
  margin-bottom: 20px;
  align-self: flex-start;
}

.ver-mas:hover {
  text-decoration: underline;
}

.badge-recommended {
  position: absolute;
  top: -5px;
  right: 20px;
  background: #16a34a;
  color: white;
  font-size: 0.75rem;
  padding: 2px 14px;
  border-radius: 20px;
  font-weight: 700;
}

.nav-arrow {
  position: absolute;
  top: 45%;
  background: #fff;
  border: 1px solid #e5e7eb;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #f3f4f6;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.nav-arrow.left {
  left: 5px;
}

.nav-arrow.right {
  right: 5px;
}

.select-plan {
  font-weight: 700;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.35s ease;
  transform: translateY(0);
  color: #fff !important;
}

.pricing-card.emprendedor .select-plan {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border: none;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.pricing-card.emprendedor .select-plan:hover {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

.pricing-card.negocio .select-plan {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border: none;
  animation: pulseGreen 3s infinite alternate;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.4);
  color: #fff;
}

.pricing-card.negocio .select-plan:hover {
  animation-play-state: paused;
  transform: translateY(-3px);
  background: linear-gradient(90deg, #15803d, #16a34a);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.6);
}

.pricing-card.avanzado .select-plan {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
}

.pricing-card.avanzado .select-plan:hover {
  background: linear-gradient(90deg, #6d28d9, #7c3aed);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.pricing-card.enterprise .select-plan {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.pricing-card.enterprise .select-plan:hover {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
  }
  100% {
    box-shadow: 0 0 25px 8px rgba(22, 163, 74, 0.35);
  }
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .plan-icon {
  transform: scale(1.15);
  transition: transform 0.4s ease;
}

.pricing-card:hover .plan-title,
.pricing-card:hover .price {
  transition: color 0.4s ease;
}

.pricing-card.emprendedor:hover .plan-title,
.pricing-card.emprendedor:hover .price {
  color: #2563eb;
}

.pricing-card.negocio:hover .plan-title,
.pricing-card.negocio:hover .price {
  color: #16a34a;
}

.pricing-card.avanzado:hover .plan-title,
.pricing-card.avanzado:hover .price {
  color: #7c3aed;
}

.pricing-card.enterprise:hover .plan-title,
.pricing-card.enterprise:hover .price {
  color: #dc2626;
}

@media (max-width: 767px) {
  .pricing-carousel {
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
  }
  .pricing-card {
    min-width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.5);
}

/* ========================================================================
   8. CTA SECTION - Call to action final con botón WhatsApp
   Archivo original: cta.css
   Clases principales: .final-cta-card, .cta-whatsapp, .final-cta-content
   ======================================================================== */
.final-cta-section {
  padding: 90px 0;
}

.final-cta-card {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 28px;
  padding: 70px 40px;
  box-shadow: 0 30px 70px rgba(30, 58, 138, 0.35);
  position: relative;
  overflow: hidden;
}

.final-cta-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
}

.final-cta-content {
  position: relative;
  max-width: 760px;
  margin: auto;
  color: #ffffff;
}

.final-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.final-cta-content h2 span {
  display: block;
  font-weight: 700;
  color: #bfdbfe;
}

.final-cta-content p {
  font-size: 1.05rem;
  color: #e0e7ff;
  margin-bottom: 36px;
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
}

.cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.55);
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.cta-trust {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #dbeafe;
}

.cta-trust i {
  color: #22c55e;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .final-cta-card {
    padding: 50px 24px;
  }
  .cta-trust {
    gap: 16px;
  }
}
