/* RESET + TIPOGRAFÍAS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --azul-oscuro: #0A2463;
  --azul-claro: #3E92CC;
  --amarillo: #FFD400;
  --gris-oscuro: #2E2E2E;
  --blanco: #FFFFFF;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f9fa;
  color: var(--gris-oscuro);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden; /* Previene scroll horizontal */
}

h1, h2, h3, .cta-button, a {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--azul-oscuro), var(--azul-claro));
  color: var(--blanco);
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  margin-top: 0;
}

.hero .logo {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 3.1rem;
  margin-bottom: 1rem;
}

/* BOTÓN CTA */
.cta-button {
  display: inline-block;
  background-color: var(--amarillo);
  color: var(--gris-oscuro);
  padding: 1rem 2rem;
  line-height: 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* SECCIONES GENERALES */
section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 2rem auto;
  background-color: var(--blanco);
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--azul-oscuro);
}

/* SECCIÓN PROBLEMA */
.problema {
  /* Estilos específicos si los necesitas */
}

/* SECCIÓN SOLUCIÓN */
.solucion {
  /* Estilos específicos si los necesitas */
}

.solucion ul {
  list-style-type: none;
}

.solucion li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.solucion li::before {
  content: "•";
  color: var(--amarillo);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.3rem;
}

/* SLIDER DE TESTIMONIOS - VERSIÓN CORREGIDA */
.testimonios-slider {
  position: relative;
  padding: 3rem 0;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0;
}

.testimonios-slider blockquote {
  font-style: italic;
  background-color: #f1f3f5;
  padding: 2rem;
  border-radius: 1rem;
  margin: 0 1.5rem;
  font-size: 1.1rem;
  box-sizing: border-box;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: var(--azul-oscuro);
}

/* Estilos para la sección de precios */
.precios {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.precios h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 2px solid #4CAF50;
}

.popular-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.price-old {
  margin-bottom: 0.5rem;
}

.old-price {
  text-decoration: line-through;
  color: #e74c3c;
  font-size: 1.2rem;
  opacity: 0.7;
}

.price-new {
  font-size: 2rem;
  font-weight: bold;
  color: #2ecc71;
  margin-bottom: 1rem;
}

.price-save {
  color: #3498db;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

.pricing-card ul li i {
  color: #2ecc71;
  margin-right: 0.5rem;
}

.limited-offer {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #e74c3c;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 350px;
    margin-bottom: 1.5rem;
  }
}

/* FORMULARIO */
.formulario form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario input,
.formulario textarea,
.formulario button {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.formulario button {
  background-color: var(--azul-oscuro);
  color: var(--blanco);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.formulario button:hover {
  background-color: var(--azul-claro);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem;
}

.footer a {
  margin: 0 1rem;
  color: var(--azul-oscuro);
  text-decoration: none;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.8rem 1.1rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}