.card,
.grid,
.hero {
  display: flex;
}
.card,
.weather-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.hero {
  background-image: url("/recursos_new/bg-DisneylandPark.webp");
  background-size: cover;
  background-position: center;
  height: 60vh;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.content-hero {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  margin-top: 60px;
}
.content-hero h1,
.content-hero h2,
.content-hero h3 {
  color: #fff;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  display: block;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 0;
  cursor: default;
}
.container {
  width: 80%;
  margin: 0 auto;
}
.container h2,
.container h4,
.container img,
.container p {
  margin-bottom: 5px;
}
.grid {
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
.card {
  align-items: flex-start;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  gap: 20px;
}
.card img,
.gallery-image {
  object-fit: cover;
  border-radius: 8px;
}
.card img {
  width: 250px;
  height: 150px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  flex-grow: 1;
}
.card-content h3,
.gallery-section,
.video-gallery,
.weather-card {
  text-align: center;
}
.card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  color: red;
}
.card-content p {
  font-size: 1em;
  color: #555;
  margin-top: 0;
}
.learn-more {
  margin-top: auto;
  align-self: flex-end;
  text-decoration: none;
  color: red;
  font-weight: 700;
}
.learn-more:hover {
  text-decoration: underline;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-section,
.video-title {
  margin-bottom: 20px;
}
.gallery-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: red;
}
.weather-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.weather-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 550px;
  transition: transform 0.3s ease-in-out;
}
.weather-card:hover {
  transform: translateY(-5px);
}
.season-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
}
.weather-card ul {
  list-style: none;
  padding: 0;
}
.weather-card li {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 8px;
}
.weather-card h3 {
  font-size: 1.2rem;
  color: #555;
  margin: 10px 0;
}
.weather-card:first-child {
  background: #fffbf0;
  border-left: 6px solid #ffcc80;
}
.weather-card:nth-child(2) {
  background: #fff5e1;
  border-left: 6px solid #ffa726;
}
.weather-card:nth-child(3) {
  background: #f0f8ff;
  border-left: 6px solid #64b5f6;
}
.weather-card:nth-child(4) {
  background: #f9f9f9;
  border-left: 6px solid #90a4ae;
}
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}
.video-container iframe {
  width: 500px;
  height: 350px;
}
.gallery-image {
  height: auto;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-image:hover {
  transform: scale(1.05);
}
.lightbox-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.curiosities-table tr:nth-child(2n),
.tienda {
  background-color: #f9f9f9;
}
.lightbox-image {
  max-width: 60%;
  max-height: 90%;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.curiosities-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
}
.curiosities-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.galeria-tienda img,
.tienda {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.curiosities-table td,
.curiosities-table th {
  padding: 12px;
  text-align: left;
}
.curiosities-table th {
  background-color: #f2f2f2;
  border-bottom: 2px solid #ccc;
}
.curiosities-table tr:hover {
  background-color: #e2e2e2;
}
.curiosities-table td {
  border-bottom: 1px solid #ddd;
}
.tiendas-village {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tienda {
  flex: 0 1 48%;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.tienda h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.tienda p {
  margin-bottom: 15px;
}
.galeria-tienda {
  display: flex;
  gap: 10px;
}
.galeria-tienda img {
  width: 30%;
  border-radius: 5px;
}
.tienda:nth-child(5) {
  flex: 0 1 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .video-container,
  .weather-cards-container {
    flex-direction: column;
    align-items: center;
  }
  .weather-card {
    width: 90%;
  }
  .video-container iframe {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
  }
  .card,
  .card-content {
    text-align: center;
  }
  .container {
    width: 95%;
  }
  .content-hero h1,
  .content-hero h2,
  .content-hero h3 {
    font-size: 1.5em;
  }
  .card,
  .grid,
  .tiendas-village {
    flex-direction: column;
  }
  .card img {
    width: 100%;
    height: auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tienda {
    flex: 0 1 100%;
  }
}
@media (max-width: 400px) {
  .hero {
    height: 50vh;
  }
  .content-hero {
    margin-top: 70px;
  }
  .content-hero h1,
  .content-hero h2,
  .content-hero h3 {
    font-size: 1.5em;
  }
  .card {
    padding: 10px;
  }
  .card-content h3 {
    font-size: 1.2em;
  }
  .tienda {
    padding: 15px;
  }
  .galeria-tienda img {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.conclusion {
  background-color: #f5f5f5;
  padding: 40px 20px;
  border-top: 2px solid #f58f00;
}

.conclusion h2 {
  font-size: 28px;
  color: #e90d0d;
}

.conclusion p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0 auto;
}

strong {
  color: #a41c0f;
}
