* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /*-- Fonts Gabriola --*/
  @font-face {
    font-family: "Gabriola";
    src: url("Fonts/Gabriola.ttf") format("truetype");
    /* Agrega otros formatos de fuente según sea necesario (woff, woff2, etc.) */
  }
  
  /*-- Link de Google fonts --*/
  @import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@500&display=swap");
  
  :root {
    /*-- Colores azul turquesa --*/
    --azul-primario: rgb(57, 194, 201);
    --azul-Secundario: rgb(5, 79, 79);
    --azul-brillante: rgb(175, 251, 255);
  
    /*-- Colores alternativos --*/
    --clr-dorado: rgb(198, 156, 109);
    --clr-naranja: rgb(255, 145, 0);
    --clr-claro: rgb(215, 215, 215);
    --clr-oscuro: rgb(30, 30, 30);
  
    /*-- Fonts --*/
    --ff-primario: "Georgia", cursive;
    --ff-titles: "Bebas Neue", sans-serif;
    --ff-Secundary: "Gabriola", serif;
  }
  
  body {
    font-family: var(--ff-primario);
    background-color: var(--clr-oscuro);
  }

  nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--azul-Secundario); /* fondo oscuro */
  color: white;
  font-family: var(--ff-titles);
  position: relative;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Logo */
.Logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: white;
  font-size: 2rem;
  font-family: var(--ff-Secundary);
  letter-spacing: 3px;
}

.Logo img {
  height: 40px;
}

/* Menú principal */
.menu {
  display: flex;
  gap: 2rem;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  gap: 2rem;
  letter-spacing: 2.5px;
}

.menu a:hover {
  color: var(--azul-primario);
}

/* Submenús */
.submenu-container {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: var(--clr-oscuro);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  display: none;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  min-width: 180px; 
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.submenu a {
  color: var(--clr-oscuro);
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-decoration: none;
}

.submenu a:hover {
  background-color: var(--azul-brillante);
  color: var(--azul-Secundario);
}

/* Desktop: mostrar al pasar mouse */
.submenu-container:hover .submenu {
  display: flex;
  opacity: 1;
  max-height: 500px;
}

/* Icono hamburguesa móvil */
.icon {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 100%;
    padding: 1rem;
    display: none;
    gap: 1rem;
    z-index: 1000;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    color: var(--clr-oscuro);
  }

  .submenu {
    position: static;
    background-color: var(--clr-claro);
    box-shadow: none;
    padding-left: 1rem;
    display: none;
    opacity: 0;
    max-height: 0;
  }

  .submenu-container.open .submenu {
    display: flex;
    opacity: 1;
    max-height: 500px;
  }

  .icon {
    display: block;
  }

  .submenu-toggle::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.3rem;
    color: var(--azul-primario);
  }
}

/* - Sección Footer - */
    footer {
      background-color: var(--azul-Secundario);
      color: white;
      font-family: var(--ff-primario);
      padding: 2rem 1.5rem 1rem;
    }

    .container-footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      border-bottom: 1px solid var(--azul-primario);
      padding-bottom: 2rem;
    }

    .box-container-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-box h4 {
      font-family: var(--ff-titles);
      color: rgb(255, 145, 0);
      font-size: 1.3rem;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }

    .footer-box ul {
      list-style: none;
      padding: 0;
    }

    .footer-box li {
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
      letter-spacing: 2px;
      line-height: 20px;
    }

    .footer-box a {
      color: var(--azul-brillante);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-box a:hover {
      color: var(--clr-dorado);
    }

    .box-media {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .box-media img {
      height: 60px;
    }

    .footer-media {
      display: flex;
      gap: 1rem;
      font-size: 1.4rem;
    }

    .footer-media a {
      color: var(--azul-brillante);
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-media a:hover {
      color: var(--clr-dorado);
      transform: scale(1.1);
    }

    .copy {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.85rem;
      color: var(--clr-claro);
      font-family: var(--ff-Secundary);
      letter-spacing: 2px;
    }

    .copy a {
      color: var(--azul-primario);
      text-decoration: none;
      letter-spacing: 2px;
    }

    .copy a:hover {
      color: rgb(255, 145, 0);
    }

    @media (max-width: 768px) {
      .container-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .box-container-footer {
        flex-direction: column;
        align-items: center;
      }

      .footer-box {
        width: 100%;
      }

      .footer-media {
        justify-content: center;
      }
    }

  