/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  display: block;
  width: 100%;
  overflow-x: hidden;
}

article, aside, footer, header, nav, section {
  display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-spacing {
  padding: 3rem 1rem;
}

.section-bg-white {
  background: #fff;
}

.section-bg-gray {
  background-color: #f9f9f9;
}

.section-bg-light {
  background-color: #e7e7e7e7;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 1rem;
  white-space: normal;
  overflow: visible;
  text-align: center;
  line-height: 1.2;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.important-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   HEADER COMPONENT
   ============================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f4f4f4;
  position: relative;
  z-index: 1;
  min-height: 100px;
}


header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/TopHeader.webp') center/cover no-repeat;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  z-index: 1;
  opacity: 1 !important;
  filter: none !important;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

header h1 {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  opacity: 1;
}

/* ============================================
   NAVIGATION COMPONENT
   ============================================ */
nav {
  background: #333;
  color: #fff;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  position: relative;
}

.nav-links {
  display: flex;
}

.nav-links a {
  margin: 0 0.5rem;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  background: #fff;
  color: #333;
  border-radius: 4px;
}

.burger {
  display: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px;
}

/* ============================================
   HERO COMPONENT
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  word-break: break-word;
}

.hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* ============================================
   SECTIONS BASE
   ============================================ */
section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
   INFO IMPORTANTE COMPONENT
   ============================================ */
.info-importante {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.info-importante__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: fit-content;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.info-importante__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  height: 500px;
  width: auto;
}

.info-importante__item:hover {
  transform: translateY(-8px);
}

.info-importante__img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

.info-importante__download {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.info-importante__download:hover {
  background: rgba(255,255,255,1);
  transform: scale(1.1);
}

.info-importante__download svg {
  width: 24px;
  height: 24px;
  fill: #333;
}

.info-importante__text {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: left;
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
  border-left: 4px solid #007bff;
}

.info-importante__text p {
  margin-bottom: 1.2rem;
}

.info-importante__warning {
  padding: 1rem;
  background: #fff3cd;
  border-radius: 8px;
  border-left: 3px solid #ffc107;
  margin-bottom: 1.2rem;
}

.info-importante__link {
  color: #007bff;
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   ABOUT SECTION COMPONENT
   ============================================ */
.about-section {
  padding: 3rem 1rem;
  background: #fff;
}

.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 350px;
  text-align: justify;
}

.about-text h3 {
  margin-bottom: 1rem;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}

.about-images {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100%;
}

.about-images img {
  width: 100%;
  height: calc((100% - 2rem) / 3);
  min-height: 150px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.about-images img:hover {
  transform: scale(1.02);
}

.about-image {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ============================================
   FEATURES LIST COMPONENT
   ============================================ */
.features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.features-list h4 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1.2rem;
  position: relative;
}

.features-list h4::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #fff200;
  margin-top: 0.5rem;
}

.features-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.features-list li::before {
  content: '•';
  color: #fff200;
  font-size: 1.5rem;
  position: absolute;
  left: 0.5rem;
  top: -0.2rem;
}

/* ============================================
   EMBED CONTAINER (Videos/Maps)
   ============================================ */
.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: #fff200;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0.5rem 0;
}

.service-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ============================================
   CONCERTS SECTION
   ============================================ */
#concerts {
  padding: 2rem 1rem;
  background-color: #e7e7e7e7;
}

#concerts .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #333;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.concert-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.concert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.concert-card img {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.card-content h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-content audio {
  width: 100%;
}

/* ============================================
   CARTEL SECTION
   ============================================ */
.cartel-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.cartel-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cartel-text h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.cartel-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.cartel-winner {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cartel-winner h4 {
  color: #444;
  margin-bottom: 1rem;
}

.cartel-winner p {
  font-size: 1.2rem;
  color: #333;
}

.cartel-winner p:last-child {
  margin-top: 1rem;
}

.cartel-footer {
  font-size: 1.1rem;
  color: #666;
  margin-top: 2rem;
}

.cartel-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.cartel-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.cartel-image img:hover {
  transform: scale(1.02);
}

/* ============================================
   PROGRAMA SECTION
   ============================================ */
.programa-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.programa-images > div {
  flex: 1 1 400px;
  max-width: 600px;
}

.programa-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ============================================
   PACK PASABODEGHAS
   ============================================ */
.pack-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pack-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
}

