* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.Aside_Izquierdo {
  position: sticky;
  top: 0; /* Fija el aside en la parte superior */
  left: 0; /* O usa right: 0; si lo quieres a la derecha */
  width: 220px; /* Ancho del aside */
  height: 120vh; /* 100% de la altura de la ventana */
  background-color: white;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.menu_aside a {
  color: steelblue;
  text-decoration: none;
  font-size: 20px;
}

.menu_aside a:hover {
  color: darkgoldenrod;
  text-decoration: none;
  font-size: 20px;
}

.Aside_Derecho {
  visibility: hidden;
  position: sticky;
  top: 0; /* Fija el aside en la parte superior */
  right: 0; /* Coloca el aside derecho en el borde derecho */
  width: 220px; /* Ancho del aside */
  height: 120vh; /* 100% de la altura de la ventana */
  background-color: white;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.Contenedor {
  display: flex;
}

.Contenedor_eventos {
  display: flex;
}

.Fondo {
  background-color: white;
}

.center-div {
  background-image: url("Imagenes/Fondo\ punta\ cana.jpg");
  height: 300px;
  background-size: cover; /* Hace que el fondo ocupe todo el contenedor */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que el fondo se repita */
}

.center-titulo {
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.Titulo_Principal {
  height: 150px;
  width: 650px;
}

.Playa_Principal {
  height: 150px;
  width: 650px;
}

.Palmera_izq {
  height: 130px;
  width: 130px;
  margin-right: 10px;
}

.Palmera_der {
  height: 130px;
  width: 130px;
  margin-left: 10px;
}

.Icono {
  height: 10%;
  width: 10%;
  margin-left: 10px;
}

.Descripcion_index {
  margin: 30px;
  font-size: 20px;
  display: flex;
  text-align: justify;
  width: 80%;
  margin: auto;
  padding-right: 20px;
}

.Descripcion {
  margin: 30px;
  font-size: 20px;
  display: flex;
  text-align: justify;
  width: 80%;
  margin: auto;
  padding-right: 20px;
}

.Articulos {
  margin: 30px;
  font-size: 20px;
  display: flex;
  text-align: justify;
  width: 80%;
  margin: auto;
  padding-right: 20px;
}

.Contenedor_Secciones {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 90%;
  padding-right: 20px;
}

.Contenedor_Secciones_playas {
  display: none;
  justify-content: space-between;
  margin: auto;
  width: 80%;
  padding-right: 20px;
}

.Secciones {
  display: block;
  justify-content: center;
  width: 300px;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  border-radius: 10px;
  background-color: white;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 10%;
  padding-right: 10%;
}

.Secciones_largas {
  display: block;
  justify-content: center;
  align-items: center;
  width: auto;
  /*box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  border-radius: 10px;*/
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;
}

.contenedor_parrafo_paginas {
  text-align: justify;
  margin-left: 10%;
  margin-right: 10%;
}

.parrafos {
  font-size: 20px;
  text-align: justify;
  overflow-wrap: break-word; /* Asegura que las palabras largas se dividan */
  word-wrap: break-word; /* Para compatibilidad con navegadores antiguos */
}

.parrafos_index {
  font-size: 15px;
  text-align: inter-word;
  justify-items: center;
  margin-top: 10px;
  color: steelblue;
  overflow-wrap: break-word; /* Asegura que las palabras largas se dividan */
  word-wrap: break-word; /* Para compatibilidad con navegadores antiguos */
}

.Imagen_portada {
  height: 100px;
  width: 100%;
}

.Imagenes_Playas {
  height: 300px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}

.Link {
  text-decoration: none;
}

/* Barra de navegación */

.navbar {
  background-color: white;
}

.contenedor-menu {
  display: flex;
  align-items: center;
}

.menu-horizontal {
  list-style: none;
  display: flex;
}

.menu-horizontal > li > a {
  display: block;
  padding: 15px 20px;
  color: steelblue;
  text-decoration: none;
  font-size: larger;
}

.menu-horizontal > li > a:hover {
  background-color: #333;
}

.menu-vertical {
  position: absolute;
  display: none;
  list-style: none;
  width: 160px;
  background-color: black;
  z-index: 9999;
}

.menu-horizontal li:hover .menu-vertical {
  display: block;
}

.menu-vertical li a {
  display: block;
  color: white;
  padding: 10px 10px 10px 10px;
  text-decoration: none;
}

.menu-vertical li a:hover {
  color: darkgoldenrod;
}
/* Menú Hamburguesa */

.abrir-menu {
  display: none;
}

.movil-menu {
  display: none;
}

.movil-lista-nav {
  display: none;
}

.movil-lista-nav li a {
  text-decoration: none;
  color: steelblue;
  font-size: larger;
  padding-right: 50px;
}

.movil-lista-nav li a:hover {
  color: blue;
}

.movil-lista-nav li {
  list-style: none;
}

/* Fin de Menú Hamburguesa */

/* Carusel Inmagenes */
.carrusel-container {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Imagenes Playas*/
.carrusel1,
.carrusel2,
.carrusel3,
.carrusel4,
.carrusel5,
.carrusel6,
.carrusel7 {
  display: flex;
  transition: transform 0.5s ease;
}

.slide1,
.slide2,
.slide3,
.slide4,
.slide5,
.slide6,
.slide7 {
  min-width: 100%;
  box-sizing: border-box;
}

.slide1 img,
.slide2 img,
.slide3 img,
.slide4 img,
.slide5 img,
.slide6 img,
.slide7 img {
  width: 100%;
}
/* Fin Imagenes Playas*/

/* Imagenes Hoteles*/
.carrusel10,
.carrusel20,
.carrusel30,
.carrusel40,
.carrusel50,
.carrusel60,
.carrusel70,
.carrusel80 {
  display: flex;
  transition: transform 0.5s ease;
}

.slide10,
.slide20,
.slide30,
.slide40,
.slide50,
.slide60,
.slide70,
.slide80 {
  min-width: 100%;
  box-sizing: border-box;
}

.slide10 img,
.slide20 img,
.slide30 img,
.slide40 img,
.slide50 img,
.slide60 img,
.slide70 img,
.slide80 img {
  width: 100%;
}
/* Fin Imagenes Hoteles*/

/* Imagenes Turismo*/
.carrusel11,
.carrusel21,
.carrusel31,
.carrusel41,
.carrusel51,
.carrusel61,
.carrusel71 {
  display: flex;
  transition: transform 0.5s ease;
}

.slide11,
.slide21,
.slide31,
.slide41,
.slide51,
.slide61,
.slide71 {
  min-width: 100%;
  box-sizing: border-box;
}

.slide11 img,
.slide21 img,
.slide31 img,
.slide41 img,
.slide51 img,
.slide61 img,
.slide71 img {
  width: 100%;
}
/* Fin Turismo*/

/* Imagenes Eventos*/
.carrusel12,
.carrusel22,
.carrusel32 {
  display: flex;
  transition: transform 0.5s ease;
}

.slide12,
.slide22,
.slide32 {
  min-width: 100%;
  box-sizing: border-box;
}

.slide12 img,
.slide22 img,
.slide32 img {
  width: 100%;
}
/* Fin Eventos*/

/* Carrusel Tienda*/

.carousel-container {
  width: 200px;
  overflow: hidden; /* Esconde las imágenes fuera del contenedor */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.carousel,
.carousel1 {
  display: flex;
  transition: transform 1s ease-in-out;
}

.carousel img,
.carousel1 img {
  width: 100%;
  height: auto;
  flex-shrink: 0; /* Impide que las imágenes se encojan */
}

/* Fin Tienda*/

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Fin Carusel Inmagenes */

.pagina_web {
  text-decoration: none;
  color: white;
  background-color: steelblue;
  border-style: solid;
  border-radius: 8px;
  padding: 10px;
  width: 100px;
}

.menu-oculto {
  display: none;
}

.movil-menu {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: absolute;
}

.sub_menu_movil {
  display: none;
}

.Imagen_Contacto {
  height: 80px;
  width: 80px;
  margin-right: 20px;
}

.Contenedor_Contacto {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: justify;
  margin: auto;
}

.Google_maps {
  width: 500px;
  height: 375px;
}

.select_items {
  width: 250px;
  font-size: 20px;
  margin: auto;
}

.Contenedor_Tienda {
  display: block;
}

/* Aviso de Cookies */
.aviso {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.aviso a {
  color: #f8d210;
  text-decoration: underline;
}

.aviso button {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.politicas {
  font-size: 20px;
}

/* Fin Aviso de Cookies */

#S_hoteles {
  width: 400px;
}

/* Estilos del pie de página */
footer {
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
}

.redes-sociales {
  margin-top: 10px;
}

.boton-social {
  display: inline-block;
  background-color: #fff;
  color: #333;
  border: none;
  padding: 10px;
  margin: 0 5px;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.boton-social:hover {
  background-color: #333;
  color: #fff;
}

/* Estilos adicionales opcionales */
footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.IconRedes {
  height: 50px;
  width: 50px;
}

.IconRedesPop {
  height: 10%;
  width: 10%;
}

.redes-sociales a {
  margin-right: 8px;
  margin-left: 8px;
}

.Publicidad {
  height: 300px;
  width: 300px;
}

.ColumnaTemperatura {
  height: 300px;
  width: 300px;
}

.cuadro-comentarios {
  margin-left: 20%;
  margin-right: 20%;
}

.cont-datos-personales {
  display: block;
  max-width: 300px;
  background-color: lightgrey;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.margen-texto {
  padding-right: 30px;
}

/* Tarjeta de Clima */
.card {
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
  background: #f0f8ff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contenedor general */
#Noticias {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

/* Tarjeta de cada noticia */
.noticia {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Efecto al pasar el mouse */
.noticia:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Título de noticia */
.noticia h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Enlace dentro del título */
.noticia a {
  text-decoration: none;
  color: #1a73e8;
  transition: color 0.3s ease;
}

.noticia a:hover {
  color: #0c47b7;
}

/* Fecha */
.noticia p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.Imagen_noticias {
  height: 40%;
  width: 60%;
}

/* Estilos para dispositivos móviles */
@media screen and (max-width: 768px) {
  .Imagen_noticias {
    height: 40%;
    width: 100%;
    margin-top: 50px;
  }

  /* Aviso de Cookies */
  .aviso {
    flex-direction: column;
  }

  .aviso button {
    padding: 5px 10px;
    margin-left: 120px;
    margin-top: 10px;
  }

  .politicas {
    font-size: 12px;
  }

  .center-div {
    height: 200px;
  }

  /* Menú Hamburguesa */
  .abrir-menu {
    display: flex;
    margin-left: 90%;
    border-style: none;
    padding: 0px;
  }

  .contenedor-menu {
    display: flex;
    justify-content: space-between;
  }

  .menu-horizontal {
    display: none;
  }

  .movil-lista-nav {
    display: block;
  }

  .movil-lista-nav li:hover .sub_menu_movil {
    display: block;
  }
  /* Fin Menú Hamburguesa */

  .Aside_Izquierdo {
    display: none;
  }

  .Aside_Derecho {
    display: none;
  }

  .Icono {
    height: 20%;
    width: 20%;
    margin-left: 10px;
  }

  .Palmera_izq,
  .Palmera_der {
    display: none;
  }

  .Titulo_Principal,
  .Playa_Principal {
    height: 100px;
    width: 300px;
  }

  .Contenedor {
    width: 100%;
    height: auto;
    display: block;
  }

  .Contenedor_eventos {
    width: 100%;
    display: block;
  }

  .Contenedor_Secciones {
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin: auto;
  }

  .contenedor_parrafo_paginas {
    margin-left: 5%;
    margin-right: 5%;
  }

  article {
    margin-bottom: 20px;
  }

  .carrusel-container {
    width: 100%;
    height: 100%;
  }

  .Secciones_largas {
    width: 100%;
  }

  .Google_maps {
    width: 100%;
    height: 375px;
  }

  .Contenedor_Contacto {
    width: 80%;
  }

  h1 {
    font-size: 10px;
  }

  .parrafos {
    font-size: 15px;
    text-align: left;
    overflow-wrap: break-word; /* Asegura que las palabras largas se dividan */
    word-wrap: break-word; /* Para compatibilidad con navegadores antiguos */
  }

  #S_hoteles {
    width: 80%;
  }

  .Descripcion_index {
    width: 80%;
  }

  #Dolar {
    display: none;
  }
}
