/* ===== Variables CSS Consolidadas ===== */
:root {
  /* Sistema de colores */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;
  
  /* Colores especiales */
  --blanco: #ffffff;
  --dorado: #ffd700;
  --black: #000000;
  
  /* Variables temáticas */
  --primary-color: var(--green-600);
  --secondary-color: var(--dorado);
  --dark-color: var(--green-900);
  --light-color: var(--green-50);
  --text-color: #333;
  --text-light: #7f8c8d;
  
  /* Efectos y medidas */
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
  

}

/* ===== Reset y Base Consolidado ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  /* Agregar espacio para el navbar fijo */
  padding-top: 100px; /* Ajustado para coincidir con la altura del navbar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ===== Componentes Reutilizables Mejorados ===== */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--blanco);
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--green-700);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--blanco);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ===== Sección Nosotros ===== */
.nosotros-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-image: url('assets/pasto.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nosotros-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.nosotros-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.nosotros-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nosotros-titulo {
  font-size: 3.2rem;
  color: var(--blanco);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: titleReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.nosotros-titulo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--dorado);
  animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.5s;
}

.nosotros-contenido {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
}

.nosotros-imagen {
  flex: 0 1 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

.nosotros-imagen img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.nosotros-imagen:hover img {
  transform: scale(1.05);
}

.nosotros-texto {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 1s;
}

.nosotros-descripcion {
  color: var(--blanco);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nosotros-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.valor-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.valor-item:nth-child(1) { animation-delay: 1.2s; }
.valor-item:nth-child(2) { animation-delay: 1.4s; }
.valor-item:nth-child(3) { animation-delay: 1.6s; }

.valor-icono {
  font-size: 2.5rem;
  color: var(--dorado);
  margin-bottom: 1rem;
}

.valor-titulo {
  color: var(--blanco);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.valor-descripcion {
  color: var(--blanco);
  font-size: 1rem;
  line-height: 1.6;
}

/* Animaciones */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .nosotros-contenido {
    flex-direction: column;
    text-align: center;
  }

  .nosotros-imagen {
    max-width: 500px;
    margin: 0 auto;
  }

  .nosotros-valores {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nosotros-section {
    padding: 60px 0;
  }

  .nosotros-titulo {
    font-size: 2.5rem;
  }

  .nosotros-valores {
    grid-template-columns: 1fr;
  }

  .valor-item {
    padding: 1.5rem;
  }
}

/* ===== Productos Section ===== */
.productos-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blanco) 0%, var(--blanco) 100%);
  position: relative;
  overflow: hidden;
}

/* Fondo con patrón */
.productos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/logo.png') repeat;
  opacity: 0.05;
  z-index: 0;
}

/* Contenedor principal */
.productos-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Encabezado de la sección */
.productos-header {
  text-align: left;
  margin-bottom: 4rem;
  max-width: 600px;
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.productos-titulo {
  font-size: 2.5rem;
  color: var(--green-900);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  animation: 
    fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s,
    floatText 3s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    var(--green-900) 0%,
    var(--dorado) 50%,
    var(--green-900) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: 
    fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s,
    shimmerText 3s linear infinite;
}

.productos-titulo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dorado) 0%,
    var(--black) 50%,
    var(--dorado) 100%
  );
  background-size: 200% auto;
  animation: shimmerText 3s linear infinite;
}

.productos-descripcion {
  color: var(--green-700);
  font-size: 1.1rem;
  margin: 0;
  animation: 
    fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s,
    pulseText 4s ease-in-out infinite;
}

/* ===== Botón Ver Más Productos ===== */
.productos-ver-mas {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ver-mas-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
  color: var(--blanco);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  min-width: 200px;
}

.ver-mas-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.6s ease;
}

.ver-mas-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  border-color: var(--dorado);
}

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

.ver-mas-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.ver-mas-btn:hover i {
  transform: translateX(3px);
}

.ver-mas-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

/* Grid de productos */
.productos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

/* Contenido de texto */
.productos-texto {
  padding-right: 2rem;
}

