/* ====== ESTILOS GENERALES ====== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: black !important;
  user-select: none; /* Compatibilidad moderna */
}

/* ====== TEXTO PRINCIPAL ====== */
.slogan {
  text-align: center;
  color: brown !important;
  font-weight: 700;
  font-size: 36px;
}

@media (max-width: 1024px) {
  .slogan {
    font-size: 32px;
  }
}

@media (max-width: 375px) {
  .slogan {
    font-size: 26px;
    margin-top: 20px;
  }
}

/* ====== LOGO HEADER ====== */
.logo-container-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-header {
  width: 100px;
  margin-bottom: 10px;
}

/* ====== IDIOMAS ====== */
.langPages {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.langPages a {
  font-size: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.langPages img {
  width: 25px;
  margin-right: 5px;
}

/* ====== ENLACES DESTACADOS ====== */
.link-highlight {
  color: #ffc451;
  text-decoration: none;
  transition: color 0.3s;
}

.link-highlight:hover {
  color: white;
}

/* ====== BOTÓN VOLVER ARRIBA ====== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  border: 2px solid #ffc451;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.iconify[data-icon="bi:arrow-up-short"] {
  color: #ffc451;
}

/* ====== TEXTO ENCABEZADO ====== */
.text-container h1 {
  font-size: 3rem;
  font-weight: bolder;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .text-container h1 {
    font-size: 1.5rem;
    padding: 15px;
  }
}

/* ====== SEARCH SECTION ====== */
.search-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 40px 20px;
}

.search-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313131;
  opacity: 0.5;
}

.my-custom-container {
  background: rgba(111, 79, 40, 0.8);
  padding: 20px;
  border-radius: 6px;
}
