/* General Styles */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f7f7;
}

/*Estilo para el menu*/
header {
  width: 100%;
}

/*Estilo para el menu*/
header {
  width: 100%;
}

  /* Estilo del botón */
  #scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    background-color: #146d12;
    /* Azul */
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    line-height: 10px;
    /* Centra el texto verticalmente */
    cursor: pointer;
    display: none;
    /* Oculto por defecto */
    transition: opacity 0.3s, transform 0.3s ease;
    border-radius: 100%;
    /* Sin bordes redondeados */
  }
  
  #scrollToTopBtn:hover {
    background-color: #053405;
    /* Azul más oscuro al pasar el mouse */
    transform: scale(1.1);
    /* Aumenta ligeramente el tamaño del botón */
  }
  
  @media (max-width: 768px) {
    #scrollToTopBtn {
      width: 45px;
      height: 45px;
      font-size: 18px;
    }
  }


/* Barra de navegación principal (menu-bar) */
.menu-bar {
  background-color: #f7f7f7;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 50px solid #0f610e;
  /* Línea azul arriba */
  position: fixed;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
  /* Ajusta el padding según sea necesario */
}

.menu-bar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.nav-links li a {
  text-decoration: none;
  font-size: 17px;
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #0f610e;
  border-bottom: 2px solid #0f610e;
}


/* Estilos específicos para el número de teléfono */
.phone-number a {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0px;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
}




/* Estilos Responsivos */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    /* Centra verticalmente el logo y las barras */
    gap: 10px;
    /* Espacio entre las barras y el logo */
  }

  .menu-toggle .bar {
    margin: 0;
    /* Asegura que las barras no tengan margen extra */
  }




  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 5;
    justify-content: center;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links .logo img {
    display: none;
    /* Oculta el logo adicional en la barra de navegación móvil */
  }

  .nav-links li a:hover {
    border-bottom: none;
  }
}



  


  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}




/*BANNER CSS*/
.hero-section {
  background-image: url('../img/periquitos.jpg');
  background-size: cover;
  background-position:50%;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-section h1 {
  font-size: 48px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #f0f5ff;
}


/*BANNER*/

.hidden {
  display: none;
}

.about-info {
  width: 100%;
  min-height: 104vh;
  padding: 50px;
  background-color: #ffffff;
  text-align: center;
}



.about-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.about-text,
.features {
  max-width: 300px;
  flex: 1;
}

.about-text h3,
.features h3 {
  color: #0f610e;
  margin-bottom: 10px;
}




/* Galería de aves */

/* Título centrado */
.centered-title-container {
  background-color: #f9f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  padding: 20px;
}

h2.services-title {
  font-size: 40px;
  color: #011304;
  position: relative;
  margin: 0;
}

h2.services-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background-color: #0eb91a;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Sección de tarjetas */
.outbound-client-section {
  background-color: #f9f7f7;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  margin: 50px auto;
  padding: 20px;
  max-width: 1200px;
}

/* Tarjeta individual */
.client-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #023218;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  width: 100%;
  max-width: 350px;
  height: 400px; /* Altura fija para uniformidad */
}

/* Efecto hover */
.client-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Contenedor de imagen con altura fija */
.image-container {
  width: 100%;
  height: 200px; /* Altura fija para todas las imágenes */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta la imagen manteniendo proporción */
  display: block;
}

/* Texto */
.client-container h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  padding: 0 15px;
}

.client-container p {
  font-size: 16px;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* Responsivo para móviles */
@media (max-width: 600px) {
  h2.services-title {
    font-size: 32px;
  }

  .client-container h3 {
    font-size: 20px;
  }

  .client-container p {
    font-size: 14px;
  }

  /* RESTABLECER comportamiento original en móviles */
  .client-container {
    height: auto; /* Tarjeta se adapta al contenido */
  }

  .image-container {
    height: auto; /* Imagen recupera su altura natural */
  }

  .image-container img {
    height: auto;
    object-fit: contain; /* Evita recorte, se ajusta al contenido */
  }
}




/*CSS del footer*/

.footer {
  background-color: #013a1b;
  color: #ffffff;
  padding: 60px 0 30px;
}

.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 0 15px 30px 15px;
  /* Ajuste para más espacio entre columnas */
}

.footer-section iframe {
  margin-left: -120px;
}

.footer-logo {
  font-size: 36px;
  /* Aumentado el tamaño de la fuente */
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-logo span {
  color: #00cc41;
}

.footer-section h4 {
  font-size: 20px;
  /* Aumentado el tamaño de la fuente */
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-section p,
.footer-section a {
  font-size: 16px;
  /* Aumentado el tamaño de la fuente */
  color: #ffffff;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 10px;
  color: #ffffff;
  transition: all 0.3s;
  overflow: hidden;
  /* Para asegurar que la imagen no se salga del borde circular */
}

.social-icon:hover {
  background-color: #ffffff;
  color: #00662e;
}

.social-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  /* Para que las imágenes se adapten al círculo sin distorsión */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}


.footer-bottom {
  background-color: #238040;
  padding: 20px 0;
  /* Aumentado el padding para bajar el texto */
  text-align: center;
  margin-top: 30px;
  /* Espacio extra para separar las secciones */
}

.footer-bottom p {
  margin: 0;
  font-size: 16px;
  /* Aumentado el tamaño de la fuente */
  color: #ffffff;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}









/* Responsive Design */
@media (max-width: 768px) {
    .menu-bar {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .chefs {
        flex-direction: column;
        align-items: center;
    }

    .product-section {
        flex-direction: column;
    }

    .product-details {
        padding: 20px;
    }

    .container {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .nav-links li a {
        font-size: 16px;
    }

    .hero-section {
        height: 300px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .about-info h2 {
        font-size: 28px;
    }

    .price {
        font-size: 36px;
    }

    .footer-logo {
        font-size: 28px;
    }
}