/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #007bc1;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 24px;
}

/* Links del navbar */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #007bc1;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #007bc1;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Botón contacto con separación */
.btn-contacto {
  background-color: #007bc1;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-left: 40px; /* 🔹 Espacio entre Productos y Contacto */
}

.btn-contacto::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;
}

.btn-contacto:hover::before {
  left: 100%;
}

.btn-contacto:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 193, 0.3);
}

/* Hero Section para Productos */
.productos-hero {
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.productos-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none; /* 🔹 Evita que bloquee clics */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat i {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat span {
  font-weight: 600;
  font-size: 1rem;
}


/* Menú hamburguesa para móviles */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #007bc1;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section para Productos */
.productos-hero {
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.productos-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat i {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat span {
  font-weight: 600;
  font-size: 1rem;
}

/* Productos */
.productos {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.productos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.producto-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0,123,193,0.1);
}

.producto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.imagen-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.imagen-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.producto-card:hover .imagen-container img {
  transform: scale(1.1);
}

.producto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,123,193,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.producto-overlay i {
  color: white;
  font-size: 2rem;
}

.producto-card:hover .producto-overlay {
  opacity: 1;
}

.producto-content {
  padding: 25px;
}

.producto-content h3 {
  font-size: 1.5rem;
  color: #007bc1;
  margin-bottom: 15px;
  font-weight: 700;
}

.producto-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.producto-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.producto-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #333;
}

.producto-content ul li i {
  color: #28a745;
  font-size: 14px;
}

.btn-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-info::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;
}

.btn-info:hover::before {
  left: 100%;
}

.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Características */
.caracteristicas {
  padding: 80px 20px;
  background: white;
}

.caracteristicas-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.caracteristicas h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.caracteristicas h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.caracteristicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.caracteristica-card {
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.caracteristica-card:hover {
  transform: translateY(-5px);
}

.caracteristica-card i {
  font-size: 3rem;
  color: #007bc1;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.caracteristica-card:hover i {
  transform: scale(1.1);
}

.caracteristica-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.caracteristica-card p {
  color: #666;
  line-height: 1.6;
}

/* Hero Section para Nosotros */
.nosotros-hero {
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.nosotros-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Nosotros */
.nosotros {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.nosotros-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.nosotros h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.nosotros h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.nosotros-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.icono {
  font-size: 3rem;
  color: #007bc1;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card:hover .icono {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.5rem;
  color: #007bc1;
  margin-bottom: 20px;
  font-weight: 700;
}

.card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  text-align: left;
}

.card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.5;
}

.card ul li i {
  color: #28a745;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Historia */
.historia {
  padding: 80px 20px;
  background: white;
}

.historia-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.historia h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 20px;
  position: relative;
}

.historia h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.historia > .historia-container > .historia-content > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.historia-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.historia-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #007bc1, #005fa3);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,123,193,0.3);
  transition: transform 0.3s ease;
}

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

.timeline-content {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 0 30px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-content h3 {
  color: #007bc1;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Equipo */
.equipo {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.equipo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.equipo h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.equipo h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.equipo-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.equipo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.equipo-card:hover::before {
  transform: scaleX(1);
}

.equipo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.equipo-card i {
  font-size: 3rem;
  color: #007bc1;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.equipo-card:hover i {
  transform: scale(1.1);
}

.equipo-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.equipo-card p {
  color: #666;
  line-height: 1.6;
}

/* Hero Section para Beneficios */
.beneficios-hero {
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.beneficios-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Beneficios */
.beneficios {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.beneficios-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.beneficios h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 20px;
  position: relative;
}

.beneficios h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.beneficios > .beneficios-container > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.beneficio-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.beneficio-card:hover::before {
  transform: scaleX(1);
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.beneficio-card .icono {
  font-size: 3rem;
  color: #007bc1;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.beneficio-card:hover .icono {
  transform: scale(1.1);
}

.beneficio-card h3 {
  font-size: 1.5rem;
  color: #007bc1;
  margin-bottom: 20px;
  font-weight: 700;
}

.beneficio-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.beneficio-card ul {
  list-style: none;
  text-align: left;
}

.beneficio-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
}

.beneficio-card ul li i {
  color: #28a745;
  font-size: 14px;
  flex-shrink: 0;
}

/* Ventajas */
.ventajas {
  padding: 80px 20px;
  background: white;
}

.ventajas-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ventajas h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.ventajas h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.ventaja-card {
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.ventaja-card:hover {
  transform: translateY(-5px);
}

.ventaja-card i {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.ventaja-card:hover i {
  transform: scale(1.1);
}

.ventaja-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.ventaja-card p {
  color: #666;
  line-height: 1.6;
}

/* Comparación */
.comparacion {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.comparacion-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comparacion h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.comparacion h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

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

.comparacion-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.comparacion-card.destacado {
  border: 2px solid #007bc1;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,123,193,0.2);
}

.comparacion-card.destacado::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: 15px;
  right: -30px;
  background: #007bc1;
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
}

.comparacion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.comparacion-card.destacado:hover {
  transform: scale(1.05) translateY(-5px);
}

.comparacion-card h3 {
  font-size: 1.5rem;
  color: #007bc1;
  margin-bottom: 30px;
  font-weight: 700;
}

.comparacion-card ul {
  list-style: none;
  text-align: left;
}

.comparacion-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

.comparacion-card ul li i {
  font-size: 16px;
  flex-shrink: 0;
}

.comparacion-card ul li i.fa-check {
  color: #28a745;
}

.comparacion-card ul li i.fa-times {
  color: #dc3545;
}

/* ===== ESTILOS ESPECÍFICOS PARA BENEFICIOS ===== */

/* Hero Section Mejorado */
.beneficios-hero {
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.beneficios-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.beneficios-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.beneficios-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: 700;
}

.beneficios-hero p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.beneficios-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.beneficios-hero .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.beneficios-hero .stat i {
  font-size: 2.5rem;
  color: #ffd700;
}

.beneficios-hero .stat span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Beneficios Principales */
.beneficios-main {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.beneficios-main .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.beneficios-main h2 {
  font-size: 2.8rem;
  color: #007bc1;
  margin-bottom: 20px;
  position: relative;
}

.beneficios-main h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.beneficios-main > .container > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.beneficios-main .beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.beneficios-main .beneficio-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.beneficios-main .beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.beneficios-main .beneficio-card:hover::before {
  transform: scaleX(1);
}

.beneficios-main .beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,123,193,0.3);
}

.beneficios-main .beneficio-card:hover .card-icon {
  transform: scale(1.1);
}

.beneficios-main .beneficio-card h3 {
  font-size: 1.5rem;
  color: #007bc1;
  margin-bottom: 15px;
  font-weight: 700;
}

.beneficios-main .beneficio-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.beneficios-main .beneficio-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.beneficios-main .beneficio-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}

.beneficios-main .beneficio-card ul li i {
  color: #28a745;
  font-size: 12px;
  flex-shrink: 0;
}

/* Ventajas Competitivas */
.ventajas-section {
  padding: 80px 20px;
  background: white;
}

.ventajas-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ventajas-section h2 {
  font-size: 2.8rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.ventajas-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.ventajas-section .ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.ventaja-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,123,193,0.1);
}

.ventaja-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ventaja-icon {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.ventaja-content h3 {
  font-size: 1.3rem;
  color: #007bc1;
  margin-bottom: 10px;
  font-weight: 600;
}

.ventaja-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Comparación */
.comparacion-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.comparacion-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comparacion-section h2 {
  font-size: 2.8rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.comparacion-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.comparacion-section .comparacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.comparacion-section .comparacion-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.comparacion-section .comparacion-card.destacado {
  border: 2px solid #007bc1;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,123,193,0.2);
}

.comparacion-section .comparacion-card.destacado::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: 15px;
  right: -30px;
  background: #007bc1;
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
}

.card-header {
  margin-bottom: 30px;
}

.card-header h3 {
  font-size: 1.8rem;
  color: #007bc1;
  margin-bottom: 10px;
  font-weight: 700;
}

.precio {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
}

.comparacion-section .comparacion-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.comparacion-section .comparacion-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

.comparacion-section .comparacion-card ul li i {
  font-size: 16px;
  flex-shrink: 0;
}

.comparacion-section .comparacion-card ul li i.fa-check {
  color: #28a745;
}

.comparacion-section .comparacion-card ul li i.fa-times {
  color: #dc3545;
}

.rating {
  font-size: 1.2rem;
  color: #ffc107;
  letter-spacing: 2px;
}

/* Testimonios */
.testimonios-section {
  padding: 80px 20px;
  background: white;
}

.testimonios-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonios-section h2 {
  font-size: 2.8rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.testimonios-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.testimonios-section .testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonios-section .testimonio-card {
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,123,193,0.1);
}

.testimonios-section .testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonios-section .testimonio-card p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.cliente {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.info h4 {
  color: #007bc1;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.info span {
  color: #666;
  font-size: 0.9rem;
}

/* CTA Final */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::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;
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-productos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #007bc1;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-productos::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,193,0.1), transparent);
  transition: left 0.5s;
}

.btn-productos:hover::before {
  left: 100%;
}

.btn-productos:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* ===== ESTILOS ESPECÍFICOS PARA CONTACTO ===== */

/* Hero Section de Contacto */
.contacto-hero {
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contacto-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contacto-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contacto-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: 700;
}

.contacto-hero p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.contacto-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contacto-hero .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contacto-hero .stat i {
  font-size: 2.5rem;
  color: #ffd700;
}

.contacto-hero .stat span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Sección Principal de Contacto */
.contacto-main {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.contacto-main .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contacto-main .contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Tarjeta de Información de Contacto */
.contacto-info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,123,193,0.1);
}

.contacto-info-card h2 {
  font-size: 2.2rem;
  color: #007bc1;
  margin-bottom: 10px;
  font-weight: 700;
}

.contacto-info-card > p {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contacto-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,123,193,0.1);
}

.contacto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contacto-icon {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.contacto-content h3 {
  font-size: 1.2rem;
  color: #007bc1;
  margin-bottom: 8px;
  font-weight: 600;
}

.contacto-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contacto-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,123,193,0.3);
}

/* Sección de Redes Sociales */
.social-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,123,193,0.1);
}

