/* ------------------------------------ */
/* Estilos globales y base del documento */
/* ------------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  background-color: #fffdf4 !important;
  color: #2c2112 !important;
  line-height: 1.6;
}

/* ---------------------- */
/* Estilo del logotipo */
/* ---------------------- */
.logo {
  text-align: center;
  padding: 20px 0 10px 0;
}

.logo img {
  max-width: 200px;
  height: auto;
}

/* ---------------------- */
/* Menú de navegación */
/* ---------------------- */
.menu {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  background-color: #f2e3c6;
  padding: 10px 0;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu a {
  text-decoration: none;
  color: #2c2112;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu a:hover {
  background-color: #e2c89f;
}

/* ---------------------- */
/* Contenedor general */
/* ---------------------- */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* ---------------------- */
/* Títulos y secciones */
/* ---------------------- */
h1, h2 {
  text-align: center;
  color: #bb7a1f;
}

.section {
  margin-bottom: 80px;
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

section#inicio .img-grande {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
}

/* ---------------------- */
/* Textos destacados */
/* ---------------------- */
.big-text {
  font-size: 36px;
  text-align: center;
  margin-top: 40px;
}

.subtext {
  font-size: 22px;
  text-align: justify;
}

.list-item {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

/* ---------------------- */
/* Estilo CTA (Call to action) */
/* ---------------------- */
.cta {
  text-align: center;
  margin: 80px 0 120px;
}

.cta a {
  text-decoration: none;
  background-color: #bb7a1f;
  color: #fff;
  padding: 20px 40px;
  font-size: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px #00000030;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  word-break: break-word;
  box-sizing: border-box;
}

.cta a:hover {
  background-color: #8c5a15;
}

/* ---------------------- */
/* Grid de premios y comercios */
/* ---------------------- */
.grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
}

.grid .item {
  background-color: #fdf9ef;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.grid .item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.grid .item p {
  font-size: 18px;
  margin-top: 15px;
}

.grid .item:hover {
  transform: scale(1.03);
}

/* ---------------------- */
/* Estilo responsive CTA */
/* ---------------------- */
@media screen and (max-width: 500px) {
  .cta a {
    font-size: 20px;
    padding: 14px 24px;
    width: 90%;
  }
}

/* ---------------------- */
/* Selector de idioma */
/* ---------------------- */
.idioma-selector {
  padding: 20px 0;
  background-color: #fffdf4;
  text-align: center;
}

.idioma-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.idioma-link {
  text-align: center;
  text-decoration: none;
}

.idioma-link span {
  display: block;
  font-size: 14px;
  color: #2c2112;
  margin-top: 5px;
}
/* ---------------------- */
/* Clases utilitarias añadidas desde el HTML */
/* ---------------------- */
.header-center {
  padding: 20px 0;
  text-align: center;
}

.text-center {
  text-align: center;
}

.mt-100 {
  margin-top: 100px;
}

.responsive-img-shadow {
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-img {
  max-width: 800px;
  width: 100%;
  opacity: 0.9;
}

.img-250 {
  max-width: 250px;
}

.img-210 {
  max-width: 210px;
}

.img-230 {
  max-width: 230px;
}

.img-180 {
  max-width: 180px;
}