/* Tarjeta de producto */
.producto-card {
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Imagen del producto */
.producto-imagen {
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* Aspect ratio 4:3 */
  animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.producto-imagen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Contenido del producto */
.producto-contenido {
  padding: 1.5rem;
}

.producto-titulo {
  font-size: 1.3rem;
  color: var(--green-900);
  margin-bottom: 0.8rem;
  font-weight: 600;
  animation: floatText 3s ease-in-out infinite;
}

.producto-descripcion {
  color: var(--green-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  animation: pulseText 4s ease-in-out infinite;
}

.producto-precio {
  font-size: 1.4rem;
  color: var(--green-800);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Botón del producto */
.producto-boton {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--dorado);
  color: var(--green-900);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.producto-boton:hover {
  background: var(--green-700);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* Animaciones */
.producto-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.producto-card:nth-child(1) { animation-delay: 0.2s; }
.producto-card:nth-child(2) { animation-delay: 0.4s; }
.producto-card:nth-child(3) { animation-delay: 0.6s; }
.producto-card:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 992px) {
  .productos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .productos-texto {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .productos-section {
    padding: 60px 0;
  }
  
  .productos-titulo {
    font-size: 2rem;
  }
  
  .productos-descripcion {
    font-size: 1rem;
  }
  
  .ver-mas-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .ver-mas-btn i {
    font-size: 1.1rem;
  }
}



/* ===== Animaciones Consolidadas ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

/* ===== Responsive Design Optimizado ===== */
@media (max-width: 1200px) {
  .nosotros-content-column {
    padding: 60px;
  }
}

@media (max-width: 992px) {
  .nosotros-container {
    flex-direction: column;
  }
  
  .nosotros-photo-column {
    flex: 0 0 400px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  }
  
  .nosotros-content-column {
    max-width: 100%;
    padding: 50px;
  }
}

@media (max-width: 768px) {
  
  .nosotros-section {
    padding: 60px 0;
  }
  
  .nosotros-title {
    font-size: 2.5rem;
  }
  
  .nosotros-subtitle {
    font-size: 1.4rem;
  }
  
  .benefits-list li {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  
  .nosotros-content-column {
    padding: 40px;
  }
  
  .ubicaciones-container {
    flex-direction: column;
    align-items: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .nosotros-photo-column {
    flex: 0 0 300px;
  }
  
  .nosotros-content-column {
    padding: 30px;
  }
  
  .nosotros-title {
    font-size: 2rem;
  }
  
  .nosotros-subtitle {
    font-size: 1.2rem;
  }
  
  .benefits-list li {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .btn {
    padding: 0.6rem 1.4rem;
  }
}

/* Contenedor principal */
.about-section .row {
  display: flex;
  justify-content: space-between; /* Esto separará las columnas */
}

/* Columna izquierda */
.col-lg-6:first-child {
  order: 1; /* Asegura que esta columna va primero */
  margin-right: auto; /* Se pega a la izquierda */
}

/* Columna derecha */
.texto-productos {
  order: 2; /* Asegura que esta columna va segunda */
  margin-left: auto; /* Se pega a la derecha */
  text-align: right; /* Alineación del texto a la derecha */
  padding-left: 30px; /* Espacio entre columnas */
}

/* Para móviles */
@media (max-width: 992px) {
  .about-section .row {
    flex-direction: column;
  }
  .col-lg-6:first-child, .texto-productos {
    order: initial;
    margin: 0;
    text-align: center;
    padding-left: 0;
  }
}
/* Contenedor principal */
.about-section {
  position: relative;
}

/* Ajustes para la columna de texto */
.texto-productos {
  position: relative;
  padding-top: 60px; /* Espacio para el contenedor flotante */
}

/* Contenedor de experiencia - posición absoluta */
.about-experience {
  position: absolute;
  top: -30px; /* Lo sube por encima del texto */
  right: 20px; /* Lo coloca en el lado derecho */
  z-index: 10;
  background-color: #25D366;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.2);
  /* Mantén tus otros estilos existentes */
}

/* Ajuste para el título de productos */
.section-title {
  margin-top: 20px; /* Espacio extra para el contenedor superpuesto */
}

/* Responsive para móviles */
@media (max-width: 992px) {
  .about-experience {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 30px;
    display: block;
    width: fit-content;
    transform: none !important;
  }
  
  .about-experience:hover {
    transform: none !important;
  }
}
.about-experience {
  transform: translateY(-50%) rotate(-3deg);
  transition: all 0.3s ease;
}

.about-experience:hover {
  transform: translateY(-50%) rotate(0) scale(1.05);
  box-shadow: 0 12px 20px rgba(37, 211, 102, 0.3);
}

/* ===== About Section - Estilo Mejorado ===== */
.swiper {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== Estilo para texto del lado derecho ===== */

/* Contenedor verde para años de experiencia */
/* Contenedor verde para años de experiencia - Versión Mejorada */
.about-experience {
  background-color: #25D366; /* Color verde tipo WhatsApp */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.2);
  display: inline-block;
  position: absolute;
  top: -40px; /* Ajusta este valor para la superposición */
  right: 20px; /* Posición desde el borde derecho */
  z-index: 10;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: all 0.3s ease;
}

/* Elemento decorativo circular */
.about-experience::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Efecto hover mejorado */
.about-experience:hover {
  transform: rotate(0) scale(1.05);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

.about-experience:hover::before {
  transform: scale(1.2);
  opacity: 0.2;
}

/* Estilos para el texto dentro del contenedor */
.about-experience h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.about-experience small {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* Ajustes para responsive */
@media (max-width: 992px) {
  .about-experience {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 30px;
    display: block;
    width: fit-content;
    transform: none !important;
  }
  
  .about-experience:hover {
    transform: none !important;
  }
}
/* Estilo para número 30+ */
.about-experience h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
  line-height: 1;
}

/* Estilo para "Años de experiencia" */
.about-experience small {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
}

/* Estilo para título de sección */
.section-title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #212529;
  margin-bottom: 20px;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #25D366;
}

/* Dentro de tu layout flex (row) */
.texto-productos {
  align-self: flex-start;  /* la lleva arriba */
  margin-left: auto;       /* la empuja a la derecha */
  text-align: right;
}


/* Estilo para párrafos */
.texto-productos p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Estilo para botón */
.btn-productos {
  background-color: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-productos:hover {
  background-color: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Media queries para responsive */
@media (max-width: 768px) {
  .about-experience {
    padding: 15px;
  }
  
  .about-experience h1 {
    font-size: 3rem;
  }
  
  .about-experience small {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .about-experience {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title, .texto-productos p {
    text-align: center;
  }
  
  .btn-productos {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
  
  .ver-mas-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    gap: 0.5rem;
  }
  
  .ver-mas-btn i {
    font-size: 1rem;
  }
  
  .productos-ver-mas {
    margin-top: 2rem;
  }
}


@keyframes fadeInArrow {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


  .swiper-button-next,
.swiper-button-prev {
  color: var(--dorado); /* Puedes usar cualquier color: red, #FF6600, rgb(0,0,255), etc. */
}
.swiper-pagination-bullet {
  background-color: var(--dorado); /* o usa directamente un color: #d4af37 */
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--dorado); /* color cuando está activo */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #d4af37; /* Dorado */
  transform: scale(1.3); /* Efecto de agrandamiento */
}

.swiper-pagination-bullet-active {
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

.swiper-pagination-bullet-active {
  background: var(--dorado);
  animation: pulse 0.4s ease;
}

.swiper-button-next,
.swiper-button-prev {
  color: #FFD700; /* Color dorado */
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Animaciones mejoradas para productos */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  60% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  60% {
    transform: scale(1.02) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px) rotate(-2deg);
  }
  60% {
    transform: translateY(-5px) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

/* Aplicación de animaciones mejoradas */
.productos-header {
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.productos-titulo {
  animation: 
    fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s,
    floatText 3s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    var(--green-900) 0%,
    var(--dorado) 50%,
    var(--green-900) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: 
    fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s,
    shimmerText 3s linear infinite;
}

.productos-descripcion {
  animation: 
    fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s,
    pulseText 4s ease-in-out infinite;
}

.producto-card {
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Retrasos secuenciales mejorados */
.producto-card:nth-child(1) { animation-delay: 0.2s; }
.producto-card:nth-child(2) { animation-delay: 0.4s; }
.producto-card:nth-child(3) { animation-delay: 0.6s; }
.producto-card:nth-child(4) { animation-delay: 0.8s; }

/* Animación para imágenes de productos */
.producto-imagen {
  animation: floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animaciones continuas para el texto */
@keyframes floatText {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulseText {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmerText {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Efecto de brillo en el texto */
.productos-titulo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dorado) 0%,
    var(--black) 50%,
    var(--dorado) 100%
  );
  background-size: 200% auto;
  animation: shimmerText 3s linear infinite;
}

/* ===== Sección Ubicaciones Mejorada ===== */
.ubicaciones-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
}

.ubicaciones-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.ubicaciones-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.ubicaciones-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.ubicaciones-titulo {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--blanco);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--dorado), var(--blanco), var(--dorado));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 3s linear infinite;
}

.ubicaciones-descripcion {
  color: var(--blanco);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  line-height: 1.8;
  opacity: 0.9;
}

.ubicaciones-grid {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  padding: 1rem;
  justify-content: center;
}

.ubicacion-card {
  flex: 0 0 calc(50% - 1rem);
  min-width: 300px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  animation: floatCard 6s ease-in-out infinite;
}

.ubicacion-card:nth-child(1) {
  animation: slideInFromLeft 0.8s ease-out forwards, floatCard 6s ease-in-out infinite 0.8s;
}

.ubicacion-card:nth-child(2) {
  animation: slideInFromRight 0.8s ease-out forwards, floatCard 6s ease-in-out infinite 0.8s;
}

.ubicacion-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ubicacion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shineEffect 3s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ubicacion-card:hover::before {
  opacity: 1;
}

.ubicacion-imagen {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ubicacion-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ubicacion-card:hover .ubicacion-imagen img {
  transform: scale(1.1) rotate(2deg);
}

.ubicacion-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dorado);
  color: var(--green-900);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

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

.ubicacion-contenido {
  padding: 2rem;
  color: var(--blanco);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

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

.ubicacion-nombre {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dorado);
  position: relative;
  display: inline-block;
}

.ubicacion-nombre::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dorado);
  transition: width 0.3s ease;
}

.ubicacion-card:hover .ubicacion-nombre::after {
  width: 100%;
}

.ubicacion-detalles p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.ubicacion-card:hover .ubicacion-detalles p {
  transform: translateX(5px);
}

.ubicacion-detalles i {
  color: var(--dorado);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.ubicacion-card:hover .ubicacion-detalles i {
  transform: scale(1.2);
}

.ubicacion-acciones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.ubicacion-card:hover .ubicacion-acciones {
  opacity: 1;
}

.ubicacion-boton {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--dorado);
  color: var(--green-900);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex: 1;
  justify-content: center;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.ubicacion-boton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.ubicacion-boton:hover::before {
  left: 100%;
}

.ubicacion-boton:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ubicacion-boton.secundario {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanco);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ubicacion-boton.secundario:hover {
  background: var(--blanco);
  color: var(--green-900);
}

/* Media Queries */
@media (max-width: 992px) {
  .ubicaciones-grid {
    flex-wrap: wrap;
  }
  
  .ubicacion-card {
    flex: 0 0 100%;
  }
  
  .ubicacion-card:nth-child(1),
  .ubicacion-card:nth-child(2) {
    animation: slideInFromLeft 0.8s ease-out forwards, floatCard 6s ease-in-out infinite 0.8s;
  }
}

@media (max-width: 768px) {
  .ubicaciones-section {
    padding: 60px 0;
  }
  
  .ubicaciones-titulo {
    font-size: 2.5rem;
  }
  
  .ubicaciones-descripcion {
    font-size: 1.1rem;
  }
  
  .ubicacion-contenido {
    padding: 1.5rem;
  }
  
  .ubicacion-nombre {
    font-size: 1.3rem;
  }
}

/* Soporte para Reducción de Movimiento */
@media (prefers-reduced-motion: reduce) {
  .ubicacion-card,
  .ubicacion-imagen img,
  .ubicacion-boton {
    transition: none;
  }
  
  .ubicacion-card:hover {
    transform: none;
  }
  
  .ubicacion-imagen img:hover {
    transform: none;
  }
}

/* Soporte para Modo Oscuro */
@media (prefers-color-scheme: dark) {
  .ubicacion-contenido {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .ubicacion-nombre {
    color: var(--dorado);
  }
  
  .ubicacion-detalles p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .ubicacion-detalles i {
    color: var(--dorado);
  }
}



.ubicaciones-section .video-fondo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.ubicaciones-section > *:not(.video-fondo) {
  position: relative;
  z-index: 1;
}

/* Animaciones para las tarjetas de ubicaciones */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes shineEffect {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ===== Efectos Glass y Elementos Adicionales ===== */

/* Efecto glass general */
.glass-effect {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Animaciones para elementos con data-aos */
[data-aos] {
	opacity: 0;
	transition: all 0.6s ease;
}

[data-aos].aos-animate {
	opacity: 1;
}

[data-aos="fade-up"] {
	transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
	transform: translateY(0);
}

[data-aos="zoom-in"] {
	transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
	transform: scale(1);
}

/* Efectos de animación para elementos específicos */
.animate-header-title {
	animation: headerTitleReveal 1.5s ease-out forwards;
}

.animate-fade-in {
	animation: fadeInStagger 0.8s ease-out forwards;
}

/* Efectos de partículas y brillos */
.card-glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(255, 215, 0, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.testimonio-card:hover .card-glow {
	opacity: 1;
}






/* Animaciones adicionales */
@keyframes avatarRingRotate {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

@keyframes verificationPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

@keyframes starTwinkle {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.8;
	}
}

@keyframes statIconBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes iconGlow {
	0%, 100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

@keyframes numberCount {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes progressFill {
	0% {
		width: 0%;
	}
	100% {
		width: var(--progress-width, 100%);
	}
}

@keyframes btnPulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.5;
	}
	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

/* Efectos de línea decorativa */
.decorative-line {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 1.5rem 0;
}

.line-segment {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--dorado), #ffed4e);
	border-radius: 2px;
	animation: lineSegmentPulse 2s ease-in-out infinite;
}

.line-segment:nth-child(2) {
	animation-delay: 0.3s;
}

.line-segment:nth-child(3) {
	animation-delay: 0.6s;
}

@keyframes lineSegmentPulse {
	0%, 100% {
		transform: scaleX(1);
		opacity: 1;
	}
	50% {
		transform: scaleX(1.2);
		opacity: 0.7;
	}
}

/* Efectos de título 3D */
.text-3d {
	transform-style: preserve-3d;
	perspective: 1000px;
}

@keyframes title3D {
	0%, 100% {
		transform: rotateX(0deg) rotateY(0deg);
	}
	25% {
		transform: rotateX(2deg) rotateY(2deg);
	}
	50% {
		transform: rotateX(0deg) rotateY(0deg);
	}
	75% {
		transform: rotateX(-2deg) rotateY(-2deg);
	}
}

/* Efectos de iconos pulsantes */
.icon-pulse {
	animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

/* Efectos de sparkle */
@keyframes sparkle {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.5);
		opacity: 0.5;
	}
}

/* Efectos de badge glow */
@keyframes badgeGlow {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

/* ===== Sección de Testimonios Mejorada ===== */
.testimonios-section {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	background-image: url('assets/fondo-testimonio1.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.testimonios-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(255, 215, 0, 0.6) 20%, 
		rgba(255, 215, 0, 0.8) 50%, 
		rgba(255, 215, 0, 0.6) 80%, 
		transparent 100%);
	animation: brilloDeslizante 4s ease-in-out infinite;
	z-index: 1;
}



/* Líneas decorativas mejoradas */


.testimonios-section .container {
	position: relative;
	z-index: 2;
} 



/* Header de testimonios mejorado */
.testimonios-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 2;
}

.testimonios-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--primary-color), var(--green-500));
	color: var(--blanco);
	padding: 0.75rem 1.5rem;
	border-radius: 2rem;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.testimonios-badge::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 ease;
}

.testimonios-badge:hover::before {
	left: 100%;
}

.testimonios-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
}

.testimonios-badge i {
	font-size: 1.1rem;
	animation: pulse 2s ease-in-out infinite;
}

.testimonios-titulo {
	font-size: 3rem;
	background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	position: relative;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonios-titulo::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--green-400));
	border-radius: 2px;
}

.testimonios-subtitulo {
	font-size: 1.2rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
	position: relative;
}

/* Carrusel de testimonios */
.testimonios-carrusel {
	position: relative;
	max-width: 1000px;
	margin: 0 auto 3rem;
	overflow: hidden;
	padding: 0 4rem;
}

.testimonios-wrapper {
	display: flex;
	transition: transform 0.5s ease-in-out;
	gap: 2rem;
	width: 100%;
	will-change: transform;
}

.testimonio-card {
	flex: 0 0 calc(33.333% - 1.33rem);
	background: #faf8f3 !important; /* Fondo crema suave y cálido - forzar prioridad */
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); /* Sombra más sutil para el fondo crema */
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	opacity: 0.8;
	transform: scale(0.95);
}

.testimonio-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.testimonio-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12); /* Sombra hover más sutil para el fondo crema */
	opacity: 1;
}

/* Testimonio activo (centro) */
.testimonio-card.active {
	opacity: 1;
	transform: scale(1);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); /* Sombra activa más sutil para el fondo crema */
}

/* Header del testimonio */
.testimonio-header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.testimonio-avatar {
	position: relative;
	flex-shrink: 0;
}

.testimonio-avatar i {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid var(--primary-color);
	background: var(--primary-color);
	color: var(--blanco);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.verificado {
	position: absolute;
	bottom: -2px;
	right: -2px;
	background: var(--primary-color);
	color: var(--blanco);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
}

.testimonio-info {
	flex: 1;
}

.testimonio-info h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 0.25rem;
}

.ubicacion {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.estrellas {
	display: flex;
	gap: 0.1rem;
}

.estrella {
	color: var(--secondary-color);
	font-size: 0.9rem;
}

/* Badges */
.badge-premium,
.badge-empresa {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, var(--secondary-color), #ffb347);
	color: var(--dark-color);
	padding: 0.25rem 0.5rem;
	border-radius: 0.5rem;
	font-size: 0.7rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.badge-empresa {
	background: linear-gradient(135deg, var(--primary-color), var(--green-400));
	color: var(--blanco);
}

/* Contenido del testimonio */
blockquote {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-color);
	margin-bottom: 1.5rem;
	font-style: italic;
	position: relative;
	padding-left: 1rem;
}

blockquote::before {
	content: '"';
	position: absolute;
	left: -0.5rem;
	top: -0.5rem;
	font-size: 2rem;
	color: var(--primary-color);
	opacity: 0.3;
}

.producto-mencionado {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--primary-color);
	font-weight: 500;
}

.producto-mencionado i {
	font-size: 1rem;
}

/* Controles del carrusel mejorados */
.carrusel-controles {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 10;
}

.carrusel-btn {
	position: relative;
	background: transparent;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.btn-text {
	font-size: 0.7rem;
	font-weight: 500;
	opacity: 0;
	transform: translateY(5px);
	transition: all 0.3s ease;
}

.carrusel-btn:hover .btn-text {
	opacity: 1;
	transform: translateY(0);
}

.btn-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--blanco);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.carrusel-btn:hover .btn-bg {
	background: var(--primary-color);
	box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
	transform: scale(1.1);
}

.carrusel-btn:hover .btn-content {
	color: var(--blanco);
}

.carrusel-btn i {
	font-size: 1.3rem;
	transition: all 0.3s ease;
}

.carrusel-btn:hover i {
	transform: scale(1.2);
}

.carrusel-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: scale(0.9);
}

.carrusel-btn:disabled:hover {
	transform: scale(0.9);
}

.carrusel-btn:disabled .btn-bg {
	background: var(--blanco);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carrusel-btn:disabled .btn-content {
	color: var(--text-light);
}

/* Estilos adicionales para botones deshabilitados */
.carrusel-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: scale(0.9);
	pointer-events: none;
}

.carrusel-btn.disabled:hover {
	transform: scale(0.9);
}

.carrusel-btn.disabled .btn-bg {
	background: var(--blanco);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carrusel-btn.disabled .btn-content {
	color: var(--text-light);
}

.carrusel-btn.disabled i {
	color: var(--text-light);
	opacity: 0.6;
}

/* Indicadores mejorados */
.carrusel-indicadores {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.indicadores-wrapper {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	align-items: center;
}

.indicador {
	position: relative;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid var(--green-200);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.indicador-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green-200);
	transition: all 0.3s ease;
	transform: scale(0);
}

.indicador-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--primary-color);
	opacity: 0;
	animation: indicadorPulse 2s ease-in-out infinite;
}

.indicador.activo {
	border-color: var(--primary-color);
	transform: scale(1.2);
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.indicador.activo .indicador-dot {
	background: var(--primary-color);
	transform: scale(1);
}

.indicador.activo .indicador-pulse {
	opacity: 0.3;
}

.indicador:hover {
	border-color: var(--primary-color);
	transform: scale(1.1);
}

.indicador:hover .indicador-dot {
	background: var(--primary-color);
	transform: scale(0.8);
}

/* Contador de slides */
.slide-counter {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-light);
	background: var(--blanco);
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.current-slide {
	color: var(--primary-color);
	font-weight: 600;
}

.separator {
	color: var(--text-light);
}

.total-slides {
	color: var(--text-color);
}

/* Animación para el pulso de indicadores */
@keyframes indicadorPulse {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0.3;
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

@keyframes brilloDeslizante {
	0% {
		left: -100%;
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		left: 100%;
		opacity: 0;
	}
}

/* Botón compartir */
.testimonios-acciones {
	text-align: center;
	margin-bottom: 3rem;
}

.btn-compartir {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--primary-color);
	color: var(--blanco);
	padding: 1rem 2rem;
	border-radius: 2rem;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-compartir:hover {
	background: var(--green-700);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.btn-compartir i {
	font-size: 1.2rem;
}

/* Estadísticas */
.testimonios-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat-item {
	background: var(--blanco);
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stat-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color), var(--green-400));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: var(--blanco);
	font-size: 1.5rem;
}

.stat-numero {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-texto {
	font-size: 1rem;
	color: var(--text-color);
	margin-bottom: 0.25rem;
}

.stat-porcentaje {
	font-size: 0.9rem;
	color: var(--text-light);
	font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
	.testimonio-card {
		flex: 0 0 calc(50% - 1rem);
	}
	
	.carrusel-btn {
		width: 50px;
		height: 50px;
	}
	
	.btn-text {
		font-size: 0.6rem;
	}
	
	.indicador {
		width: 14px;
		height: 14px;
	}
	
	.indicador-dot {
		width: 5px;
		height: 5px;
	}
}

@media (max-width: 768px) {
	.testimonios-section {
		padding: 4rem 0;
	}
	
	.testimonios-titulo {
		font-size: 2.5rem;
	}
	
	.testimonios-subtitulo {
		font-size: 1.1rem;
	}
	

	
	.testimonio-card {
		flex: 0 0 100%;
		padding: 1.5rem;
	}
	
	.testimonios-wrapper {
		gap: 1rem;
	}
	
	.carrusel-btn {
		width: 45px;
		height: 45px;
	}
	
	.btn-text {
		display: none;
	}
	
	.indicador {
		width: 12px;
		height: 12px;
	}
	
	.indicador-dot {
		width: 4px;
		height: 4px;
	}
	
	.slide-counter {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}
	
	.testimonios-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.stat-item {
		padding: 1.5rem;
	}
	
	.stat-numero {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.testimonios-section {
		padding: 3rem 0;
	}
	
	.testimonios-titulo {
		font-size: 2rem;
	}
	
	.testimonios-subtitulo {
		font-size: 1rem;
	}
	
	.testimonios-badge {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}
	
	.carrusel-btn {
		width: 40px;
		height: 40px;
	}
	
	.carrusel-btn i {
		font-size: 1rem;
	}
	
	.indicadores-wrapper {
		gap: 0.5rem;
	}
	
	.indicador {
		width: 10px;
		height: 10px;
	}
	
	.indicador-dot {
		width: 3px;
		height: 3px;
	}
	
	.slide-counter {
		font-size: 0.7rem;
		padding: 0.3rem 0.6rem;
	}
	
	.testimonios-stats {
		grid-template-columns: 1fr;
	}
	
	.testimonio-header {
		flex-direction: column;
		text-align: center;
	}
	
	.badge-premium,
	.badge-empresa {
		position: static;
		margin-top: 0.5rem;
		align-self: center;
	}
}

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

.testimonio-card {
	animation: fadeInUp 0.6s ease-out;
}

.testimonio-card:nth-child(1) { animation-delay: 0.1s; }
.testimonio-card:nth-child(2) { animation-delay: 0.2s; }
.testimonio-card:nth-child(3) { animation-delay: 0.3s; }
.testimonio-card:nth-child(4) { animation-delay: 0.4s; }
.testimonio-card:nth-child(5) { animation-delay: 0.5s; }
.testimonio-card:nth-child(6) { animation-delay: 0.6s; }
.testimonio-card:nth-child(7) { animation-delay: 0.7s; }
.testimonio-card:nth-child(8) { animation-delay: 0.8s; }
.testimonio-card:nth-child(9) { animation-delay: 0.9s; }
.testimonio-card:nth-child(10) { animation-delay: 1.0s; }
.testimonio-card:nth-child(11) { animation-delay: 1.1s; }
.testimonio-card:nth-child(12) { animation-delay: 1.2s; }

/* Reducir animaciones para usuarios que lo prefieren */
@media (prefers-reduced-motion: reduce) {
	.testimonios-wrapper {
		transition: none;
	}
	
	.testimonio-card {
		animation: none;
		transition: none;
	}
	
	.carrusel-btn {
		transition: none;
	}
	
	.testimonios-badge i {
		animation: none;
	}
}

@media (max-width: 768px) {
	.testimonios-section {
		padding: 3rem 0;
	}
	
	.testimonios-titulo {
		font-size: 2.2rem;
		margin-bottom: 1rem;
	}
	
	.testimonios-subtitulo {
		font-size: 1rem;
		max-width: 90%;
	}
	
	.testimonios-carrusel {
		max-width: 100%;
		padding: 0 1rem;
		margin-bottom: 2rem;
	}
	
	.testimonio-card {
		flex: 0 0 100%;
		padding: 1.5rem;
		margin: 0 0.5rem;
		min-height: auto;
	}
	
	.testimonios-wrapper {
		gap: 0;
	}
	
	/* Mejorar navegación en móviles */
	.carrusel-controles {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		transform: none;
		margin: 2rem 0;
		justify-content: center;
		gap: 2rem;
	}
	
	.carrusel-btn {
		width: 50px;
		height: 50px;
		background: var(--primary-color);
		color: var(--blanco);
		box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
	}
	
	.carrusel-btn:hover {
		background: var(--primary-color);
		transform: scale(1.05);
		box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
	}
	
	.btn-text {
		display: none;
	}
	
	.carrusel-btn i {
		font-size: 1.2rem;
	}
	
	/* Indicadores más visibles en móviles */
	.carrusel-indicadores {
		margin-top: 1.5rem;
	}
	
	.indicadores-wrapper {
		gap: 0.5rem;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.indicador {
		width: 14px;
		height: 14px;
		border-width: 2px;
		cursor: pointer;
	}
	
	.indicador.activo {
		transform: scale(1.3);
		box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
	}
	
	.indicador-dot {
		width: 5px;
		height: 5px;
	}
	
	/* Contador de slides más visible */
	.slide-counter {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
		background: var(--primary-color);
		color: var(--blanco);
		margin-top: 1rem;
	}
	
	.current-slide {
		color: var(--blanco);
		font-weight: 700;
	}
	
	/* Estadísticas en móviles */
	.testimonios-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		margin-top: 2rem;
	}
	
	.stat-item {
		padding: 1.5rem 1rem;
	}
	
	.stat-numero {
		font-size: 2rem;
	}
	
	.stat-texto {
		font-size: 0.9rem;
	}
	
	/* Mejorar layout de tarjetas en móviles */
	.testimonio-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.testimonio-avatar {
		margin-bottom: 0.5rem;
	}
	
	.testimonio-avatar i {
		width: 70px;
		height: 70px;
		font-size: 2.2rem;
	}
	
	.testimonio-info h4 {
		font-size: 1.2rem;
		margin-bottom: 0.5rem;
	}
	
	.ubicacion {
		justify-content: center;
		margin-bottom: 0.75rem;
	}
	
	.estrellas {
		justify-content: center;
		margin-bottom: 0.5rem;
	}
	
	/* Badges reposicionados */
	.badge-premium,
	.badge-empresa {
		position: static;
		margin-top: 0.75rem;
		align-self: center;
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}
	
	/* Contenido del testimonio */
	blockquote {
		font-size: 1rem;
		line-height: 1.7;
		text-align: center;
		padding-left: 0;
		margin-bottom: 1.5rem;
	}
	
	blockquote::before {
		left: 50%;
		transform: translateX(-50%);
		top: -1rem;
	}
	
	.producto-mencionado {
		justify-content: center;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.testimonios-section {
		padding: 2.5rem 0;
	}
	
	.testimonios-titulo {
		font-size: 1.8rem;
		margin-bottom: 0.75rem;
	}
	
	.testimonios-subtitulo {
		font-size: 0.95rem;
		max-width: 95%;
	}
	
	.testimonios-badge {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
		margin-bottom: 1rem;
	}
	
	.testimonios-carrusel {
		padding: 0 0.5rem;
		margin-bottom: 1.5rem;
	}
	
	.testimonio-card {
		padding: 1.25rem;
		margin: 0 0.25rem;
	}
	
	/* Controles más pequeños pero accesibles */
	.carrusel-controles {
		margin: 1.5rem 0;
		gap: 1.5rem;
	}
	
	.carrusel-btn {
		width: 45px;
		height: 45px;
	}
	
	.carrusel-btn i {
		font-size: 1.1rem;
	}
	
	/* Indicadores más compactos */
	.indicadores-wrapper {
		gap: 0.4rem;
	}
	
	.indicador {
		width: 12px;
		height: 12px;
	}
	
	.indicador.activo {
		transform: scale(1.2);
		box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
	}
	
	.indicador-dot {
		width: 4px;
		height: 4px;
	}
	
	/* Contador más compacto */
	.slide-counter {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}
	
	/* Estadísticas en una columna */
	.testimonios-stats {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
	
	.stat-item {
		padding: 1.25rem 1rem;
	}
	
	.stat-numero {
		font-size: 1.8rem;
	}
	
	.stat-texto {
		font-size: 0.85rem;
	}
	
	/* Layout más compacto para tarjetas */
	.testimonio-header {
		gap: 0.75rem;
		margin-bottom: 1.25rem;
	}
	
	.testimonio-avatar i {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
	
	.testimonio-info h4 {
		font-size: 1.1rem;
	}
	
	.ubicacion {
		font-size: 0.85rem;
	}
	
	.estrellas {
		gap: 0.05rem;
	}
	
	.estrella {
		font-size: 0.8rem;
	}
	
	/* Badges más compactos */
	.badge-premium,
	.badge-empresa {
		font-size: 0.7rem;
		padding: 0.3rem 0.6rem;
		margin-top: 0.5rem;
	}
	
	/* Contenido más compacto */
	blockquote {
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 1.25rem;
	}
	
	.producto-mencionado {
		font-size: 0.85rem;
	}
}

/* Optimizaciones para dispositivos muy pequeños */
@media (max-width: 360px) {
	.testimonios-section {
		padding: 2rem 0;
	}
	
	.testimonios-titulo {
		font-size: 1.6rem;
	}
	
	.testimonios-subtitulo {
		font-size: 0.9rem;
	}
	
	.testimonios-badge {
		padding: 0.4rem 0.8rem;
		font-size: 0.75rem;
	}
	
	.testimonio-card {
		padding: 1rem;
		margin: 0 0.2rem;
	}
	
	.carrusel-btn {
		width: 40px;
		height: 40px;
	}
	
	.carrusel-btn i {
		font-size: 1rem;
	}
	
	.indicador {
		width: 10px;
		height: 10px;
	}
	
	.indicador-dot {
		width: 3px;
		height: 3px;
	}
	
	.slide-counter {
		font-size: 0.75rem;
		padding: 0.3rem 0.6rem;
	}
	
	.stat-item {
		padding: 1rem 0.75rem;
	}
	
	.stat-numero {
		font-size: 1.6rem;
	}
	
	.stat-texto {
		font-size: 0.8rem;
	}
	
	.testimonio-avatar i {
		width: 55px;
		height: 55px;
		font-size: 1.8rem;
	}
	
	.testimonio-info h4 {
		font-size: 1rem;
	}
	
	.ubicacion {
		font-size: 0.8rem;
	}
	
	.estrella {
		font-size: 0.75rem;
	}
	
	.badge-premium,
	.badge-empresa {
		font-size: 0.65rem;
		padding: 0.25rem 0.5rem;
	}
	
	blockquote {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	
	.producto-mencionado {
		font-size: 0.8rem;
	}
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
	.testimonios-section {
		padding: 2rem 0;
	}
	
	.testimonios-titulo {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}
	
	.testimonios-subtitulo {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}
	
	.testimonios-carrusel {
		margin-bottom: 1.5rem;
	}
	
	.carrusel-controles {
		margin: 1rem 0;
	}
	
	.testimonios-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
	
	.stat-item {
		padding: 1rem;
	}
	
	.stat-numero {
		font-size: 1.8rem;
	}
	
	.stat-texto {
		font-size: 0.8rem;
	}
}

/* Optimizaciones para dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
	.carrusel-btn {
		/* Mejorar accesibilidad táctil */
		min-height: 44px;
		min-width: 44px;
	}
	
	.indicador {
		/* Indicadores más grandes para toque */
		min-height: 16px;
		min-width: 16px;
	}
	
	.testimonio-card {
		/* Mejorar interacción táctil */
		cursor: pointer;
		-webkit-tap-highlight-color: rgba(34, 197, 94, 0.1);
	}
}

/* Optimizaciones para dispositivos con pantallas de alta densidad */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.carrusel-btn {
		/* Mejorar calidad visual en pantallas Retina */
		image-rendering: -webkit-optimize-contrast;
	}
	
	.indicador {
		/* Indicadores más nítidos */
		image-rendering: crisp-edges;
	}
}