.social-section h3 {
  font-size: 1.3rem;
  color: #007bc1;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Tarjeta de Formulario */
.contacto-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,123,193,0.1);
}

.contacto-form-card h2 {
  font-size: 2.2rem;
  color: #007bc1;
  margin-bottom: 10px;
  font-weight: 700;
}

.contacto-form-card > p {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8faff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bc1;
  background: white;
  box-shadow: 0 0 0 3px rgba(0,123,193,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-submit::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;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,123,193,0.3);
}

/* Sección del Mapa */
.mapa-section {
  padding: 80px 20px;
  background: white;
}

.mapa-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.mapa-section h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 15px;
  font-weight: 700;
}

.mapa-section > .container > p {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.2rem;
}

.mapa-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Final de Contacto */
.contacto-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contacto-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contacto-cta .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contacto-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contacto-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contacto-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-cta::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;
}

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

.btn-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #007bc1;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-call-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,193,0.1), transparent);
  transition: left 0.5s;
}

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

.btn-call-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.beneficios-principales h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 20px;
  position: relative;
}

.beneficios-principales h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.beneficios-principales > .beneficios-container > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.beneficios-principales .beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.beneficios-principales .beneficio-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.beneficios-principales .beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.beneficios-principales .beneficio-card:hover::before {
  transform: scaleX(1);
}

