/* Navbar base (estilos comunes) */
.navbar_custom {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estado inicial (solo en homepage) */
.homepage .navbar_custom {
  transform: translateY(-100%);
  opacity: 0;
}

/* Estado visible */
.navbar_custom.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Para evitar parpadeo al cargar */
body {
  padding-top: 0 !important;
}

.navbar_custom.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar_logo {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

/* ===== ICONOS DEL NAVBAR ===== */
.nav-icon-custom {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  transition: filter 0.3s ease;
  margin-right: 7px;
}

/* Hover para TODOS los iconos (dropdowns y enlaces normales) */
.nav-link-custom:hover .nav-icon-custom,
.nav-item.dropdown:hover .nav-icon-custom,
.nav-item:not(.dropdown) .nav-link-custom:hover .nav-icon-custom {
  filter: brightness(0) saturate(1000%) invert(70%) sepia(90%) hue-rotate(330deg);
}

/* Versión móvil */
@media (max-width: 991.98px) {
  .nav-icon-custom {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
}

/* ===== ELEMENTOS DEL NAVBAR ===== */
#navbarContent {
  font-size: 15px;
}

.nav-link-custom {
  color: #333333 !important;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: color 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link-custom:hover {
  color: #fba92d !important;
}

/* Línea animada */
.nav-link-custom:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #fba92d;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-custom:not(.dropdown-toggle):hover::after {
  width: calc(100% - 30px);
}

/* Estilo para el contenedor flex */
.nav-item.dropdown .d-flex {
  position: relative;
  align-items: center;
}

/* Flecha dropdown estilo discreto */
.dropdown-toggle-split {
  padding: 0 8px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.dropdown-toggle-split::after {
  border-top-color: #333;
}

.nav-item.dropdown:hover .dropdown-toggle-split::after {
  border-top-color: #fba92d;
}

/* SOLUCIÓN: Hover unificado para dropdown */
.nav-item.dropdown .d-flex:hover .nav-link-custom {
  color: #fba92d !important;
}

.nav-item.dropdown .d-flex:hover .nav-link-custom::after {
  width: calc(100% - 30px);
}

/* Mantener funcionalidad hover para desktop */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ===== DROPDOWNS (SOLO DESKTOP) ===== */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu-custom {
    display: block;
  }
  
  .dropdown-menu-custom {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 0;
  }
  
  .dropdown-item-custom {
    padding: 10px 20px;
    color: #555555 !important;
    font-size: 14px;
  }
  
  .dropdown-item-custom:hover {
    background-color: #FFF5F5 !important;
    color: #fba92d !important;
  }
  
  .dropdown-item-custom i {
    margin-right: 8px;
    color: #fba92d !important;
  }
}

/* ===== VERSIÓN MÓVIL/TABLET ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
    background-color: white;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .nav-item-custom {
    margin: 10px 0;
    display: block;
  }
  
  /* Elimina las flechas dropdown */
  .dropdown-toggle::after {
    display: none !important;
  }
  
  /* Oculta los submenús */
  .dropdown-menu-custom {
    display: none !important;
  }
  
  .navbar_Contenedor {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  
  .nav-link-custom {
    display: inline-flex !important;
    padding: 12px 0 !important;
    font-size: 16px;
    justify-content: center;
    width: 100%;
  }

  .nav-icon-custom {
    width: 30px;
    height: 30px;
  }
  
  /* Simplifica los dropdowns a enlaces simples */
  .nav-item.dropdown .d-flex {
    display: block !important;
  }
  
  .dropdown-toggle-split {
    display: none !important;
  }
  
  /* Centrado de todos los elementos */
  .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Estilo para los enlaces principales */
  .nav-item.dropdown .nav-link-custom {
    justify-content: center;
    text-align: center;
    padding: 12px 0 !important;
  }
  
  /* Elimina el padding adicional en los enlaces dropdown */
  .nav-link-custom.pe-1, .nav-link-custom.ps-1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/******banner******/
  :root {
    --verde-primario: #4CAF50;
    --verde-oscuro: #388E3C;
    --verde-claro: #C8E6C9;
    --sombra: 0 4px 12px rgba(0,0,0,0.15);
}
/* Banner Presentacion ------------------------------------------------------------------------------*/

.Presentacion_banner-contenedor {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
}

/* Slider de fondo */
.Presentacion_background-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.Presentacion_slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.Presentacion_slide.active {
  opacity: 1;
}

/* Contenido del banner */
.Presentacion_banner-contenido {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  padding: 2rem;
}

/* Área izquierda con logo y slogan */
.Presentacion_contenido-izquierda {
width: 25%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start; 
height: 100%;
padding-top: 8%; /* Espacio desde la parte superior */
}

.logo-container {
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  margin-top: 2rem;

}

.Presentacion_slogan {
margin-top: 3rem; /* Espacio después del logo */
align-self: center; /* Centrado horizontal dentro del flex */
position: relative;
top: 0;
transform: translateY(0); /* Resetea cualquier transformación previa */
}

.Presentacion_slogan {
background-color: rgba(255, 255, 255, 0.15);
color: white;
padding: 2rem;
border-radius: 8px;
border: 2px solid rgba(255,255,255,0.5);
margin: 0 auto;
text-align: center;
font-size: clamp(1.2rem, 3vw, 1.8rem);
font-weight: 600;
backdrop-filter: blur(8px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
transition: opacity 0.3s ease, transform 0.3s ease; /* ¡Esta línea es crucial! si la quitan ya no sale animación*/
}

.Presentacion_slogan::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(76, 175, 80, 0.3),
rgba(56, 142, 60, 0.1)
);
transform: rotate(30deg);
z-index: -1;
}
/* Carrusel vertical derecho */
.Presentacion_vertical-carousel {
  width: 25%;
  height: 70%;
  margin-top: 90px; /* Ajusta este valor para subir más o menos */
  margin-left: auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.Presentacion_carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.Presentacion_carousel-item.active {
  opacity: 1;
  transform: translateY(0);
}

.Presentacion_carousel-item.exiting {
  opacity: 0;
  transform: translateY(-100%);
}

/* Controles del carrusel */
.Presentacion_carousel-controles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.Presentacion_control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Presentacion_control-btn.active {
  background: var(--verde-primario);
  transform: scale(1.2);
}



/* Responsive */
@media (max-width: 1366px) {
  .Presentacion_vertical-carousel {
      width: 30%;
    
  }
  .Presentacion_contenido-izquierda {
      width: 30%;
  }
  .Presentacion_banner-contenedor {
    height: 100vh;
}
.Presentacion_slogan {
  padding: 2rem;
  font-size: 1.2rem;

}
}

@media (max-width: 992px) {
  .Presentacion_vertical-carousel {
      width: 30%;
  }
  .Presentacion_contenido-izquierda {
      width: 30%;
  }
}

@media (max-width: 768px) {
  .Presentacion_banner-contenedor {
      flex-direction: column;
      height: auto;
  }
  .Presentacion_vertical-carousel {
      width: 100%;
      height: 300px;
      order: 2;
      margin-left: .2rem;
  }
  .Presentacion_contenido-izquierda {
      width: 100%;
      align-items: center;
      margin-top: 2rem;
      order: 1;
  }
  .logo-container, .Presentacion_slogan {
      margin-top: 1rem;
  }
  .Presentacion_slogan {
   padding: 2rem;
   font-size: 1.4rem;
   width: 100%;
}
}

@media (max-width: 480px) {
.Presentacion_slogan {
padding: 1rem;
font-size: 1.2rem;
line-height: 1.5;
}
}
@media (max-width: 430px) {
.Presentacion_vertical-carousel {
display: none !important;
}

/* Opcional: Ajustar el ancho del contenido restante */
.Presentacion_contenido-izquierda, 
.right-content {
width: 100% !important;
}

/* Opcional: Centrar el logo y slogan */
.Presentacion_contenido-izquierda {
align-items: center !important;
}

.right-content {
align-items: center !important;
margin-top: 20px;
}
}
/* Concentidos ------------------------------------------------------------------------------*/
.Concentidos {
    max-width: 1200px;
    margin: 7rem auto;
    padding: 2rem;
    text-align: center;
    background-image: url('/img/FondoConcentidos.webp');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    min-height: 500px;
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.Concentidos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
    z-index: 0;
}

.Concentidos_titulo {
  position: relative;
  z-index: 1;
  color: #2E7D32;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  padding-bottom: 1.2rem;
  display: inline-block;
  background: linear-gradient(90deg, rgba(76,175,80,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(76,175,80,0.1) 100%);
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.Concentidos_titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, 
            transparent 0%, 
            var(--verde-primario) 20%, 
            var(--verde-oscuro) 50%,
            var(--verde-primario) 80%,
            transparent 100%);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.Concentidos_titulo::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(76,175,80,0.3);
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.Concentidos_titulo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.Concentidos_titulo:hover::after {
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, 
            transparent 0%, 
            #FF9800 20%, 
            var(--verde-oscuro) 50%,
            #FF9800 80%,
            transparent 100%);
}

.Concentidos_titulo:hover::before {
  opacity: 1;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
}

/* Para añadir iconos de huellitas */
.Concentidos_titulo span.paw {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.8rem;
  vertical-align: middle;
  animation: float 3s ease-in-out infinite;
}

.Concentidos_titulo span.paw:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .Concentidos_titulo {
      font-size: 2rem;
      padding: 0.8rem 1.5rem;
  }
  .Concentidos_titulo span.paw {
      font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .Concentidos_titulo {
      font-size: 1.6rem;
      letter-spacing: 1px;
      padding: 0.6rem 1rem;
  }
}

.Concentidos_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Esto centra las cards horizontalmente */
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto; /* Centra el grid dentro del contenedor */
    position: relative;
    z-index: 1;
}

.Concentidos_carta {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--sombra);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 220px; /* Ancho fijo para cada card */
    height: 220px; /* Altura fija para mantener relación cuadrada */
    flex-shrink: 0; /* Evita que las cards se encojan */
}

