@font-face {
    font-family: "normal";
    src: url('../fuentes/AlteHaasGrotesk_Bold.woff') format('woff');
}
@font-face {
    font-family: "etheris";
    src: url('../fuentes/TARSICARegular.woff') format('woff');
} 
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(247, 234, 228, 0.7);
    height: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
} 
.container {
    width: 100%;
    max-width: 1800px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    box-sizing: border-box;
}
.container .btn-menu {
    display: none;
    background: none;
    border: none;
    color: #F3B562;
     font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    order: 1;
}
.logo{
  display: flex;
  align-items: center;
}
.logo img{
  height: 50px;
  width: auto;
}
.logo h1 {
    color: #3E5C76;
    font-weight: 400;
    margin: 0;
    font-family: etheris;
    font-size: 40px;
}
.container .menu {
    display: flex;
    gap: 20px;
    align-items: center;
}
.container .menu a {
    padding: 10px;
    text-decoration: none;
    color: #F3B562;
    transition: all 0.3s ease;
     border-bottom: 2px solid transparent;
    font-size: 22px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.container .menu a:hover {
    border-bottom: 2px solid #c7c7c7;
    padding-bottom: 5px;
}

/* ==== Responsive tablets grandes (max-width: 1200px) ==== */
@media (max-width: 1200px) {
  .container .menu a {
    font-size: 20px;
    padding: 8px;
  }
}

/* ==== Responsive tablets medianos (max-width: 1100px) ==== */
@media (max-width: 1100px) {
  .container .menu a {
    font-size: 18px;
    padding: 6px;
  }
}

/* ==== Responsive tablets pequeños (max-width: 1000px) ==== */
@media (max-width: 1000px) {
  .container .btn-menu {
    display: block;
  }

  .container .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(31, 58, 88, 0.9);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .container .menu.active {
    display: flex;
    transform: translateX(0);
  }

  .container .menu a {
    display: block;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid rgba(243, 181, 98, 0.3);
    font-size: 24px;
    width: 100%;
  }
}

/* ==== Responsive móviles (max-width: 768px) ==== */
@media (max-width: 768px) {
  .container .btn-menu {
    font-size: 28px;
  }

  .container .menu a {
    font-size: 22px;
  }

  .logo h1 {
    font-size: 32px;
  }

  .logo img {
    height: 40px;
  }
}

/* ==== Responsive móviles pequeños (max-width: 480px) ==== */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 28px;
  }

  .logo img {
    height: 35px;
  }

  .container .btn-menu {
    font-size: 26px;
  }

  .container .menu a {
    font-size: 20px;
  }
}