/* =========================
  IMPORTACIÓN DE FUENTES Y LIBRERÍAS
  ========================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); /* Importa la fuente 'Poppins' */

/* Librerías externas */
@import url(animate.min.css); /* Librería para animaciones */
@import url(normalize.css); /* Normaliza los estilos por defecto del navegador */
@import url(icomoon.css); /* Librería para iconos */
@import url(font-awesome.min.css); /* Librería para iconos de Font Awesome */
@import url(meanmenu.css); /* Librería para menús responsivos */
@import url(owl.carousel.min.css); /* Estilos para el carrusel de imágenes */
@import url(swiper.min.css); /* Estilos para el carrusel swiper */
@import url(slick.css); /* Estilos para el carrusel slick */
@import url(jquery.fancybox.min.css); /* Estilos para mostrar contenido en modales */
@import url(jquery-ui.css); /* Estilos para la interfaz de usuario */
@import url(nice-select.css); /* Estilos para selectores personalizados */

/* =========================
  RESET Y REGLAS GENERALES
  ========================= */

/* Reset general para todos los elementos y pseudo-elementos */
*, *::before, *::after { 
  box-sizing: border-box !important; /* Asegura que el padding y el borde no afecten el tamaño de los elementos */
}

/* Desplazamiento suave al hacer scroll */
html { 
  scroll-behavior: smooth; 
}

