/* Variables de color */
/* Breakpoints */
/* Estilos generales */
body {
  font-family: 'Arial', sans-serif;
  color: #735b56;
}

/* Header styles */
.brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #735b56;
}
.brand .logo {
  height: 50px;
  margin-right: 10px;
}
.brand .eslogan {
  color: #df9908;
  font-size: 16px;
}

.site-header {
  position: relative;
  background-color: #f9f7ea;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 600px) {
  .site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.nav__wrapper {
  @media (min-width: 600px) {
    display: flex;
  }
}
@media (max-width: 599px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 100;
    background-color: #f9f7ea;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .nav__wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__item {
  position: relative;
}
.nav__item a {
  display: block;
  padding: 1.5rem 1rem;
  color: #735b56;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}
.nav__item a:hover {
  color: #df9908;
  background-color: rgba(242, 215, 133, 0.3);
}
.nav__item a i {
  margin-left: 5px;
  font-size: 0.8em;
}
@media (min-width: 600px) {
  .nav__item--dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #f9f7ea;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.dropdown-menu li {
  border-bottom: 1px solid rgba(169, 147, 148, 0.3);
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu li a {
  padding: 1rem;
  color: #986c6c;
}
.dropdown-menu li a:hover {
  background-color: #f2d785;
  color: #735b56;
}
@media (max-width: 599px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }
  .dropdown-menu.active {
    display: block;
  }
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #735b56;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}
.nav__toggle:focus {
  outline: 2px solid #df9908;
}
@media (max-width: 599px) {
  .nav__toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
}






.nav__wrapper {
  list-style: none;
  padding-left: 0;
}

.nav__wrapper {
  @media (min-width: 600px) {
    display: flex;
  }
}
@media (max-width: 599px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 100;
    background-color: #f9f7ea;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .nav__wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__item {
  position: relative;
  list-style: none;
}

.dropdown-menu {
  list-style: none;
  padding-left: 0;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #f9f7ea;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}


/* 
//// //// //// //// //// //// //// //// //// //// //// //// //// //// 
//                                                              //
//                      SECCIÓN DE BOTONES                     //
//                                                              //
//// //// //// //// //// //// //// //// //// //// //// //// //// //// 
*/


/* Variables de color */
/* Breakpoints */
/* Estilos generales */
body {
  font-family: 'Arial', sans-serif;
  color: #735b56;
}

/* Header styles */
.brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #735b56;
}

.brand .eslogan {
  font-family: 'Arial';
  color: #df9908;
  font-size: 24px;
  white-space: nowrap;
}

@media (max-width: 400px) {
  .brand .eslogan {
    font-size: 20px;
  }
}

/* Resto del CSS */
.site-header {
  position: relative;
  background-color: #f9f7ea;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ... (el resto del CSS anterior se mantiene igual) */

.brand .eslogan {
  font-family: 'Lato', sans-serif;
  font-weight: 300; /* Lato Light */
  color: #df9908;
  font-size: 24px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}







.brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #735b56;
  gap: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.eslogan {
  font-family: 'Parisienne', cursive;
  color: #df9908;
  font-size: 28px;
  white-space: nowrap;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center; /* Centra el texto del eslogan */
  position: relative; /* Establece un contexto de posicionamiento */
}

.subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300; /* Lato Light */
  color: #986c6c;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1.2;
  display: block; /* Asegura que ocupe su propia línea */
  text-align: center; /* Centra el texto del subtítulo */
  width: 100%; /* Ocupa todo el ancho del contenedor padre */
}

/* Responsive para móviles */
@media (max-width: 400px) {
  .eslogan {
    font-size: 22px;
  }
  .subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

.nav__item a {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}