.beneficios-principales .beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.beneficio-icon {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,123,193,0.3);
}

.beneficios-principales .beneficio-card:hover .beneficio-icon {
  transform: scale(1.1);
}

.beneficios-principales .beneficio-card h3 {
  font-size: 1.5rem;
  color: #007bc1;
  margin-bottom: 15px;
  font-weight: 700;
}

.beneficios-principales .beneficio-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.beneficio-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.beneficio-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
}

.beneficio-features span i {
  color: #28a745;
  font-size: 12px;
  flex-shrink: 0;
}

/* Ventajas Competitivas */
.ventajas-competitivas {
  padding: 80px 20px;
  background: white;
}

.ventajas-competitivas .ventajas-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ventajas-competitivas h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.ventajas-competitivas h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.ventajas-competitivas .ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.ventaja-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,123,193,0.1);
}

.ventaja-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ventaja-icon {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.ventaja-content h3 {
  font-size: 1.3rem;
  color: #007bc1;
  margin-bottom: 10px;
  font-weight: 600;
}

.ventaja-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Comparación de Beneficios */
.comparacion-beneficios {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.comparacion-beneficios .comparacion-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comparacion-beneficios h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.comparacion-beneficios h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.comparacion-beneficios .comparacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.comparacion-beneficios .comparacion-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.comparacion-beneficios .comparacion-card.destacado {
  border: 2px solid #007bc1;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,123,193,0.2);
}

.comparacion-beneficios .comparacion-card.destacado::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: 15px;
  right: -30px;
  background: #007bc1;
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
}

.comparacion-header {
  margin-bottom: 30px;
}

.comparacion-header h3 {
  font-size: 1.8rem;
  color: #007bc1;
  margin-bottom: 10px;
  font-weight: 700;
}

.precio {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
}

.comparacion-beneficios .comparacion-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.comparacion-beneficios .comparacion-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

.comparacion-beneficios .comparacion-card ul li i {
  font-size: 16px;
  flex-shrink: 0;
}

.comparacion-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.calificacion {
  font-size: 1.2rem;
  color: #ffc107;
  letter-spacing: 2px;
}

/* Testimonios de Beneficios */
.testimonios-beneficios {
  padding: 80px 20px;
  background: white;
}

.testimonios-beneficios .testimonios-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonios-beneficios h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.testimonios-beneficios h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.testimonios-beneficios .testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonios-beneficios .testimonio-card {
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,123,193,0.1);
}