/* El resto del CSS se mantiene igual */
.Concentidos_carta:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(76, 175, 80, 0.3);
}

.Concentidos_imagen {
    width: 100%;
    height: 100%;
}

.Concentidos_imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.Concentidos_carta:hover .category-icon img {
    transform: scale(1.05);
}

.Concentidos_carta h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.5rem;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transition: all 0.3s ease;
}

.Concentidos_carta:hover h3 {
    padding-bottom: 2rem;
    background: linear-gradient(to top, rgba(253, 112, 18, 0.952), transparent);
}

.Concentidos_titulo,
.Concentidos_carta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.Concentidos_titulo.animate__animated,
.Concentidos_carta.animate__animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .Concentidos_carta {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .Concentidos_carta {
        width: 150px;
        height: 150px;
    }
    
    .Concentidos_carta h3 {
        font-size: .9rem;
    }
}

@media (max-width: 400px) {
    .Concentidos_carta {
        width: 120px;
        height: 120px;
    }
    .Concentidos_carta h3 {
      font-size: .7rem;
  }
}


/* Estructura Grid */
.seccion-con-animacion {
  position: relative;
}

.seccion1 {
  max-width: 100%;
  margin: 2rem auto;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  min-height: 400px;
  text-align: center;
  color: #A6F879;
  isolation: isolate;
  font-weight: bold; /* Texto en negrita para mejor legibilidad */
}