/* ============================================
   BUS SECTION
   ============================================ */
.bus-content {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  flex-wrap: wrap;
}

.bus-route {
  flex: 0 1 300px;
}

.bus-route h3 {
  margin-bottom: 0.5rem;
}

.bus-route ul {
  list-style: none;
  padding-left: 0;
}

.bus-route li {
  margin-bottom: 0.3rem;
}

/* ============================================
   PUNTOS DE COMPRA
   ============================================ */
.puntos-content {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  flex-wrap: wrap;
}

.puntos-column {
  flex: 0 1 300px;
}

.puntos-group {
  margin-bottom: 2rem;
}

.puntos-group:last-child {
  margin-bottom: 0;
}

.puntos-group h3 {
  margin-bottom: 0.5rem;
}

.puntos-group ul {
  list-style: none;
  padding-left: 0;
  white-space: nowrap;
}

.puntos-group ul li {
  text-align: left;
  margin-bottom: 0.3rem;
}

.puntos-note {
  text-align: center;
  margin-bottom: 2rem;
}

/* ============================================
   CARRUSEL (PHOTOS)
   ============================================ */
.carrusel-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.carrusel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carrusel::-webkit-scrollbar {
  display: none;
}

.carrusel img {
  flex: 0 0 auto;
  height: 300px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: center;
  background-color: #f0f0f0;
  transition: transform 0.3s ease;
}

.carrusel img:hover {
  transform: scale(1.05);
}

.btn-left,
.btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.btn-left:hover,
.btn-right:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.btn-left {
  left: 10px;
}

.btn-right {
  right: 10px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background: #f9f9f9;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #f0f0f0;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 1200px;
  padding: 1rem;
}

/* ============================================
   DAVILA SECTION
   ============================================ */
.davila-section {
  text-align: center;
  padding: 4rem 1rem;
}

.davila-section__image {
  margin-bottom: 3rem;
}

.davila-section__text {
  font-size: 1.2rem;
}

.davila-section__highlight {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #333;
}

/* ============================================
   FOOTER COMPONENT
   ============================================ */
footer {
  background-color: #888;
  padding: 20px 40px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.footer-group--inline {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-title--inline {
  font-size: 1.2rem;
  margin: 0;
  min-width: 120px;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-logos--inline {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-logos img {
  height: 40px;
  object-fit: contain;
}

.footer-logos--inline img {
  height: 80px;
  width: auto;
}

.footer-copy {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #ddd;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  /* Navigation */
  .nav-container {
    justify-content: center;
    padding: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #333;
    width: 100%;
    align-items: center;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
  }

  .nav-links a {
    padding: 0.5rem;
    border-top: 1px solid #444;
    width: 100%;
    text-align: center;
  }

  .burger {
    display: block;
  }

  /* Hero */
  .hero h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    padding: 0 1rem;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }


  /* Section title */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    padding: 0 1rem;
    word-break: break-word;
    hyphens: auto;
  }

  /* About content */
  .about-content {
    margin: 0 !important;
    padding: 1rem !important;
  }

  .about-text,
  .about-images {
    flex: 1 1 100% !important;
    min-width: 100% !important;
    padding: 1rem !important;
  }

  /* Sections */
  section {
    width: 100%;
    padding: 1rem !important;
    margin: 0 !important;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-group {
    width: 100%;
  }

  .footer-logos {
    justify-content: center;
  }
}

/* ============================================
   BOTONES EDICION 2025
   ============================================ */
.btn-edicion-2025 {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  text-align: center;
}

.btn-edicion-2025:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-volver {
  display: inline-block;
  padding: 1rem 2rem;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-volver:hover {
  background: #555;
  transform: translateX(-5px);
}