.testimonios-beneficios .testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonio-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonios-beneficios .testimonio-card p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonio-cliente {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cliente-avatar {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.cliente-info h4 {
  color: #007bc1;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.cliente-info span {
  color: #666;
  font-size: 0.9rem;
}

/* CTA de Beneficios */
.cta-beneficios {
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-beneficios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-beneficios .cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-beneficios h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-beneficios p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-whatsapp::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;
}

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

.btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta-productos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #007bc1;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-productos::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,123,193,0.1), transparent);
  transition: left 0.5s;
}

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

.btn-cta-productos:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* ==== VIDEO PRINCIPAL ==== */
.video-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  width: 90%;
}

.video-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

.video-overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

.video-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.video-overlay .btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.6s both;
  box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.video-overlay .btn::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;
}

.video-overlay .btn:hover::before {
  left: 100%;
}

.video-overlay .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

/* Proceso */
.proceso {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.proceso-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.proceso h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 20px;
  position: relative;
}

.proceso h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.proceso > .proceso-container > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.proceso-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.proceso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.proceso-card:hover::before {
  transform: scaleX(1);
}

.proceso-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.proceso-icon {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,123,193,0.3);
}

.proceso-card:hover .proceso-icon {
  transform: scale(1.1);
}

.proceso-card h3 {
  font-size: 1.3rem;
  color: #007bc1;
  margin-bottom: 15px;
  font-weight: 700;
}

.proceso-card p {
  color: #666;
  line-height: 1.6;
}

/* Tecnología */
.tecnologia {
  padding: 80px 20px;
  background: white;
}

.tecnologia-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tecnologia h2 {
  font-size: 2.5rem;
  color: #007bc1;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.tecnologia h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.tecnologia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tecnologia-text h3 {
  font-size: 1.8rem;
  color: #007bc1;
  margin-bottom: 20px;
  font-weight: 700;
}

.tecnologia-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.tecnologia-text ul {
  list-style: none;
  margin-bottom: 30px;
}

.tecnologia-text ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #333;
  font-size: 1.1rem;
}

.tecnologia-text ul li i {
  color: #28a745;
  font-size: 16px;
  flex-shrink: 0;
}

.btn-tecnologia {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-tecnologia::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;
}

.btn-tecnologia:hover::before {
  left: 100%;
}

.btn-tecnologia:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.tecnologia-video {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tecnologia-video video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Certificaciones */
.certificaciones {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.certificaciones-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.certificaciones h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 60px;
  position: relative;
}

.certificaciones h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.certificaciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.certificacion-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.certificacion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.certificacion-card:hover::before {
  transform: scaleX(1);
}

.certificacion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.certificacion-card i {
  font-size: 3rem;
  color: #007bc1;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.certificacion-card:hover i {
  transform: scale(1.1);
}

.certificacion-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.certificacion-card p {
  color: #666;
  line-height: 1.6;
}

/* Carrusel */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  height: 500px;
  position: relative;
  color: #fff;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.6);
}

.carousel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
  z-index: 2;
}

.carousel-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

.carousel-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

.carousel-text .btn {
  background: #007bff;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.4s both;
}

.carousel-text .btn::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;
}

.carousel-text .btn:hover::before {
  left: 100%;
}

.carousel-text .btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Botones de control del carrusel */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 3;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonios */
.testimonios {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.testimonios h2 {
  font-size: 2.5rem;
  color: #007bc1;
  margin-bottom: 15px;
  position: relative;
}

.testimonios h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  border-radius: 2px;
}