/* Capa de fondo con desenfoque fuerte y oscurecimiento */
.seccion1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/img/GranjaCebada.webp');
  background-size: cover;
  background-position: center 15%;
  filter: blur(5px) brightness(0.5); /* Desenfoque fuerte + oscurecimiento al 50% */
  z-index: -1;
}

/* Capa adicional para mayor oscurecimiento */
.seccion1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Capa semitransparente adicional */
  z-index: -1;
}

.seccion1 h1, 
.seccion1 h2, 
.seccion1 h3 {
  color: #E67E22; /* Verde más suave para títulos */
  text-shadow: 
    3px 3px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;
  display: inline-block; /* Para que el borde no ocupe todo el ancho */
}

/* Estilo para párrafos */
.seccion1 p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 1rem auto;
  line-height: 1.7;
}

/* Contenido nítido */
.seccion1 > * {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Mejor legibilidad */
}

.seccion1_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.seccion1_contenido {
  padding: 1rem;
  opacity: 0; /* Inicialmente oculto */
  transform: translateX(-50px); /* Posición inicial para animación */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.seccion1_imagen {
  opacity: 0; /* Inicialmente oculto */
  transform: translateX(50px); /* Posición inicial para animación */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.seccion1_imagen img {
  width: 100%;
  height: auto;
  border-radius: 7%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Clases para animación cuando son visibles */
.seccion1_contenido.visible {
  opacity: 1;
  transform: translateX(0);
}

.seccion1_imagen.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .seccion1_grid {
    grid-template-columns: 1fr;
  }
  
  .seccion1_contenido {
    order: 1;
  }
  
  .seccion1_imagen {
    order: 2;
  }
  
  .seccion1_imagen img {
    width: 80%;
  }
}
/* Seccion1 donde se muestran 3 productos pag principal------------------------------------------------------- */
/* ESTILOS PARA PRODUCTOS DESTACADOS (página principal) */
.destacados {
  padding: 60px 0;
}

.destacados-titulo {
  font-size: 2rem;
  margin: 0 auto 2rem auto;
  color: #A6F879;
  font-weight: 800;
  text-shadow: 
    2px 2px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;
  letter-spacing: 1px;
  text-align: center;
  width: fit-content;
  padding: 0 20px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destacados-titulo::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  bottom: -5px;
  border: 3px solid #A6F879;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.7;
  width: 100%;
}

.destacados-titulo::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 4px;
  background: #A6F879;
  bottom: -12px;
  left: 10%;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(166, 248, 121, 0.5);
}

.destacados-contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  padding-bottom: 5%;
  align-items: stretch; /* Asegura misma altura */
}

.destacados-producto {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  display: flex; /* Nuevo: Flexbox para estructura */
  flex-direction: column; /* Organización vertical */
  height: 100%; /* Ocupa todo el espacio disponible */
}