/* Estilos globales para el cuerpo de la página */
body {
  font-family: 'Poppins', 'Nunito', 'Montserrat', Arial, sans-serif; /* Establece la fuente */
  background: linear-gradient(135deg, #eafbe7 0%, #f7fdf6 100%); /* Fondo con gradiente suave */
  color: #2d2d2d; /* Color del texto */
  line-height: 1.7; /* Espaciado entre líneas */
  font-size: 15px; /* Tamaño de fuente */
  margin: 0; /* Elimina márgenes por defecto */
  padding: 0; /* Elimina padding por defecto */
  letter-spacing: 0.01em; /* Espaciado entre letras */
  padding-top: 190px; /* Padding superior para la barra de navegación */
}

/* Imágenes responsivas y redondeadas */
img {
  max-width: 100%; /* Asegura que las imágenes no se desborden */
  height: auto; /* Mantiene la proporción de la imagen */
  display: block; /* Evita el espacio debajo de las imágenes */
  border-radius: 12px; /* Bordes redondeados */
}

/* Enlaces y botones: estilos y transiciones */
a, .btn, button, .nav-link, .tarjeta-valor, .opinion-card, .stat, .faq-question, .caja-texto, .item, .glass-card {
  transition: all 0.25s cubic-bezier(.4,0,.2,1); /* Transición suave para los efectos de hover */
}

a, .btn {
  color: #3a6b1a; /* Color verde para enlaces y botones */
  text-decoration: none !important; /* Elimina subrayado de enlaces */
  outline: none !important; /* Elimina el contorno al hacer clic */
}

a:hover {
  color: #7bc043; /* Cambia el color de los enlaces al pasar el cursor */
  text-shadow: 0 2px 8px #b2f7ef44; /* Agrega una sombra suave al texto */
}

/* Estilos generales para inputs, botones y selects */
button, input, select, textarea {
  font-family: inherit; /* Hereda la fuente del body */
  outline: none !important; /* Elimina el contorno al enfocar */
  border: 0; /* Elimina el borde por defecto */
  margin: 0; /* Elimina el margen */
  padding: 0; /* Elimina el padding */
}

button {
  cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
  font-weight: 600; /* Peso de la fuente en negrita */
  font-size: 15px; /* Tamaño de la fuente */
  border-radius: 24px; /* Bordes redondeados */
  background: linear-gradient(90deg, #7bc043 0%, #f4e285 100%); /* Fondo de gradiente */
  color: #fff; /* Color blanco para el texto */
  box-shadow: 0 2px 12px #7bc04322; /* Sombra suave */
}

button:hover {
  background: linear-gradient(90deg, #f4e285 0%, #7bc043 100%); /* Invierte el gradiente al hacer hover */
  color: #3a6b1a; /* Cambia el color a verde */
}

/* Listas sin estilos */
ul, ol { 
  margin: 0; 
  padding: 0; 
  list-style: none; /* Elimina los estilos de lista */
}

/* Párrafos */
p {
  font-family: 'Poppins', sans-serif !important; /* Define la fuente para los párrafos */
  margin: 0 0 1em 0; /* Margen inferior de 1em */
  font-weight: 400; /* Peso normal */
  font-size: 15px; /* Tamaño de fuente */
  line-height: 24px; /* Espaciado entre líneas */
  color: #3a6b1a; /* Color verde para los párrafos */
}


/* =========================
  TIPOGRAFÍA Y ENCABEZADOS
  ========================= */

/* Estilo para los títulos principales */
h1, h2, h3, .section-title, .titulo-principal {
  font-family: 'Montserrat', 'Quicksand', sans-serif !important; /* Define la fuente para los encabezados */
  font-weight: 800; /* Peso de la fuente en negrita */
  letter-spacing: 0.03em; /* Espaciado entre letras */
  background: linear-gradient(90deg, #3a6b1a 0%, #7bc043 50%, #f4e285 100%); /* Fondo de gradiente */
  -webkit-background-clip: text; /* Aplica el gradiente solo al texto */
  background-clip: text; /* Aplica el gradiente solo al texto */
  -webkit-text-fill-color: transparent; /* Hace que el texto sea transparente */
  text-shadow: 0 2px 8px rgba(122, 192, 67, 0.3); /* Sombra suave para los títulos */
}

h4, h5, h6, .section-subtitle, .subtitulo-gradiente {
  font-family: 'Quicksand', 'Montserrat', sans-serif !important;
  color: #3a6b1a; /* Color verde para subtítulos */
  font-weight: 600; /* Peso de la fuente */
  letter-spacing: 0.02em; /* Espaciado entre letras */
  text-shadow: 0 1px 4px rgba(244, 226, 133, 0.3); /* Sombra suave para los subtítulos */
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.02em; /* Espaciado entre letras */
  font-weight: 800; /* Peso en negrita */
  position: relative; /* Posiciona los encabezados de forma relativa */
  padding: 0 0 8px 0; /* Espaciado en la parte inferior */
  line-height: 1.1; /* Altura de la línea */
  color: #3a6b1a; /* Color verde */
  margin: 0 0 0.7em 0; /* Márgenes inferiores */
  font-family: 'Quicksand', 'Nunito', 'Montserrat', Arial, sans-serif; /* Fuentes para los encabezados */
}

/* Estilos para cada nivel de encabezado */
h1 { font-size: 38px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 15px; }
h6 { font-size: 13px; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #7bc043; /* Color verde para los enlaces en encabezados */
  text-decoration: none !important; /* Elimina el subrayado */
  opacity: 1; /* Opacidad completa */
}

/* Barra de estilo debajo de h1 y h2 */
h1::after, h2::after {
  content: '';
  display: block;
  width: 40px; /* Ancho de la barra */
  height: 3px; /* Alto de la barra */
  background: linear-gradient(90deg, #7bc043 0%, #f4e285 100%); /* Barra con gradiente */
  border-radius: 2px; /* Bordes redondeados */
  margin: 14px auto 0; /* Margen para alinear la barra */
}

/* =========================
  UTILIDADES Y CLASES GENERALES
  ========================= */

/* Clase para asegurarse de que los elementos ocupen todo el espacio disponible */
.full { width: 100%; float: left; margin: 0; padding: 0; }

/* Relleno estándar */
.layout_padding { padding-top: 60px; padding-bottom: 60px; }
.layout_padding_2 { padding-top: 40px; padding-bottom: 40px; }
.margin_top_30 { margin-top: 24px !important; }

/* Fondo gris claro */
.light_silver { background: #f4f8f7; }

/* Fondo con gradiente verde */
.theme_bg { background: linear-gradient(90deg, #7bc043 0%, #f4e285 100%); }

/* Texto destacado */
.lead {
  font-size: 17px; 
  line-height: 28px;
  color: #7bc043; /* Verde */
  margin: 0;
  padding: 0;
}

/* Insignia de badge */
.badge {
  font-weight: 600; 
  background: #f4e285; /* Fondo amarillo */
  color: #3a6b1a; /* Color verde */
  border-radius: 8px;
  padding: 3px 10px;
}

/* Estilos para citas (blockquotes) */
blockquote {
  margin: 32px 0;
  padding: 28px;
  background: #eafbe7; /* Fondo verde claro */
  border-left: 5px solid #7bc043; /* Borde verde */
  border-radius: 8px;
  color: #3a6b1a; /* Color verde */
  font-style: italic; /* Cursiva */
}

/* =========================
  HEADER Y NAVEGACIÓN
  ========================= */

/* Barra superior */
.barra-superior {
  padding: 10px 0;
  background: linear-gradient(90deg, #7bc043 0%, #3a6b1a 100%); /* Gradiente verde */
  box-shadow: 0 2px 12px #7bc04322; /* Sombra */
  border-bottom: 2px solid #eafbe7; /* Borde inferior */
  margin-bottom: 0;
}

/* Contenedor social */
.contenedor-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Estilo para iconos sociales */
.iconos-sociales {
  display: flex;
  gap: 10px;
  margin: 0;
}

/* Estilo para los iconos dentro de las listas */
.iconos-sociales li { 
  display: inline-block; 
  margin: 0 8px; 
}

.iconos-sociales a {
  background: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 50%;
  color: #7bc043; /* Color verde */
  box-shadow: 0 2px 8px #7bc04322; /* Sombra */
}

/* Efecto hover sobre iconos sociales */
.iconos-sociales a:hover { 
  background: #f4e285; 
  color: #fff; 
  transform: scale(1.08) rotate(-6deg); /* Zoom y rotación al pasar el cursor */
}

/* Encabezado principal */
.encabezado-principal,
.navegacion-personalizada {
  margin-bottom: 0;
  background: linear-gradient(90deg, #3a6b1a 0%, #7bc043 100%) !important; /* Gradiente verde */
  border-radius: 0;
}

/* Encabezado fijo */
.encabezado-principal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Sombra */
}

/* Estilo del logo */
.logotipo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  margin-left: 0;
}

.logotipo img {
  width: 300px !important;
  height: 100px;
  max-width: 100%;
  filter: drop-shadow(0 2px 8px #7bc04322); /* Sombra en el logo */
  transition: transform 0.3s; /* Efecto de transición */
  background: none;
  border-radius: 12px;
}

.logotipo img:hover { 
  transform: scale(1.08) rotate(-2deg); /* Efecto de hover en el logo */
}

/* Menú de navegación */
.navegacion-personalizada, .navbar {
  background: linear-gradient(90deg, #3a6b1a 0%, #7bc043 100%); /* Gradiente verde */
  padding: 12px 0;
  border-radius: 0;
  margin-bottom: 0;
}

/* Enlaces del menú */
.navegacion-personalizada .nav-link, .navbar-nav .nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 14px;
}

/* Hover en enlaces del menú */
.navegacion-personalizada .nav-link:hover, .navbar-nav .nav-link:hover {
  color: #f4e285 !important;
  background: #fff2; /* Fondo transparente con sombra */
  box-shadow: 0 2px 8px #f4e28544;
}

/* Botón de contacto en el menú */
.navegacion-personalizada .btn-contact {
  background: linear-gradient(90deg, #f4e285 0%, #fff 100%);
  color: #3a6b1a;
  padding: 10px 22px;
  border-radius: 24px;
  margin-left: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px #f4e28544;
}

/* Hover en el botón de contacto */
.navegacion-personalizada .btn-contact:hover {
  background: #fff;
  color: #7bc043;
  box-shadow: 0 4px 16px #7bc04322;
}

.navbar-toggler {
  border: none;
  background: transparent;
  font-size: 26px;
  color: #fff;
}

/* Botón de login */
.login_btn {
  padding-left: 30px;
}

.login_btn a {
  background: linear-gradient(90deg, #fff 0%, #f4e285 100%);
  display: inline-block;
  padding: 10px 26px;
  border-radius: 10px;
  color: #3a6b1a !important;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 2px 8px #f4e28544;
}

.login_btn a:hover {
  color: #fff !important;
  background: #7bc043;
  box-shadow: 0 4px 16px #7bc04322;
}


/* =========================
  BANNER PRINCIPAL
  ========================= */
  /* Banner principal responsive y sin espacio debajo */

  /* Contenedor del banner ocupa todo el ancho y alto adecuado */
  .banner-completo {
    position: relative;
    width: 100%;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: 100%;
    height: 100%;
    max-height: 90vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    }

    /* El carrusel ocupa todo el espacio del banner */
    .carousel-inner,
    .carousel-item {
    height: 100%;
    min-height: 100%;
    padding-bottom: 0;
    }

    /* Imagen ocupa todo el espacio y se ve completa en pantalla grande */
    .carousel-item img {
    width: 100%;
    height: 100% !important;
    object-fit: contain; /* Cambia cover por contain para que se vea completa */
    object-position: center center;
    display: block;
    background: #eafbe7; /* Fondo para las bandas vacías */
    }

    /* Elimina espacio extra debajo del banner */
    .banner-completo + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
    }

    /* Responsive para celulares */
    @media (max-width: 900px) {
    .banner-completo {
      min-height: 48vh;
      height: 48vh;
    }
    .carousel-item img {
      object-fit: cover; /* En móvil, que llene el espacio */
    }
    }
    @media (max-width: 600px) {
    .banner-completo {
      min-height: 38vh;
      height: 38vh;
    }
    .carousel-item img {
      object-fit: cover;
      min-height: 38vh;
      max-height: 38vh;
    }
    }


/* =========================
  SECCIÓN 3 CUADROS DE IMÁGENES
  ========================= */
  .tres-cajas {
    margin-top: -40px;
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 56px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .tres-cajas .caja-texto {
    background: linear-gradient(120deg, #f7fdf6 60%, #eafbe7 100%);
    border-radius: 22px;
    box-shadow: 0 6px 32px #7bc04322, 0 1.5px 0 #3a6b1a11;
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    margin: 0 10px;
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 
      transform 0.28s cubic-bezier(.4,0,.2,1), 
      box-shadow 0.28s cubic-bezier(.4,0,.2,1), 
      border 0.2s;
    border: 2px solid #eafbe7;
    position: relative;
    text-align: center;
  }

  .tres-cajas .caja-texto:hover,
  .tres-cajas .caja-texto:focus {
    transform: translateY(-14px) scale(1.045) rotate(-1deg);
    box-shadow: 0 16px 48px #7bc04333, 0 2px 0 #f4e28533;
    border: 2px solid #7bc043;
    outline: none;
  }

  .tres-cajas .caja-texto img {
    border-radius: 16px;
    box-shadow: 0 4px 32px #7bc04322;
    width: 100%;
    max-width: 220px;
    margin-bottom: 1.2rem;
    object-fit: cover;
    aspect-ratio: 4/3;
    background: #fff;
  }

  .tres-cajas .caja-texto h3 {
    font-family: 'Montserrat', 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #3a6b1a;
    margin-bottom: 0.7rem;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #3a6b1a 0%, #7bc043 60%, #f4e285 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 4px #7bc04322;
  }

  .tres-cajas .caja-texto p {
    color: #444;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
  }

  @media (max-width: 900px) {
    .tres-cajas {
      flex-direction: column;
      gap: 22px;
      margin-top: 0;
      align-items: center;
    }
    .tres-cajas .caja-texto {
      min-width: 0;
      max-width: 98vw;
      width: 100%;
      padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .tres-cajas .caja-texto img {
      max-width: 98vw;
      aspect-ratio: 4/3;
    }
  }

  @media (max-width: 600px) {
    .tres-cajas {
      gap: 14px;
      margin-bottom: 32px;
    }
    .tres-cajas .caja-texto {
      padding: 0.7rem 0.2rem 0.7rem 0.2rem;
      border-radius: 14px;
    }
    .tres-cajas .caja-texto img {
      border-radius: 10px;
      max-width: 96vw;
      aspect-ratio: 4/3;
    }
    .tres-cajas .caja-texto h3 {
      font-size: 1rem;
    }
    .tres-cajas .caja-texto p {
      font-size: 0.97rem;
    }
  }

/* =========================
  SECCIÓN VALORES (ESTILO ELEGANTE MODIFICADO)
  ========================= */

.valores-biozono {
  background: linear-gradient(120deg, #7bc043 0%, #3a6b1a 100%);
  padding: 80px 10px 60px 10px;
  text-align: center;
  border-radius: 0 0 32px 32px;
  margin-bottom: 56px;
  position: relative;
  overflow: visible;
}
.valores-biozono .section-title,
.valores-biozono h2 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 900;
  text-shadow: 0 2px 12px #fff6, 0 1px 0 #7bc04333;
  color: #7bc043 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}
.valores-biozono .valores-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  justify-content: center;
  align-items: stretch;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

/* Tarjeta de valor más pequeña y elegante */
.tarjeta-valor {
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 28px 18px 22px 18px;
  box-shadow: 0 4px 18px #7bc04333, 0 1.5px 0 #3a6b1a22;
  margin: 0 8px 1.2rem 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  max-width: 280px;
  width: 100%;
  border: 2px solid #3a6b1a;
  border-bottom: 4px solid #7bc043;
  position: relative;
  text-align: center;
  min-height: 160px;
  user-select: none;
  transition: 
    transform 0.35s cubic-bezier(.4,0,.2,1), 
    box-shadow 0.35s cubic-bezier(.4,0,.2,1), 
    border 0.3s;
}
.tarjeta-valor:focus,
.tarjeta-valor:hover,
.tarjeta-valor.activa {
  transform: translateY(-10px) scale(1.06) rotate(-1deg);
  box-shadow: 0 12px 32px #3a6b1a44, 0 2px 0 #7bc04344;
  border: 2px solid #7bc043;
  border-bottom: 4px solid #3a6b1a;
  outline: none;
}

.tarjeta-valor .icono-valor {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a6b1a 0%, #7bc043 100%);
  color: #fff !important;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: 2px solid #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.tarjeta-valor:hover .icono-valor,
.tarjeta-valor:focus .icono-valor {
  background: linear-gradient(135deg, #7bc043 0%, #f4e285 100%);
  color: #3a6b1a !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.tarjeta-valor h3 {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(90deg, #3a6b1a 0%, #7bc043 50%, #f4e285 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 3px rgba(123, 192, 67, 0.3);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.tarjeta-valor p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* Valor expandido con animación elegante */
.tarjeta-valor .valor-expandido {
  display: none;
  margin-top: 12px;
  font-size: 0.95rem;
  color: #3a6b1a;
  line-height: 1.6;
  background: linear-gradient(90deg, #eafbe7 60%, #fff 100%);
  border-radius: 10px;
  padding: 10px 6px;
  box-shadow: 0 2px 8px #7bc04322;
  animation: fadeUp 0.7s;
}
.tarjeta-valor.activa .valor-expandido { display: block; }

.valor-expandido {
  color: #3a6b1a;
  background: #f8fff4;
  font-weight: 500;
  border-left: 4px solid #7bc043;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 2px 6px #7bc04333;
  font-size: 1rem;
  line-height: 1.7;
}

/* Efecto decorativo detrás de las tarjetas */
.valores-biozono::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 90vw;
  height: 60%;
  background: radial-gradient(circle at 50% 0%, #fff7 0%, #7bc04311 100%);
  z-index: 1;
  border-radius: 0 0 80px 80px;
  pointer-events: none;
}

/* Responsive para valores elegantes */
@media (max-width: 900px) {
  .valores-biozono .valores-grid { flex-direction: column; gap: 20px; }
  .tarjeta-valor { min-width: 0; max-width: 98vw; }
}
@media (max-width: 600px) {
  .valores-biozono { padding: 40px 2px 32px 2px; }
  .tarjeta-valor { padding: 16px 4px 10px 4px; }
  .tarjeta-valor .icono-valor { width: 34px; height: 34px; font-size: 1.1rem; }
  .valores-biozono .section-title,
  .valores-biozono h2 { font-size: 1.1rem; }
}

/* =========================
  SECCIÓN PRODUCTOS
  ========================= */

.contenido {
  max-width: 1100px;
  width: 100%;
  margin: 56px auto;
  display: flex;
  gap: 32px;
}
.mostrador .fila {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 18px;
}
.mostrador .fila .item {
  max-width: 180px;
  height: 200px;
  text-align: center;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px #7bc04322;
  transition: .3s;
  padding: 0;
}
.mostrador .fila .item:hover {
  background: #eafbe7;
  transform: scale(1.03);
  box-shadow: 0 8px 32px #7bc04344;
}
.mostrador .fila .item img {
  width: 100%;
  margin: 18px 0;
}
.mostrador .fila .item .descripcion {
  color: #7bc043;
  font-weight: bold;
  font-size: 14px;
}
.mostrador .fila .item .precio {
  color: #e27d60;
  font-weight: bold;
  font-size: 17px;
}
.seleccion {
  transition: .5s ease;
  opacity: 0;
  width: 0%;
  border: 1px solid #7bc04322;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #7bc04322;
}
.cerrar {
  position: absolute;
  top: 14px; right: 14px;
  cursor: pointer;
  font-size: 16px;
  color: #e27d60;
}
.informacion {
  padding: 14px;
}
.informacion img {
  display: block;
  margin: 18px auto;
  width: 80%;
  border-radius: 10px;
}
.informacion h2 {
  color: #7bc043;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}
.informacion p {
  font-size: 13px;
  color: #707070;
  margin-bottom: 8px;
}
.informacion .precio {
  font-size: 18px;
  font-weight: bold;
  color: #e27d60;
  margin-bottom: 8px;
  display: block;
}
.informacion .fila {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.informacion .fila label {
  display: block;
  margin-bottom: 6px;
}
.informacion .fila select {
  width: 80px;
  font-size: 14px;
  padding: 6px;
  margin-right: 16px;
  border-radius: 6px;
  border: 1px solid #7bc04322;
}
.informacion .fila button {
  height: 32px;
  border: none;
  padding: 0 10px;
  color: #fff;
  background: linear-gradient(90deg, #e27d60 0%, #f4e285 100%);
  border-radius: 18px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 2px 8px #e27d6044;
}

/* =========================
  SECCIÓN OPINIONES (TESTIMONIOS)
  ========================= */

.opiniones-section {
  background: linear-gradient(120deg, #f8f8f8 0%, #eafbe7 100%);
  padding: 60px 10px 80px 10px;
  text-align: center;
  border-radius: 32px 32px 0 0;
  margin-top: -40px;
  margin-bottom: 56px;
  box-shadow: 0 4px 32px #7bc04322;
}
.opiniones-section h2 {
  font-size: 28px;
  color: #7bc043;
  margin-bottom: 32px;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-family: 'Quicksand', 'Nunito', sans-serif;
}
.opiniones-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.opinion-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(123,192,67,0.07);
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  min-height: 220px;
  user-select: none;
}
.opinion-card:hover, .opinion-card:focus, .opinion-card.activa {
  transform: scale(1.04) translateY(-12px);
  box-shadow: 0 8px 24px rgba(123,192,67,0.13);
  border: 2px solid #7bc043;
  outline: none;
}
.opinion-card img {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 2px solid #f4e285;
  box-shadow: 0 2px 8px #7bc04322;
}
.opinion-card h4 {
  color: #3a6b1a;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}
.opinion-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}
.opinion-card .opinion-expandida {
  display: none;
  margin-top: 16px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}
.opinion-card.activa .opinion-expandida { display: block; }

/* =========================
  SECCIÓN CONTACTO
  ========================= */

.contacto-section {
  background: linear-gradient(90deg, #eafbe7 60%, #fff 100%);
  color: #3a6b1a;
  padding: 3rem 0;
  text-align: center;
  border-radius: 32px;
  box-shadow: 0 2px 16px #7bc04322;
  margin-bottom: 56px;
}
.contacto-section h2 {
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-family: 'Quicksand', 'Nunito', sans-serif;
}
.contacto-form {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(123,192,67,0.07);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.contacto-form input, .contacto-form textarea {
  border: 1px solid #eafbe7;
  border-radius: 8px;
  padding: 0.7rem;
  font-size: 1rem;
  outline: none;
  background: #f8f8f8;
  color: #3a6b1a;
}
.contacto-form input:focus, .contacto-form textarea:focus {
  border: 1.5px solid #3a6b1a;
  background: #eafbe7;
}
.contacto-form button {
  background: linear-gradient(90deg, #f4e285 60%, #fff176 100%);
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  font-weight: 600;
  color: #2d2d2d;
  font-size: 1.1rem;
  cursor: pointer;
}
.contacto-form button:hover {
  background: #3a6b1a;
  color: #fff;
}

/* =========================
  PIE DE PÁGINA (FOOTER)
  ========================= */

.footer-biozono {
  background: linear-gradient(90deg, #3a6b1a, #7bc043);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-copy {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  letter-spacing: 0.5px;
}
.footer-biozono span {
  font-weight: 700;
  color: #f4e285;
  margin-left: 6px;
}
.footer-biozono a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 600;
}
.footer-biozono a:hover { color: #f4e285; }

/* =========================
  SECCIONES ADICIONALES (Estadísticas, Aliados, FAQ, WhatsApp)
  ========================= */

/* Estadísticas */
.estadisticas-biozono {
  background: linear-gradient(90deg, #eafbe7 60%, #fff 100%);
  padding: 3rem 0 2rem 0;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 2px 12px #7bc04322;
}
.estadisticas-biozono .stat {
  margin: 12px 1.5rem;
  padding: 1.5rem 2rem;
  min-width: 180px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: inline-block;
}
.estadisticas-biozono .stat:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 24px #7bc04344;
}
.estadisticas-biozono .stat-number {
  font-size: 2.7rem;
  font-weight: bold;
  color: #7bc043;
  font-family: 'Quicksand', 'Nunito', sans-serif;
}
.estadisticas-biozono .stat-label {
  font-size: 1.1rem;
  color: #444;
}

/* Aliados */
.aliados-section {
  background: linear-gradient(90deg, #eafbe7 60%, #fff 100%);
  padding: 3rem 0 2rem 0;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 2px 12px #7bc04322;
}
.aliados-section h3 {
  color: #3a6b1a;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  margin-bottom: 1.5rem;
}
.aliados-logos img {
  height: 56px;
  margin: 0 24px 18px 24px;
  filter: grayscale(1) brightness(0.92);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.aliados-logos img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08) rotate(-2deg);
}

/* Preguntas frecuentes (FAQ) */
.faq-section {
  background: #fff;
  padding: 3rem 0;
  border-radius: 24px;
  box-shadow: 0 2px 12px #7bc04322;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-bottom: 1.5px solid #eafbe7;
  padding-bottom: 1rem;
  border-radius: 8px;
}
.faq-item.open { background: #eafbe7; }
.faq-question {
  font-weight: 600;
  cursor: pointer;
  color: #7bc043;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: "▼";
  font-size: 1rem;
  margin-left: 12px;
  color: #f4e285;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(180deg); }
.faq-question:hover { color: #f4e285; }
.faq-answer {
  display: none;
  color: #444;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeUp 0.5s;
}

/* WhatsApp flotante */
.whatsapp-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.whatsapp-item {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.whatsapp-item:hover {
  transform: scale(1.1);
}
.whatsapp-item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Gradientes de bandera aplicados al ícono */
.wp-co i, .wp-mx i, .wp-pe i {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
}
.wp-co i {
  background-image: linear-gradient(to bottom, #ffe000 33.3%, #0033a0 33.3%, #0033a0 66.6%, #ce1126 66.6%);
}
.wp-mx i {
  background-image: linear-gradient(to right, #006847 33.3%, #fff 33.3%, #fff 66.6%, #ce1126 66.6%);
}
.wp-pe i {
  background-image: linear-gradient(to right, #d91023 33.3%, #ffffff 33.3%, #ffffff 66.6%, #d91023 66.6%);
}

/* Etiquetas de país */
.wp-label {
  position: absolute;
  right: 65px;
  background: #fff;
  color: #333;
  font-weight: bold;
  padding: 2px 8px;
  font-size: 13px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Responsive WhatsApp */
@media (max-width: 600px) {
  .whatsapp-item {
    width: 48px;
    height: 48px;
  }
  .wp-label {
    font-size: 12px;
    right: 58px;
  }
}

/* =========================
  ANIMACIONES Y EFECTOS
  ========================= */

/* Animación de entrada para secciones */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px);}
  to { opacity: 1; transform: translateY(0);}
}
.section-anim { animation: fadeUp 1s cubic-bezier(.4,0,.2,1); }

/* Glass card efecto */
.glass-card {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 24px #7bc04322;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  border: 1.5px solid #eafbe7;
}

/* =========================
  RESPONSIVE DESIGN
  ========================= */

@media (max-width: 1200px) {
  .banner-completo .text-bg { width: 90vw; padding: 32px 12px; }
  .estadisticas-biozono .stat { margin: 0 1rem; padding: 1rem 1rem; }
}
@media (max-width: 900px) {
  .banner-completo .text-bg { width: 98vw; padding: 24px 6px; font-size: 1rem; }
  .tres-cajas { flex-direction: column; gap: 18px; margin-top: 0; }
  .estadisticas-biozono .stat { margin: 0 0.5rem; padding: 0.7rem 0.5rem; }
}
@media (max-width: 768px) {
  .opiniones-grid { flex-direction: column; gap: 1.2rem; }
  .estadisticas-biozono .stat { margin: 0 1rem; }
}
@media (max-width: 600px) {
  .banner-completo,
  .banner-completo .carousel-inner,
  .banner-completo .carousel-item,
  .banner-completo .carousel-item img {
   min-height: 80vh !important;
   height: 80vh !important;
   max-height: 80vh !important;
  }
  .banner-completo .text-bg { width: 98vw; padding: 16px 4px; font-size: 0.95rem; }
  .footer-biozono { font-size: 1rem; padding: 24px 0 12px 0; }
  .whatsapp-float-group { bottom: 16px; right: 16px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.5rem; }
}

/* =========================
  SCROLLBAR PERSONALIZADO
  ========================= */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #eafbe7;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3a6b1a, #7bc043);
  border-radius: 6px;
  border: 2px solid #eafbe7;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5b8f2b, #a1d97a);
}

/* =========================
  SEPARADORES Y DECORATIVOS
  ========================= */

.separador-degradado {
  height: 60px;
  background: linear-gradient(90deg, #058545, #f4cb1e, #058545);
  width: 100%;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}
@keyframes mover-degradado {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.titulo-centrado {
  text-align: center;
  margin-bottom: 20px;
}
.linea-centro {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #f4cb1e, #058545);
  border: none;
  margin: 10px auto 0 auto;
  border-radius: 4px;
}

/* =========================
  FIN DEL CSS
  ========================= */