.testimonios p {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,123,193,0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bc1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stars {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: italic;
}

.cliente {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  background: linear-gradient(135deg, #007bc1, #005fa3);
  color: white;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,123,193,0.3);
}

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

.nombre {
  font-size: 16px;
  font-weight: bold;
  color: #007bc1;
}

/* Llamado a la acción */
.cta {
  background: linear-gradient(135deg, #007bc1 0%, #005fa3 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: white;
  color: #007bc1;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

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

.btn-cta:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1c1e26 0%, #2c3e50 100%);
  color: #ffffff;
  padding: 60px 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3,
.footer-col h4 {
  color: #3da9fc;
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
}

.footer-col h3::after,
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #3da9fc, #007bc1);
  border-radius: 2px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ccc;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col ul li:hover {
  color: #3da9fc;
  transform: translateX(5px);
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #3da9fc;
}

/* Funcionalidad del teléfono */
.phone-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.phone-action-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.phone-action-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.phone-action-btn.contacts {
  background: #007bc1;
}

.phone-action-btn.contacts:hover {
  background: #005fa3;
  box-shadow: 0 2px 8px rgba(0, 123, 193, 0.3);
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #ccc;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #3da9fc;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 50px;
  padding-top: 25px;
  font-size: 14px;
  color: #aaa;
}

.logo-footer {
  font-size: 22px;
  color: #3da9fc;
  font-weight: bold;
}

/* ===== MEDIA QUERIES PARA RESPONSIVIDAD ===== */

/* Tablets */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .productos-hero {
    padding: 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .productos {
    padding: 60px 20px;
  }
  
  .productos-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .caracteristicas {
    padding: 60px 20px;
  }
  
  .caracteristicas h2 {
    font-size: 2rem;
  }
  
  .caracteristicas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .nosotros-hero {
    padding: 60px 20px;
  }
  
  .nosotros {
    padding: 60px 20px;
  }
  
  .nosotros-contenido {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .historia {
    padding: 60px 20px;
  }
  
  .historia-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    margin-left: 60px;
  }
  
  .timeline-content {
    margin-left: 20px;
    margin-right: 0;
  }
  
  .equipo {
    padding: 60px 20px;
  }
  
  .equipo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .beneficios-hero {
    padding: 60px 20px;
  }
  
  .beneficios {
    padding: 60px 20px;
  }
  
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .ventajas {
    padding: 60px 20px;
  }
  
  .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .comparacion {
    padding: 60px 20px;
  }
  
  .comparacion-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .comparacion-card.destacado {
    transform: scale(1);
  }
  
  .video-section {
    height: 400px;
  }
  
  .video-overlay h1 {
    font-size: 2rem;
  }
  
  .video-overlay p {
    font-size: 1rem;
  }
  
  .video-stats {
    gap: 20px;
  }
  
  .proceso {
    padding: 60px 20px;
  }
  
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .tecnologia {
    padding: 60px 20px;
  }
  
  .tecnologia-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .certificaciones {
    padding: 60px 20px;
  }
  
  .certificaciones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .carousel {
    height: 400px;
  }
  
  .carousel-item {
    height: 400px;
  }
  
  .carousel-item img {
    height: 400px;
  }
  
  .carousel-text h1 {
    font-size: 2rem;
  }
  
  .carousel-text p {
    font-size: 1rem;
  }
  
  .testimonios {
    padding: 60px 20px;
  }
  
  .testimonios h2 {
    font-size: 2rem;
  }
  
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta {
    padding: 60px 20px;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .prev, .next {
    padding: 12px;
    font-size: 18px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }
  
  .logo a {
    font-size: 18px;
  }
  
  .logo-icon {
    font-size: 20px;
  }
  
  .productos-hero {
    padding: 40px 15px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .productos {
    padding: 40px 15px;
  }
  
  .productos-grid {
    gap: 20px;
  }
  
  .producto-card {
    border-radius: 15px;
  }
  
  .imagen-container {
    height: 200px;
  }
  
  .producto-content {
    padding: 20px;
  }
  
  .producto-content h3 {
    font-size: 1.3rem;
  }
  
  .caracteristicas {
    padding: 40px 15px;
  }
  
  .caracteristicas h2 {
    font-size: 1.8rem;
  }
  
  .caracteristicas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .caracteristica-card {
    padding: 20px 15px;
  }
  
  .caracteristica-card i {
    font-size: 2.5rem;
  }
  
  .caracteristica-card h3 {
    font-size: 1.2rem;
  }
  
  .nosotros-hero {
    padding: 40px 15px;
  }
  
  .nosotros {
    padding: 40px 15px;
  }
  
  .nosotros h2 {
    font-size: 2rem;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .card h3 {
    font-size: 1.3rem;
  }
  
  .historia {
    padding: 40px 15px;
  }
  
  .historia h2 {
    font-size: 2rem;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-content h3 {
    font-size: 1.1rem;
  }
  
  .equipo {
    padding: 40px 15px;
  }
  
  .equipo h2 {
    font-size: 2rem;
  }
  
  .equipo-card {
    padding: 30px 20px;
  }
  
  .equipo-card h3 {
    font-size: 1.2rem;
  }
  
  .beneficios-hero {
    padding: 40px 15px;
  }
  
  .beneficios {
    padding: 40px 15px;
  }
  
  .beneficios h2 {
    font-size: 2rem;
  }
  
  .beneficio-card {
    padding: 30px 20px;
  }
  
  .beneficio-card h3 {
    font-size: 1.3rem;
  }
  
  .ventajas {
    padding: 40px 15px;
  }
  
  .ventajas h2 {
    font-size: 2rem;
  }
  
  .ventajas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ventaja-card {
    padding: 20px 15px;
  }
  
  .ventaja-card h3 {
    font-size: 1.2rem;
  }
  
  .comparacion {
    padding: 40px 15px;
  }
  
  .comparacion h2 {
    font-size: 2rem;
  }
  
  .comparacion-card {
    padding: 30px 20px;
  }
  
  .comparacion-card h3 {
    font-size: 1.3rem;
  }
  
  .video-section {
    height: 300px;
  }
  
  .video-overlay h1 {
    font-size: 1.5rem;
  }
  
  .video-overlay p {
    font-size: 0.9rem;
  }
  
  .video-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .video-overlay .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .proceso {
    padding: 40px 15px;
  }
  
  .proceso h2 {
    font-size: 2rem;
  }
  
  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .proceso-card {
    padding: 30px 20px;
  }
  
  .proceso-card h3 {
    font-size: 1.2rem;
  }
  
  .proceso-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .tecnologia {
    padding: 40px 15px;
  }
  
  .tecnologia h2 {
    font-size: 2rem;
  }
  
  .tecnologia-text h3 {
    font-size: 1.5rem;
  }
  
  .tecnologia-text ul li {
    font-size: 1rem;
  }
  
  .btn-tecnologia {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .tecnologia-video video {
    height: 200px;
  }
  
  .certificaciones {
    padding: 40px 15px;
  }
  
  .certificaciones h2 {
    font-size: 2rem;
  }
  
  .certificaciones-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .certificacion-card {
    padding: 30px 20px;
  }
  
  .certificacion-card h3 {
    font-size: 1.2rem;
  }
  
  .carousel {
    height: 300px;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .carousel-item img {
    height: 300px;
  }
  
  .carousel-text h1 {
    font-size: 1.5rem;
  }
  
  .carousel-text p {
    font-size: 0.9rem;
  }
  
  .carousel-text .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .testimonios {
    padding: 40px 15px;
  }
  
  .testimonios h2 {
    font-size: 1.8rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .cta {
    padding: 40px 15px;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .cta p {
    font-size: 1rem;
  }
  
  .btn-cta {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .footer {
    padding: 30px 15px 15px;
  }
  
  .footer-col h3,
  .footer-col h4 {
    font-size: 18px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 16px;
  }
  
  .phone-actions {
    flex-direction: column;
    gap: 5px;
  }
  
  .phone-action-btn {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .carousel-text h1 {
    font-size: 1.2rem;
  }
  
  .carousel-text p {
    font-size: 0.8rem;
  }
  
  .carousel-text .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .testimonios h2 {
    font-size: 1.5rem;
  }
  
  .cta h2 {
    font-size: 1.5rem;
  }
  
  .producto-content h3 {
    font-size: 1.2rem;
  }
  
  .caracteristicas h2 {
    font-size: 1.5rem;
  }
  
  .nosotros h2 {
    font-size: 1.8rem;
  }
  
  .historia h2 {
    font-size: 1.8rem;
  }
  
  .equipo h2 {
    font-size: 1.8rem;
  }
  
  .beneficios h2 {
    font-size: 1.8rem;
  }
  
  .ventajas h2 {
    font-size: 1.8rem;
  }
  
  .comparacion h2 {
    font-size: 1.8rem;
  }
  
  .proceso h2 {
    font-size: 1.8rem;
  }
  
  .tecnologia h2 {
    font-size: 1.8rem;
  }
  
  .certificaciones h2 {
    font-size: 1.8rem;
  }
  
  /* Media queries para beneficios */
  .beneficios-principales {
    padding: 60px 20px;
  }
  
  .beneficios-principales h2 {
    font-size: 2rem;
  }
  
  .beneficios-principales .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .ventajas-competitivas {
    padding: 60px 20px;
  }
  
  .ventajas-competitivas h2 {
    font-size: 2rem;
  }
  
  .ventajas-competitivas .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .comparacion-beneficios {
    padding: 60px 20px;
  }
  
  .comparacion-beneficios h2 {
    font-size: 2rem;
  }
  
  .comparacion-beneficios .comparacion-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .comparacion-beneficios .comparacion-card.destacado {
    transform: scale(1);
  }
  
  .testimonios-beneficios {
    padding: 60px 20px;
  }
  
  .testimonios-beneficios h2 {
    font-size: 2rem;
  }
  
  .testimonios-beneficios .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .cta-beneficios {
    padding: 60px 20px;
  }
  
  .cta-beneficios h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  .beneficios-principales {
    padding: 40px 15px;
  }
  
  .beneficios-principales h2 {
    font-size: 1.8rem;
  }
  
  .beneficios-principales .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .beneficios-principales .beneficio-card {
    padding: 30px 20px;
  }
  
  .beneficios-principales .beneficio-card h3 {
    font-size: 1.3rem;
  }
  
  .beneficio-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .ventajas-competitivas {
    padding: 40px 15px;
  }
  
  .ventajas-competitivas h2 {
    font-size: 1.8rem;
  }
  
  .ventajas-competitivas .ventajas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ventaja-item {
    padding: 20px;
  }
  
  .ventaja-content h3 {
    font-size: 1.2rem;
  }
  
  .comparacion-beneficios {
    padding: 40px 15px;
  }
  
  .comparacion-beneficios h2 {
    font-size: 1.8rem;
  }
  
  .comparacion-beneficios .comparacion-card {
    padding: 30px 20px;
  }
  
  .comparacion-header h3 {
    font-size: 1.5rem;
  }
  
  .precio {
    font-size: 1.3rem;
  }
  
  .testimonios-beneficios {
    padding: 40px 15px;
  }
  
  .testimonios-beneficios h2 {
    font-size: 1.8rem;
  }
  
  .testimonios-beneficios .testimonio-card {
    padding: 20px;
  }
  
  .testimonios-beneficios .testimonio-card p {
    font-size: 1rem;
  }
  
  .cta-beneficios {
    padding: 40px 15px;
  }
  
  .cta-beneficios h2 {
    font-size: 1.8rem;
  }
  
  .cta-beneficios p {
    font-size: 1rem;
  }
  
  .btn-cta-whatsapp,
  .btn-cta-productos {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  /* Media queries para beneficios mejorados */
  .beneficios-hero {
    padding: 60px 20px;
  }
  
  .beneficios-hero h1 {
    font-size: 2.5rem;
  }
  
  .beneficios-hero p {
    font-size: 1.1rem;
  }
  
  .beneficios-hero .hero-stats {
    gap: 30px;
  }
  
  .beneficios-main {
    padding: 60px 20px;
  }
  
  .beneficios-main h2 {
    font-size: 2.2rem;
  }
  
  .beneficios-main .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .ventajas-section {
    padding: 60px 20px;
  }
  
  .ventajas-section h2 {
    font-size: 2.2rem;
  }
  
  .ventajas-section .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .comparacion-section {
    padding: 60px 20px;
  }
  
  .comparacion-section h2 {
    font-size: 2.2rem;
  }
  
  .comparacion-section .comparacion-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .comparacion-section .comparacion-card.destacado {
    transform: scale(1);
  }
  
  .testimonios-section {
    padding: 60px 20px;
  }
  
  .testimonios-section h2 {
    font-size: 2.2rem;
  }
  
  .testimonios-section .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  .beneficios-hero {
    padding: 40px 15px;
  }
  
  .beneficios-hero h1 {
    font-size: 2rem;
  }
  
  .beneficios-hero p {
    font-size: 1rem;
  }
  
  .beneficios-hero .hero-stats {
    gap: 20px;
  }
  
  .beneficios-hero .stat i {
    font-size: 2rem;
  }
  
  .beneficios-main {
    padding: 40px 15px;
  }
  
  .beneficios-main h2 {
    font-size: 1.8rem;
  }
  
  .beneficios-main .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .beneficios-main .beneficio-card {
    padding: 30px 20px;
  }
  
  .beneficios-main .beneficio-card h3 {
    font-size: 1.3rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .ventajas-section {
    padding: 40px 15px;
  }
  
  .ventajas-section h2 {
    font-size: 1.8rem;
  }
  
  .ventajas-section .ventajas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ventaja-item {
    padding: 20px;
  }
  
  .ventaja-content h3 {
    font-size: 1.2rem;
  }
  
  .comparacion-section {
    padding: 40px 15px;
  }
  
  .comparacion-section h2 {
    font-size: 1.8rem;
  }
  
  .comparacion-section .comparacion-card {
    padding: 30px 20px;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
  }
  
  .precio {
    font-size: 1.3rem;
  }
  
  .testimonios-section {
    padding: 40px 15px;
  }
  
  .testimonios-section h2 {
    font-size: 1.8rem;
  }
  
  .testimonios-section .testimonio-card {
    padding: 20px;
  }
  
  .testimonios-section .testimonio-card p {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 40px 15px;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .btn-whatsapp,
  .btn-productos {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  /* Media queries para contacto */
  .contacto-hero {
    padding: 60px 20px;
  }
  
  .contacto-hero h1 {
    font-size: 2.5rem;
  }
  
  .contacto-hero p {
    font-size: 1.1rem;
  }
  
  .contacto-hero .hero-stats {
    gap: 30px;
  }
  
  .contacto-main {
    padding: 60px 20px;
  }
  
  .contacto-main .contacto-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contacto-info-card,
  .contacto-form-card {
    padding: 30px;
  }
  
  .contacto-info-card h2,
  .contacto-form-card h2 {
    font-size: 1.8rem;
  }
  
  .contacto-item {
    padding: 15px;
  }
  
  .contacto-content h3 {
    font-size: 1.1rem;
  }
  
  .contacto-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-whatsapp,
  .btn-call {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
  }
  
  .btn-submit {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .mapa-section {
    padding: 60px 20px;
  }
  
  .mapa-section h2 {
    font-size: 2rem;
  }
  
  .contacto-cta {
    padding: 60px 20px;
  }
  
  .contacto-cta h2 {
    font-size: 2rem;
  }
  
  .contacto-cta .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  .contacto-hero {
    padding: 40px 15px;
  }
  
  .contacto-hero h1 {
    font-size: 2rem;
  }
  
  .contacto-hero p {
    font-size: 1rem;
  }
  
  .contacto-hero .hero-stats {
    gap: 20px;
  }
  
  .contacto-hero .stat i {
    font-size: 2rem;
  }
  
  .contacto-main {
    padding: 40px 15px;
  }
  
  .contacto-info-card,
  .contacto-form-card {
    padding: 20px;
  }
  
  .contacto-info-card h2,
  .contacto-form-card h2 {
    font-size: 1.5rem;
  }
  
  .contacto-info-card > p,
  .contacto-form-card > p {
    font-size: 1rem;
  }
  
  .contacto-items {
    gap: 20px;
  }
  
  .contacto-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .contacto-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 auto 10px;
  }
  
  .contacto-content h3 {
    font-size: 1rem;
  }
  
  .contacto-content p {
    font-size: 0.9rem;
  }
  
  .contacto-actions {
    justify-content: center;
  }
  
  .btn-whatsapp,
  .btn-call {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .social-section h3 {
    font-size: 1.1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .form-group {
    gap: 6px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .btn-submit {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .mapa-section {
    padding: 40px 15px;
  }
  
  .mapa-section h2 {
    font-size: 1.8rem;
  }
  
  .mapa-section > .container > p {
    font-size: 1rem;
  }
  
  .contacto-cta {
    padding: 40px 15px;
  }
  
  .contacto-cta h2 {
    font-size: 1.8rem;
  }
  
  .contacto-cta p {
    font-size: 1rem;
  }
  
  .btn-whatsapp-cta,
  .btn-call-cta {
    padding: 12px 25px;
    font-size: 14px;
  }
}