.destacados-producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Estilo para el botón cuando es un enlace */
a.destacados-boton {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

/* Estilos base del botón */
a.destacados-boton,
a.destacados-boton:visited {
  background: #A6F879;
  color: rgb(0, 0, 0);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

/* Efecto hover */
a.destacados-boton:hover {
  background: #79c350;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(251, 151, 45, 0.3);
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.destacados-producto-imagen {
  height: 250px;
  overflow: hidden;
  flex-shrink: 0; /* Evita que la imagen se encoja */
}

.destacados-producto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destacados-producto:hover .destacados-producto-imagen img {
  transform: scale(1.05);
}

.destacados-producto-info {
  padding: 1.5rem;
  flex-grow: 1; /* Ocupa todo el espacio disponible */
  display: flex; /* Nuevo: Flexbox para organización */
  flex-direction: column; /* Apila elementos verticalmente */
}

.destacados-producto-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.destacados-descripcion {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1; /* Hace que la descripción ocupe el espacio disponible */
}

.destacados-precio {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fba92d;
  margin: 1rem 0;
}

.destacados-boton {
  background: #A6F879;
  color: rgb(0, 0, 0);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin-top: auto; /* Empuja el botón hacia abajo */
  align-self: center; /* Centra el botón horizontalmente */
}

.destacados-boton:hover {
  background: #79c350;

  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(251, 151, 45, 0.3);
}

/* Estilo del enlace "Ver todos los productos" */
.destacados-titulo a {
  font-size: 1rem;
  color: #000;
  font-weight: normal;
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  text-decoration: none;
  position: relative;
  text-shadow: none;
  border: none;
  background: transparent;
}

/* Subrayado animado */
.destacados-titulo a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 2px;
  left: 0;
  background-color: #000;
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 0.4s ease;
}

.destacados-titulo a:hover::after {
  transform: scaleX(0);
}

.destacados-titulo a:not(:hover)::after {
  transform: scaleX(1);
  transition-delay: 0.2s;
}

/* Responsive: Tablet (1024px) */
@media (max-width: 1024px) {
  .destacados-contenedor {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .destacados-producto:nth-child(3) {
    grid-column: span 2;
    max-width: min(500px, 100%);
    margin: 0 auto;
  }
}

/* Responsive: Móvil (768px) */
@media (max-width: 768px) {
  .destacados-titulo {
    font-size: 1.8rem;
    padding: 0 15px;
    margin-bottom: 1.5rem;
  }
  
  .destacados-contenedor {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .destacados-producto:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
    width: 100%;
  }
  
  .destacados-producto-imagen {
    height: 200px;
  }
}

/* Animaciones cuando son visibles */
.destacados-visible .destacados-titulo {
  opacity: 1;
  transform: translateY(0);
}

.destacados-visible .destacados-producto {
  opacity: 1;
  transform: translateY(0);
}

.destacados-producto:nth-child(1) {
  transition-delay: 0.2s;
}

.destacados-producto:nth-child(2) {
  transition-delay: 0.4s;
}

.destacados-producto:nth-child(3) {
  transition-delay: 0.6s;
}

/* Imagen que bajas y se ve estatica */
*{padding: 0; margin: 0; box-sizing: border-box;}
body{height: auto;}
.headerSPK {
    background: url('');
    text-align: center;
    width: 100%;
    height: 600px; /* Aumenta la altura para mostrar más imagen */
    background-size: cover; /* Asegura que la imagen cubra todo el header */
    background-attachment: fixed; /* Fija la imagen mientras se hace scroll */
    background-position: center bottom; /* Centra la imagen horizontalmente y la alinea en la parte inferior */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    position: relative; /* Permite posicionar elementos hijos con posición absoluta */
    overflow: hidden;
   
    margin-bottom: 0px;
}




/* Biotecnologia Seccion -------------------------------------------- */
/* ESTILOS GENERALES */
.biotecnologia-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa; /* Fondo de respaldo */
}

.biotecnologia-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/img/Bacterias2.0.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.biotecnologia-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* GRID AVANZADO - VERSIÓN DESKTOP */
.biotecnologia-grid {
  display: grid;
  grid-template-columns: 1fr auto; /* Texto | Imágenes */
  align-items: start; /* Evita estiramiento vertical */
  gap: 40px;
}

/* CONTENEDOR DE IMÁGENES (COLUMNA VERTICAL) */
.biotecnologia-images-column {
  display: flex;
  
  flex-direction: column;
  gap: 30px; /* Espacio entre imágenes */
}

/* CONTENIDO DE TEXTO */
.biotecnologia-content {
  background-color: rgba(255, 255, 255, 0.867);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 1;
}

.biotecnologia-titulo {
  color: #2E7D32;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 600;
  word-wrap: break-word;
}

.biotecnologia-box {
  border-left: 5px solid #4CAF50;
  padding-left: 25px;
}

.biotecnologia-contenido {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.biotecnologia-destacado {
  color: #2E7D32;
  font-weight: 600;
  background-color: rgba(76, 175, 80, 0.1);
  padding: 2px 5px;
  border-radius: 3px;
}

/* IMAGEN CIRCULAR */
.biotecnologia-image {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.biotecnologia-icon {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #4CAF50;
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.biotecnologia-icon img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  border-radius: 42%;
}


/* RESPONSIVE PARA TABLET */
@media (max-width: 992px) {
  .biotecnologia-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
  }

  .biotecnologia-images-column {
    flex-direction: row; /* Imágenes en fila horizontal */
    justify-content: center;
    gap: 20px;
  }

  .biotecnologia-content {
    padding: 50px 40px;
  }

  .biotecnologia-icon {
    width: 250px;
    height: 250px;
  }

  .biotecnologia-icon img {
    width: 220px;
    height: 220px;
  }

  .biotecnologia-box {
    border-left: none;
    border-top: 4px solid #4CAF50;
    padding-left: 0;
    padding-top: 20px;
  }

  .biotecnologia-titulo,
  .biotecnologia-contenido {
    text-align: center;
  }
}

/* RESPONSIVE PARA MÓVIL */
@media (max-width: 768px) {
  .biotecnologia-section {
    padding: 80px 0;
  }

  .biotecnologia-content {
    padding: 40px 30px;
  }

  .biotecnologia-titulo {
    font-size: 2.2rem;
  }

  .biotecnologia-icon img {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 576px) {
  .biotecnologia-section {
    padding: 60px 0;
  }

  .biotecnologia-content {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .biotecnologia-titulo {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .biotecnologia-contenido {
    font-size: 1.1rem;
  }

  .biotecnologia-icon {
    width: 200px;
    height: 200px;
  }

  .biotecnologia-icon img {
    width:170px;
    height: 170px;
  }
}

@media (max-width: 480px) {
  .biotecnologia-titulo {
    font-size: 1.6rem;
  }

  .biotecnologia-icon {
    width: 180px;
    height: 180px;
  }

  .biotecnologia-icon img {
    width:150px;
    height: 150px;
  }
  
}
@media (max-width: 400px) {
  .biotecnologia-content {
    padding: 20px 15px; /* Reduce aún más el padding */
  }

  .biotecnologia-titulo {
    font-size: 1.4rem;
  }

  .biotecnologia-contenido {
    font-size: 1rem;
  }

  .biotecnologia-icon {
    width: 160px;
    height: 160px;
  }

  .biotecnologia-icon img {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 320px) {
  .biotecnologia-content {
    padding: 15px 10px;
  }

  .biotecnologia-titulo {
    font-size: 1.2rem;
    text-align: center;
  }

  .biotecnologia-contenido {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
  }

  .biotecnologia-icon {
    width: 140px;
    height: 140px;
  }

  .biotecnologia-icon img {
    width: 110px;
    height: 110px;
  }

  .biotecnologia-images-column {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Carrusel de productos------------------------------------------------------------ */
/* Carrusel de productos------------------------------------------------------------ */
.seccionCarrusel {
  padding: 40px 20px;
  background-image: url('/img/FondoCarrusel.webp');
  background-size: cover;
  position: relative;
}

.seccionCarrusel-contenedor {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Sección animal */
.seccionCarrusel-infoAnimal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seccionCarrusel-imagenAnimal {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.8s ease;
}

/* Contenedor de productos */
.seccionCarrusel-productos {
  flex: 1;
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 15%;
}

/* Estilos de cada producto */
.seccionCarrusel-producto {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.seccionCarrusel-producto.activo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

/* Imagen del producto */
.seccionCarrusel-producto img {
  width: 100%;
  height: 110%;
  margin-bottom: 1%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.seccionCarrusel-producto:hover img {
  transform: scale(1.05);
}

/* Textos del producto */
.seccionCarrusel-producto h3 {
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 8px;
}

.seccionCarrusel-producto p {
  color: #7f8c8d;
  font-size: 0.9rem;
  max-width: 90%;
}

/* Controles del carrusel */
.seccionCarrusel-controles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.seccionCarrusel-control {
  background: #A6F879;
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.seccionCarrusel-control:hover {
  background: #8fd667;
  transform: scale(1.05);
}

/* Puntos indicadores */
.seccionCarrusel-puntos {
  display: flex;
  gap: 8px;
}

.seccionCarrusel-punto {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.seccionCarrusel-punto.activo {
  background: #A6F879;
}

/* Responsive Design */
@media (max-width: 992px) {
  .seccionCarrusel-infoAnimal {
    display: none; /* Oculta el animal en móvil/tablet */
  }
  
  .seccionCarrusel-productos {
    width: 100%;
    flex: none; /* El carrusel ocupa todo el espacio */
  }
  
  .seccionCarrusel-contenedor {
    flex-direction: column;
    gap: 25px;
  }
  
  .seccionCarrusel-productos {
    height: 280px;
  }
  
  .seccionCarrusel-producto img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .seccionCarrusel {
    padding: 30px 15px;
  }
  
  .seccionCarrusel-producto {
    padding: 12px;
  }
  
  .seccionCarrusel-producto img {
    width: 100%;
    height: 100%;
  }
  
  .seccionCarrusel-producto h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 425px) {
  .seccionCarrusel-productos {
    height: 250px;
  }
  
  .seccionCarrusel-producto img {
    width: 100%;
    height: 100%;
  }
  
  .seccionCarrusel-producto p {
    font-size: 0.85rem;
  }
  
  .seccionCarrusel-control {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .seccionCarrusel-productos {
    height: 250px;
  }
  
  .seccionCarrusel-producto img {
    width: 100%;
    height: 100%;
  }
  
  .seccionCarrusel-producto p {
    font-size: 0.85rem;
  }
  
  .seccionCarrusel-control {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}
/* Seccion informativa--------------------------------------------- */
/* FONDO CON IMAGEN */
.seccion2_informativa {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.7)),
        url('/img/VariasAves.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENEDOR GRID */
.seccion2_contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem 2rem;
    width: 100%;
    max-width: 1200px;
}

/* ELEMENTOS FLOTANTES */
.seccion2_elemento {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    padding: 1rem;
}

.seccion2_elemento:hover {
    transform: translateY(-10px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.seccion2_icono {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.seccion2_elemento:hover .seccion2_icono {
    transform: scale(1.1);
}

.seccion2_titulo {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.seccion2_texto {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 300px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .seccion2_contenedor {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem 1.5rem;
    }
    
    .seccion2_titulo {
        font-size: 1.3rem;
    }
    
    .seccion2_icono {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .seccion2_informativa {
        background-attachment: scroll;
        padding: 3rem 1rem;
    }
    
    .seccion2_contenedor {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .seccion2_elemento {
        padding: 1rem;
    }
}

/* Mapa ------------------------------------------------------------------------------- */
/* Sección completa */
#cleanGoogleMap {
  width: 100%;
  height: 400px;
  border: none;
  transition: opacity 0.3s;
}
.Visitanos_titulo-section {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.Visitanos_Ubicacion-titulo {
  font-size: 2.5rem;
  color: #FF5800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.Visitanos_Ubicacion-titulo::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #FFD700);
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.Visitanos_title-decoration {
  width: 100px;
  height: 8px;
  background: linear-gradient(90deg, #FFD700, #4CAF50);
  margin: 0 auto;
  border-radius: 4px;
  opacity: 0.7;
}

.Visitanos_location-section {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.Visitanos_location-container {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos se ajusten */
  gap: 40px;
  margin-top: 50px;
  padding-bottom: 5%;
}

/* Contacto */
.Visitanos_contact-info {
  flex: 1;
  min-width: 300px; /* Ancho mínimo para el card de contacto */
}

.map-wrapper {
  flex: 2; /* Ocupa más espacio que el contacto */
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(122, 184, 0, 0.15);
}

.google-map {
  width: 100%;
  height: 100%;
  min-height: 400px; /* Altura mínima */
  border: none;
}

/* Estilos para el card de contacto (manteniendo tus estilos originales) */
.sales-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(122, 184, 0, 0.15);
  border-left: 4px solid #7AB800;
  text-align: center;
  height: 100%;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: #7AB80020;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-svg {
  width: 24px;
  height: 24px;
  fill: #7AB800;
}

.sales-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-detail {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-label {
  color: #7AB800;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: left;
  flex: 1;
}

.detail-value {
  color: #555;
  text-align: right;
  flex: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}

.detail-value:hover {
  color: #FFA300;
}

/* Responsive: Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .Visitanos_location-container {
    gap: 30px;
  }
  
  .google-map {
    min-height: 350px;
  }
}

/* Responsive: Móvil (menos de 768px) */
@media (max-width: 768px) {
  .Visitanos_location-container {
    flex-direction: column; /* Apila los elementos verticalmente */
    gap: 30px;
  }
  
  .Visitanos_contact-info, 
  .map-wrapper {
    width: 100%;
    flex: none;
  }
  
  .google-map {
    min-height: 300px;
    order: 2; /* Mapa va después del contacto */
  }
  
  .Visitanos_contact-info {
    order: 1; /* Contacto va primero */
  }
  
  .Visitanos_Ubicacion-titulo {
    font-size: 2rem;
  }
}

/* Responsive: Móvil pequeño (menos de 480px) */
@media (max-width: 480px) {
  .sales-card {
    padding: 25px 20px;
  }
  
  .contact-detail {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .detail-value {
    text-align: left;
    margin-top: 5px;
  }
  
  .google-map {
    min-height: 250px;
  }
  
  .Visitanos_Ubicacion-titulo {
    font-size: 1.8rem;
  }
}

 /* Seccion de iconos----------------------------------------------- */
.MostrarProdUltimaSec {
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f9fa;
  background-image: url('/img/FondoIconitos.webp');
  background-repeat: repeat;
  background-size: 70%;
}

.MostrarProdUltimaSec h2 {
  color: #A6F879;
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
}

/* Grid de iconos */
.iconos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  justify-items: center;
  max-width: 700px;
  margin: auto;
  padding-top: 20px;
}

/* Enlace principal - Solución para outlines */
.item-link {
  text-decoration: none;
  display: block;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* Items - Mantenemos tus estilos */
.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Eliminamos todos los efectos de focus */
.item-link:focus,
.item-link:active,
.item-link:visited,
.item-link:hover {
  outline: none !important;
  text-decoration: none !important;
}

/* Estados visibles y hover */
.item.visible .item-content {
  opacity: 1;
  transform: translateY(0);
}

.item-link:hover .item-content {
  transform: scale(1.25);
  filter: brightness(1.2);
}

/* Distribución escalonada */
.iconos-grid a:nth-child(-n+4) .item-content {
  transform: translateX(-50px);
}

.iconos-grid a:nth-child(n+5) .item-content {
  margin-top: 40px;
  transform: translateX(50px);
}

.item img {
  width: 70px;
  height: 70px;
  filter: grayscale(0);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.item-link:hover img {
  transform: scale(1.2);
}

.item p {
  font-size: 0.85rem;
  color: #A6F879;
  font-weight: bold;
  text-shadow: 
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
  transition: transform 0.3s ease;
}

.item-link:hover p {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 600px) {
  .iconos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .iconos-grid a .item-content,
  .iconos-grid a:nth-child(-n+4) .item-content,
  .iconos-grid a:nth-child(n+5) .item-content {
    transform: none !important;
    margin-top: 0 !important;
  }
}

/* =====Seccion para Mascotas------------------------------------------------ */
.contenedor-mascotas {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 7%;
    padding-bottom: 3%;
    max-width: 77%;
    margin: 0 auto;
    gap: 60px;
}

/* ===== TARJETAS DE MASCOTAS ===== */
.mascota {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 0 1 400px;
    position: relative;
}

/* Nuevo contenedor para el enlace */
.mascota-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Estilos para la imagen */
.mascota-imagen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

/* Estilos para el texto */
.mascota-titulo {
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
    color: #333;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
}

/* ===== EFECTOS HOVER ===== */
.mascota:hover {
    transform: scale(1.05);
}

.mascota:hover .mascota-imagen {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.mascota:hover .mascota-titulo {
    color: #fba92d;
    transform: scale(1.1);
}

/* Efecto al hacer clic */
.mascota-link:active .mascota-imagen {
    transform: translateY(-5px) scale(0.98);
}

.mascota-link:active .mascota-titulo {
    transform: scale(1.05);
}

/* ===== VERSIÓN MÓVIL ===== */
@media (max-width: 991.98px) {
    .pagina-mascotas .main-content {
        padding-top: 80px;
    }
    
    .contenedor-mascotas {
        flex-direction:column;
        gap: 7%;
        padding: 30px 20px;
    }
    
    .mascota {
        flex: 0 1 auto;
        width: 50%;
        max-width: 40%;
    }
    
    .mascota-imagen {
        height: 100%;
    }
    
    .mascota-titulo {
        font-size: 24px;
    }
}

/* ===== ANIMACIÓN DE APARICIÓN ===== */
@keyframes aparecer-mascotas {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mascota {
    animation: aparecer-mascotas 0.8s ease-out forwards;
    opacity: 0;
}

/* Retraso escalonado para cada mascota */
.mascota:nth-child(1) {
    animation-delay: 0.2s;
}
.mascota:nth-child(2) {
    animation-delay: 0.4s;
}
.mascota:nth-child(3) {
    animation-delay: 0.6s;
}
  /*Estilo para la pagina de producto--------------------------------- */
   :root {
    --naranja: #FF6B00;
    --verde-primario: #4CAF50;
    --verde-oscuro: #2E7D32;
    --dorado: #FFD700;
    --gris-oscuro: #333;
    --gris-claro: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


.Producto {
  max-width: 900px;
  width: 100%;
  margin: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  top: -30px;
  margin-top: 170px; /* Compensa la altura del ::before */
}


.Producto_header {
    text-align: center;
    padding: 20px;
    width: 100%;
    background: linear-gradient(135deg, var(--naranja), var(--dorado));
    color: white;
}

.Producto_titulo {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 5px;
    color: white;
}



.Producto_subtitulo {
    font-size: 1.5rem;
    font-weight: 300;
}

.Producto_contenido {
    display: flex;
    width: 100%;
    padding: 30px;
    gap: 30px;
}

.Producto_galeria {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Producto_imagen {
    width: 100%;
    height: 350px;
    background-color: #eee;
    background-image: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&h=350&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.Producto_imagen:hover {
    transform: scale(1.02);
}

.Producto_miniaturas {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.Producto_miniatura {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
}

.Producto_miniatura:hover {
    border-color: var(--naranja);
    transform: translateY(-5px);
}

.Producto_miniatura--activa {
    border-color: var(--verde-primario);
    transform: scale(1.1);
}

.Producto_detalles {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Producto_precio {
    font-size: 2.5rem;
    color: var(--naranja);
    margin: 20px 0;
    font-weight: bold;
}

.Producto_descripcion {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.Producto_caracteristicas {
    margin-bottom: 30px;
}

.Producto_caracteristica {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.Producto_icono {
    color: var(--verde-primario);
    margin-right: 10px;
    font-size: 1.2rem;
}

.Producto_boton {
    display: inline-block;
    background: linear-gradient(to right, var(--naranja), var(--dorado));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    margin-top: 20px;
}

.Producto_boton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
    .Producto_contenido {
        flex-direction: column;
        padding: 20px;
    }
    
    .Producto_galeria, .Producto_detalles {
        width: 100%;
    }
    
    .Producto_titulo {
        font-size: 2.2rem;
    }
} 
/* ESTILO PARA LA SECCION DE CATALOGO----------------------------------- */
.Catalogo_seccion {
    margin-bottom: 60px;
    padding-top: 7%;
    opacity: 0; /* Inicialmente oculto para la animación */
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.Catalogo_seccion.Catalogo_visible {
    opacity: 1;
    transform: translateY(0);
}

/* ENCABEZADO DE SECCIÓN */
.Catalogo_encabezado-seccion {
    text-align: center;
    padding: 100px 20px 40px;
    background-color: #1C4632;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.Catalogo_encabezado-seccion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28,70,50,0.8) 0%, rgba(166,248,121,0.2) 100%);
    z-index: 0;
}

.Catalogo_encabezado-seccion h1 {
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
}

.Catalogo_encabezado-seccion h2 {
    font-size: 2rem;
    margin: 10px 0 0;
    color: #A6F879;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    will-change: transform, opacity;
}

/* ANIMACIONES ACTIVAS */
.Catalogo_visible .Catalogo_encabezado-seccion h1,
.Catalogo_visible .Catalogo_encabezado-seccion h2 {
    opacity: 1;
    transform: translateY(0);
}

/* SUBCATEGORÍAS */
.subcategoria {
    grid-column: 1 / -1;
    margin-top: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.2s;
    will-change: transform, opacity;
}

.subcategoria h3 {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.Catalogo_visible .subcategoria {
    opacity: 1;
    transform: translateY(0);
}

/* CONTENEDOR DE PRODUCTOS */
.Catalogo_contenedor-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    align-items: stretch;
}

/* TARJETA DE PRODUCTO */
.Catalogo_producto {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    will-change: transform, opacity;
}

/* ANIMACIÓN PRODUCTOS VISIBLES */
.Catalogo_visible .Catalogo_producto {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGEN DEL PRODUCTO */
.Catalogo_producto-imagen {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.Catalogo_producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* INFO DEL PRODUCTO */
.Catalogo_producto-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.Catalogo_producto-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    min-height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.Catalogo_descripcion {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 10px;
    text-align: center;
    justify-content: center;
}

/* BOTÓN */
.Catalogo_boton-comprar {
    background: #A6F879;
    color: #1C4632;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    display: inline-block;
    margin: 10px auto 0;
    flex-shrink: 0;
}

/* EFECTOS HOVER */
.Catalogo_producto:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.Catalogo_producto:hover .Catalogo_producto-imagen img {
    transform: scale(1.1);
}

.Catalogo_boton-comprar:hover {
    background: #79c350;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(121, 195, 80, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .Catalogo_contenedor-productos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .Catalogo_encabezado-seccion h1 {
        font-size: 2.2rem;
    }
    
    .Catalogo_encabezado-seccion h2 {
        font-size: 1.8rem;
    }
    
    .subcategoria h3 {
        font-size: 1.3rem;
    }
    
    .Catalogo_producto-info h3 {
        min-height: 3em;
    }
}

@media (max-width: 768px) {
    .Catalogo_seccion {
        margin-top: -20px;
        padding-top: 15%;
    }
    
    .Catalogo_encabezado-seccion {
        padding: 80px 20px 30px;
    }
    
    .Catalogo_encabezado-seccion h1 {
        font-size: 1.8rem;
        transition-delay: 0.1s !important;
    }
    
    .Catalogo_encabezado-seccion h2 {
        font-size: 1.5rem;
        transition-delay: 0.2s !important;
    }
    
    .subcategoria h3 {
        font-size: 1.3rem;
        transition-delay: 0.3s !important;
    }
    
    .Catalogo_contenedor-productos {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
    
    .Catalogo_producto {
        transition-delay: 0.4s !important;
    }
    
    .Catalogo_producto-imagen {
        height: 220px;
    }
    
    .Catalogo_producto-info h3 {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .Catalogo_seccion {
        padding-top: 20%;
    }
    
    .Catalogo_encabezado-seccion {
        padding: 70px 15px;
    }
    
    .Catalogo_encabezado-seccion h1 {
        font-size: 1.6rem;
    }
    
    .Catalogo_encabezado-seccion h2 {
        font-size: 1.3rem;
    }
    
    .subcategoria h3 {
        font-size: 1.2rem;
    }
    
    .Catalogo_contenedor-productos {
        padding: 0 15px 40px;
        gap: 20px;
    }
    
    .Catalogo_producto-info {
        padding: 15px;
    }
    
    .Catalogo_boton-comprar {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/*Pagina de Gallo---------------------------------------------------------*/
/* BANNER FULLSCREEN GALLOS */
.gallos-hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 6%;
    overflow: hidden;
    box-sizing: border-box;
    
}

.gallos-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallos-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.gallos-hero-slide.active {
    opacity: 1;
}

/* CONTENIDO INFERIOR IZQUIERDO */
.gallos-hero-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    max-width: 600px;
    backdrop-filter: blur(5px);
    border-left: 5px solid #fba92d;
    color: white;
    position: absolute;
    left: 5%;
    bottom: 10%;
    transform: none;
    margin: 0;
    width: 90%;
}

.gallos-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fba92d;
    text-transform: uppercase;
}

.gallos-hero-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallos-hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* CONTROLES DEL SLIDER - CÍRCULOS GRANDES Y NARANJAS */
.gallos-hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.gallos-hero-control {
    width: 20px;                   /* Tamaño aumentado */
    height: 20px;                  /* Tamaño aumentado */
    border-radius: 50%;
    border: 2px solid #fba92d;     /* Borde naranja */
    background-color: transparent;
    cursor: default;
    pointer-events: none;
    padding: 0;
    transition: all 0.3s ease;
}

.gallos-hero-control.active {
    background-color: #fba92d;      /* Relleno naranja cuando está activo */
    transform: scale(1.1);         /* Efecto de escala */
}


/* RESPONSIVE */
@media (max-width: 1200px) {
    .gallos-hero-content {
        max-width: 500px;
        padding: 25px;
    }
    .gallos-hero-content h1 {
        font-size: 2.5rem;
    }
    .gallos-hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .gallos-hero-content {
        left: 3%;
        bottom: 8%;
        width: 94%;
    }
}

@media (max-width: 768px) {
    .gallos-hero-fullscreen {
        height: 100vh;
    }
    .gallos-hero-content {
        padding: 20px;
        left: 2%;
        bottom: 5%;
        width: 96%;
    }
    .gallos-hero-content h1 {
        font-size: 2rem;
    }
    .gallos-hero-content h2 {
        font-size: 1.5rem;
    }
    .gallos-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallos-hero-content {
        max-width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border-left: none;
        border-top: 5px solid #fba92d;
    }
    .gallos-hero-content h1 {
        font-size: 1.8rem;
    }
    .gallos-hero-controls {
        bottom: 15px;
    }
}

@media (max-height: 600px) {
    .gallos-hero-fullscreen {
        height: 120vh;
    }
    .gallos-hero-content {
        bottom: 5%;
    }
}

/* ===== ESTILOS PARA POLÍTICA DE COOKIES ===== */
.cookie-policy {

  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  padding-top: 5%;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookie-policy h1 {
  color: #2c3e50;
  text-align: center;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.cookie-policy h2 {
  color: #e74c3c;
  margin: 25px 0 15px;
  font-size: 1.5rem;
}

.cookie-policy p {
  margin-bottom: 15px;
  text-align: justify;
}

.cookie-policy ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.cookie-policy li {
  margin-bottom: 8px;
}

.cookie-policy a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

.cookie-policy a:hover {
  text-decoration: underline;
}

.cookie-policy-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #7f8c8d;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-policy {
    padding: 15px;
    margin: 20px 15px;
  }
}
/*COOKIES------------------------------------------------------------*/
#cookie-alert {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 15px;
  z-index: 99999;
  display: none; /* Inicialmente oculto */
  justify-content: center;
  transition: bottom 0.5s ease-out, opacity 0.3s ease;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

#cookie-alert.show {
  bottom: 0;
}

.cookie-alert-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 15px;
}

#cookie-alert p {
  margin: 0;
  flex: 1;
  min-width: 260px;
  font-size: 15px;
  line-height: 1.5;
}

#cookie-accept {

  background:   #58c11f;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

#cookie-accept:hover {
  background: #7bd24d;
  transform: translateY(-2px);
}

.cookie-alert-link {
  color: #f39c12;
  text-decoration: underline;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-alert-content {
    flex-direction: column;
    text-align: center;
  }
  
  #cookie-accept {
    width: 100%;
    margin-top: 10px;
  }
}
/*Terminos y condiciones---------------------------------*/
/* ===== ESTILOS PARA TÉRMINOS Y CONDICIONES ===== */
    .legal-section {
      
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f9f9f9;
      padding: 20px 0;
    }
    
    .legal-container {
    
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .legal-title {
        padding-top: 10%;
      color: #2c3e50;
      text-align: center;
      border-bottom: 2px solid #e74c3c;
      padding-bottom: 10px;
      margin-bottom: 30px;
      font-size: 28px;
    }
    .legal-subtitle{
      
      color: #2c3e50;
      text-align: center;
   
      padding-bottom: 10px;
      margin-bottom: 30px;
      font-size: 28px;
    }
    .legal-content {
      padding: 0 10px;
    }
    
    .legal-content h2 {
      color: #e74c3c;
      margin: 25px 0 15px;
      font-size: 1.5rem;
    }
    
    .legal-content p {
      margin-bottom: 15px;
      text-align: justify;
    }
    
    .legal-content ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
    
    .legal-content li {
      margin-bottom: 8px;
    }
    
    .legal-content a {
      color: #3498db;
      text-decoration: none;
      font-weight: bold;
    }
    
    .legal-content a:hover {
      text-decoration: underline;
    }
    
    .legal-content em {
      color: #7f8c8d;
      font-style: italic;
      display: block;
      margin-bottom: 20px;
    }
    
    .legal-content strong {
      color: #2c3e50;
    }

    
    /* Responsive */
    @media (max-width: 768px) {
      .legal-container {
        padding: 15px;
        margin: 0 15px;
      }
      
      .legal-title {
        font-size: 24px;
      }
    }
  /* footer--------------------------------------------*/

  .site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-brand {
    margin-bottom: 30px;
  }
  
  .footer-logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    color: #ecf0f1;
    background-color: #7AB800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #FFA300;
    transform: translateY(-3px);
  }
  
  .footer-title {
    color: #7AB800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #FFA300;
  }
  
  .footer-links ul, .contact-info {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li, .contact-info li {
    margin-bottom: 12px;
  }
  
  .footer-links a, .contact-info a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover, .contact-info a:hover {
    color: #FFA300;
  }
  
  .contact-info i {
    color: #7AB800;
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #34495e;
    color: #ecf0f1;
  }
  
  .newsletter-form button {
    background-color: #7AB800;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .newsletter-form button:hover {
    background-color: #FFA300;
  }
  
  .footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
  }
  
  .footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .legal-links {
    margin-top: 10px;
  }
  
  .legal-links a {
    color: #7AB800;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.8rem;
    transition: color 0.3s;
  }
  
  .legal-links a:hover {
    color: #FFA300;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
    
    .footer-brand {
      text-align: center;
    }
    
    .social-links {
      justify-content: center;
    }
    
    .footer-title {
      text-align: center;
    }
    
    .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }