/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: white;
    margin-top: 80px; /* Ajusta según la altura del header */
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #111;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  .logo img {
    height: 60px;
  }
  
  .menu {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  .menu li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
  }
  .menu li a:hover {
    color: #aaff00;
  }
  
  /* Botón hamburguesa oculto por defecto */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #5b7e24;
    border-radius: 50%;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 4px;
    background-color: yellow;
    margin: 3px 0;
    border-radius: 2px;
  }

   /* Galeria */
   .container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .titulo {
    text-align: center;
    color: #66BB44;
    font-size: 2em;
    margin-bottom: 30px;
  }
  
  .galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .img-mini {
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .img-mini:hover {
    transform: scale(1.05);
  }

  .mvideo{
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .mvideo:hover{
    transform: scale(1.05);
  }
  
  .info {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .info{
    color: #181919;
  }
  
  .info ul {
    color: #181919;
    padding-left: 20px;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .modal img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    pointer-events: auto;
  }
  
  .cerrar {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }
  
  /*
  .flecha {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
    transform: translateY(-50%);
    user-select: none;
    padding: 10px;
  }
  
  .flecha.izq {
    left: 30px;
  }
  
  .flecha.der {
    right: 30px;
  }
  */
    
   /* Footer */  
  .footer {
    background-color: #181919;
    color: white;
    text-align: center;
    padding: 30px 20px;
  }
  
  .footer p {
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 20px;
  }
  
  .footer-icons a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-icons a:hover {
    color: #aaff00;
  }

  /* Botón flotante de WhatsApp */

    /* Botón flotante de WhatsApp */
/* Contenedor flotante */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Enlace estilo botón */
.whatsapp-fixed a {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-width: 52px; /* solo ícono visible por defecto */
  transition: max-width 0.4s ease, padding 0.4s ease;
  white-space: nowrap;
}

/* Ícono */
.whatsapp-fixed img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Texto oculto inicialmente */
.whatsapp-fixed span {
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

/* Al hacer hover o focus, expandir botón y mostrar texto */
.whatsapp-fixed a:hover,
.whatsapp-fixed a:focus,
.whatsapp-fixed a:active {
  max-width: 300px;
  padding-right: 15px;
}

.whatsapp-fixed a:hover span,
.whatsapp-fixed a:focus span,
.whatsapp-fixed a:active span {
  opacity: 1;
  visibility: visible;
}


  /* Responsivo */
  @media (max-width: 768px) {
    .menu {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: #111;
      display: none;
      gap: 20px;
      padding: 20px 0;
      text-align: center;
    }
    .menu.active {
      display: flex;
    }
    .menu-toggle {
      display: flex;
    }
  }

  @media (max-width: 768px) {
    .titulo {
      font-size: 1.5em;
    }
  
    .flecha {
      font-size: 40px;
      padding: 5px;
    }
  
    .cerrar {
      font-size: 30px;
    }
  
    .modal img {
      max-width: 95%;
      max-height: 70vh;
    }
  }



