/* =========== ESTILOS GENERALES =========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f0f4f8;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #2D1B4E, #1a0f2e);
  backdrop-filter: blur(20px);
  z-index: 100;
  box-shadow: 0 8px 32px rgba(168, 197, 224, 0.15);
  min-height: 150px;
}

header img {
  height: 250px;
  width: auto;
  transition: 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  object-fit: contain;
}
header img:hover {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 6px 12px rgba(168, 197, 224, 0.4));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  font-size: 35px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.5s ease;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #A8C5E0 0%, #B4D4F1 100%);
  transition: width 0.5s ease;
  border-radius: 2px;
}
nav a:hover {
  background: rgba(168, 197, 224, 0.2);
  color: #A8C5E0;
}
nav a:hover::after {
  width: 100%;
}

footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #2D1B4E 0%, #1a0f2e 100%);
  border: 3px solid #A8C5E0;
  gap: 2rem;
  flex-wrap: wrap;
}
footer div {
  flex: 1;
  min-width: 200px;
}
footer h3 {
  font-size: 18px;
  margin: 0 0 0.5rem 0;
  color: #A8C5E0;
}
footer p {
  font-size: 18px;
  margin: 0 0 0.8rem 0;
  color: #A8C5E0;
}
footer input {
  padding: 0.5rem 0.7rem;
  border: 1px solid #A8C5E0;
  border-radius: 4px;
  background: rgba(168, 197, 224, 0.1);
  color: #ffffff;
  font-size: 12px;
}
footer button {
  padding: 0.5rem 1rem;
  background: #A8C5E0;
  color: #2D1B4E;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}
footer button:hover {
  background: #B4D4F1;
}

/* ========== INDEX-DIV ========== */
.index-div {
  background: linear-gradient(135deg, rgba(168, 197, 224, 0.1), rgba(180, 212, 241, 0.1));
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 2px solid #A8C5E0;
  margin-bottom: 3rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 8px 30px rgba(45, 27, 78, 0.08);
}
.index-div h1 {
  font-size: 2.5rem;
  color: #2D1B4E;
}
.index-div h2, .index-div p {
  color: #2D1B4E;
}
.index-div h2 {
  font-size: 1.8rem;
}
.index-div p {
  font-size: 1.1rem;
  max-width: 700px;
}
.index-div iframe {
  max-width: 100%;
  width: 800px;
  height: 550px;
  border: 3px solid #A8C5E0;
  border-radius: 20px;
  margin-top: 1rem;
}

/* ========== INDEX-SECTION ========== */
.index-section {
  background: linear-gradient(135deg, #2D1B4E, #1a0f2e);
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 12px 40px rgba(45, 27, 78, 0.4);
  border: 2px solid #A8C5E0;
}
.index-section h2 {
  font-size: 1.8rem;
  color: #ffffff;
}
.index-section p {
  font-size: 1.1rem;
  color: #ffffff;
}
.index-section a {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #A8C5E0, #B4D4F1);
  color: #2D1B4E;
  text-decoration: none;
  border-radius: 12px;
  font: 700 1.1rem Arial;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.index-section a:hover {
  background: linear-gradient(135deg, #B4D4F1, #A8C5E0);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(168, 197, 224, 0.4);
}

/* ========== DESTINOS-DIV ========== */
.destinos-div {
  text-align: center;
  padding: 2rem;
}
.destinos-div h1 {
  font-size: 2.5rem;
  color: #2D1B4E;
}
.destinos-div p {
  font-size: 1.1rem;
  color: #2D1B4E;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== DESTINOS-SECTION ========== */
.destinos-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}
.destinos-section a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.destinos-section a:nth-child(odd) {
  flex-direction: row;
}
.destinos-section a:nth-child(even) {
  flex-direction: row-reverse;
}
.destinos-section img {
  width: 55%;
  max-width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}
.destinos-section img:hover {
  transform: scale(1.05);
}

.historia-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border-left: 5px solid #A8C5E0;
  max-width: 900px;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 30px rgba(45, 27, 78, 0.08);
}
.historia-section h2, .historia-section h3, .historia-section p {
  color: #2D1B4E;
}

.historia-div {
  padding: 1rem;
}

.historia-button {
  background-color: #A8C5E0;
  color: #2D1B4E;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font: 600 1rem Arial;
  transition: all 0.3s ease;
}
.historia-button:hover {
  background-color: #2D1B4E;
  color: #A8C5E0;
  border: 2px solid #A8C5E0;
}

.proximamente-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #2D1B4E 0%, #1a0f2e 100%);
  padding: 4rem 2rem;
  border-radius: 20px;
  border: 2px solid #A8C5E0;
  width: 100%;
  text-align: center;
  gap: 1.5rem;
}
.proximamente-section h1, .proximamente-section p {
  color: #ffffff;
}

.sponsors-div {
  text-align: center;
  padding: 2rem;
}

.sponsors-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
.sponsors-section .sponsors-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: #ffffff;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}
.sponsors-section .sponsors-div:hover {
  background-color: #A8C5E0;
}
.sponsors-section .sponsors-div a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sponsors-section img {
  max-width: 120%;
  max-height: 120%;
  object-fit: contain;
}

@media (max-width: 480px) {
  header {
    flex-direction: row;
    padding: 1rem;
    justify-content: flex-start;
    gap: 2rem;
  }
  header img {
    height: 80px;
    flex-shrink: 0;
  }
  nav ul {
    flex-direction: row;
    gap: 1.5rem;
    font-size: 18px;
  }
  nav a {
    padding: 0.5rem 0;
    font-size: 16px;
  }
  nav a::after {
    display: none;
  }
}
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    padding: 1.5rem;
    min-height: auto;
    gap: 1.5rem;
    align-items: center;
  }
  header img {
    height: 100px;
  }
  nav ul {
    gap: 1.5rem;
    font-size: 24px;
    flex-direction: row;
    justify-content: center;
  }
  nav a {
    padding: 0.6rem 1rem;
  }
  main {
    padding: 2rem 1.5rem;
  }
  .index-section,
  .proximamente-section {
    padding: 3rem 2rem;
    gap: 1.2rem;
  }
  .sponsors-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  footer {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  footer h3 {
    font-size: 16px;
  }
  footer p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    padding: 1.5rem;
    min-height: auto;
    gap: 1.5rem;
    align-items: center;
  }
  header img {
    height: 100px;
  }
  nav ul {
    gap: 1.5rem;
    font-size: 24px;
    flex-direction: row;
    justify-content: center;
  }
  nav a {
    padding: 0.6rem 1rem;
  }
  main {
    padding: 2rem 1.5rem;
  }
  .index-section,
  .proximamente-section {
    padding: 3rem 2rem;
    gap: 1.2rem;
  }
  .sponsors-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  footer {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  footer h3 {
    font-size: 16px;
  }
  footer p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
