@font-face {
  font-family: 'Double Porter';
  src: url('/recursos/double-porter-5.ttf') format('truetype');
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.lang-selector {
    position: relative;
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    color: black;
    padding: 10px;
}

.lang-selector:hover .lang-dropdown {
    display: none;
}

.lang-flag {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/70/Flag_of_Spain_%28civil%29.svg'); /* o la imagen que tú prefieras */
  background-size: cover;
  background-position: center;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.nav-buttons button {
    background-image: linear-gradient(to right, #956A0B, #FEE19E, #956A0B) !important;
    border: 1px solid #ffdd84;
    border-radius: 20px;
    font-family: 'Double Porter';
    font-size: 20px;
    width: 150px;
    height: 40px;
}

.nav-buttons-usuario button {
    background-image: linear-gradient(to right, #956A0B, #FEE19E, #956A0B) !important;
    border: 1px solid #ffdd84;
    border-radius: 20px;
    font-family: 'Double Porter';
    font-size: 20px;
    width: 90px;
    height: 40px;
}

.nav-buttons-usuario-mobile {
    display: none;
}

.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    .mobile-menu {
    display: block;
    background-color: #0D141C;
    color: white;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    }

    /* Items individuales */
    .mobile-menu-item {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    text-align: left;
    }

    /* Hover */
    .mobile-menu-item:hover {
    color: #ffdd84;
    }

    /* Menú visible */
    .mobile-menu.open {
    max-height: 500px; /* Altura suficiente para mostrar todo */
    }

  .nav-buttons-usuario {
    display: none;
  }
  .hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: white;
  }

    .nav-buttons {
    display: none;
  }
  
  header {
    position: relative;
    background-color: #0c3914 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .logo {
    display: flex;
    justify-content: center;
    flex: 1;
    cursor: pointer;
  }

  .logo img {
    max-width: 100%;
    height: auto;
  }

  .lang-selector {
    position: static;
    cursor: pointer;
  }

  .lang-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
  }

  .nav-buttons-usuario-mobile {
      background-color: #0c3914 !important;
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 10px 20px;
  }

  .nav-buttons-usuario-mobile a {
      flex: 1;
      height: 45px;
      font-size: 14px;
      border: 1px solid #ffdd84;
      border-radius: 5px;
      background-image: linear-gradient(to right, #956A0B, #FEE19E, #956A0B);
      text-transform: uppercase;
      cursor:pointer;
  }
  
  .nav-buttons-usuario-mobile button {
      flex: 1;
      height: 45px;
      width: 100%;
      font-size: 14px;
      border: 1px solid #ffdd84;
      border-radius: 5px;
      background-image: linear-gradient(to right, #956A0B, #FEE19E, #956A0B);
      text-transform: uppercase;
      cursor:pointer;
  }

}