<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos Generales */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f5efe7;
  color: #231f20;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header */
header {
  width: 100%;
  background-color: #f5efe7;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Logo */
.logo {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.navbar .logo {
  max-height: 100px;
  height: auto;
  transition: max-height 0.3s ease;
}

/* SecciÃ³n Hero */
.hero-section {
  text-align: center;
  padding: 150px 20px 20px;
  color: #7b1e10;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #7b1e10;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #7b1e10;
}

/* Botones */
button {
  background-color: #7b1e10;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #e1a87a;
  color: #231f20;
  transform: scale(1.05);
}

/* Estilos del botÃ³n de informaciÃ³n y sold out */
.info-btn, .sold-out-btn {
  background-color: #7b1e10;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.sold-out-btn {
  background-color: grey;
  cursor: not-allowed;
}

.info-btn:hover {
  background-color: #e1a87a;
  color: #231f20;
  transform: scale(1.05);
}

/* Estilos de los paquetes */
.package-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.card {
  background-color: #7b1e10;
  color: #FFFFFF;
  border-radius: 10px;
  width: 300px;
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.card p {
  color: #f5efe7;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Estilos del precio */
.price {
  font-size: 24px;
  font-weight: bold;
  background-color: #ffffff;
  color: #7b1e10;
  padding: 10px 20px;
  border-radius: 20px;
  margin-right: 20px;
  position: relative;
  text-align: center;
}

/* InformaciÃ³n del festival */
.festival-info {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #231f20;
  text-align: center;
  padding: 0 20px;
}

/* Estilos del footer */
footer {
  background-color: #231f20;
  color: white;
  padding: 20px;
  text-align: center;
}

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

.footer-text a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #e1a87a;
}

.footer-logo p {
  margin: 0;
  padding-bottom: 5px;
  font-size: 16px;
  text-align: right;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

/* Estilos Responsive */
@media screen and (max-width: 768px) {
  .package-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo p,
  .footer-logo img {
    text-align: center;
    margin: 10px 0;
  }

  .pricing-and-reservation {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .price {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .info-btn, .sold-out-btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  header .logo {
    height: 40px;
  }
}

/* Visor de Fotos */
.photo-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider {
  position: relative;
  min-height: 400px;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: auto;
}

.slide-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  position: relative;
  display: none;
}

.slide-img.active {
  display: block;
}

/* Botones de navegaciÃ³n en el slider */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #7b1e10;
  color: white;
  transform: scale(1.1);
}

/* Detalles del Paquete */
.package-details {
  text-align: center;
  margin: 20px;
  z-index: 400;
  background-color: #7b1e10;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.package-details h1 {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.package-details .description {
  font-size: 16px;
  color: #f5efe7;
  line-height: 1.6;
}

.package-highlight {
  background-color: #7b1e10;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package-includes {
  font-size: 14px;
  color: #f5efe7;
  margin-top: 5px;
  font-weight: bold;
}

.location-tag {
  background-color: #FFFFFF;
  color: #7b1e10;
  font-size: 14px;
  padding: 5px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.card {
  position: relative;
}

.wine-experience-btn {
  background-color: #e1a87a;
  color: #000000;
  font-weight: bold;
}

.wine-experience-btn:hover {
  background-color: #d99a6c;
  color: #000000;
}

.wine-experience-card {
  background-color: #7b1e10;
  color: #ffffff;
  border-radius: 10px;
  width: 300px;
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wine-experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.map-section {
  text-align: center;
  margin: 40px 0;
}

.map-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pricing-and-reservation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.from-text {
  font-size: 12px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7b1e10;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
}

.reservation-buttons {
  display: flex;
  gap: 10px;
}

.reservation-btn {
  background-color: #7b1e10;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.reservation-btn:hover {
  background-color: #e1a87a;
  color: #231f20;
  transform: scale(1.05);
}
</pre></body></html>