/* ----------------------------- */
/* Estilos generales */
/* ----------------------------- */
body {
  background-color: #F8F8F8;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ----------------------------- */
/* Estilos de lista */
/* ----------------------------- */
li {
  display: inline;
}

li a:hover {
  background-color: rgb(243, 219, 219);
}

/* ----------------------------- */
/* Encabezado */
/* ----------------------------- */
header {
  background-color: #bcb2ac;
  background-image: url('/assets/img/header/imagen-elcarmen-header.webp'); /* Imagen para desktop */
  background-size: cover;
  background-position: center; /* Centra la imagen */
  height: 400px;
  position: relative;
  padding: 20px;
  text-align: center;
}
/* Ocultar la etiqueta <img> dentro del header */
header .img-container img {
  display: none;
}


.titulo {
  font-size: 24px;
  color: black;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Asegura que el texto esté encima de otros elementos */
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo img {
  width: 100px;
  height: auto;
}

/* Navegación */
/* ----------------------------- */
nav {
  background-color: #B2B2BE;
  padding: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  font-weight: bolder;
  text-transform: uppercase;
  text-decoration: none;
}

/* Estilos para dispositivos móviles */
@media (max-width: 767px) {
  header {
    background-image: url('/elcarmenderojas.online/assets/img/header/principal.webp'); /* Imagen para móviles */
    height: auto; /* Ajusta la altura automáticamente */
    padding: 10px;
  }

  .titulo {
    font-size: 18px;
    text-align: center;
    margin-top: 50px; /* Espacio adicional para el logo */
  }

  .logo {
    position: static; /* Elimina la posición absoluta */
    margin: 0 auto 10px; /* Centra el logo y agrega margen */
    text-align: center;
  }

  .logo img {
    width: 80px; /* Reduce el tamaño del logo en móviles */
  }

  nav ul {
    flex-direction: column; /* Cambia la disposición de los elementos a vertical */
  }

  nav a {
    padding: 10px;
  }
}

/* ----------------------------- */
/* Estilos para la sección introductoria */
/* ----------------------------- */

.intro {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #FFF1D0;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.intro h1 {
  font-size: 2.5rem;
  color: #555555;
  margin-bottom: 0.5rem;
}

.intro .lead {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 1rem;
}

.intro .descripcion {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}
/* ----------------------------- */
/* Estilos para la sección de alojamientos */
/* ----------------------------- */

.alojamientos {
  padding: 2rem 1rem;
}

.alojamientos h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
}

.alojamientos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.alojamiento-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.alojamiento-card img {
  max-width: 100%;
  border-radius: 8px;
}

.alojamiento-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 1rem 0;
}

.alojamiento-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.alojamiento-card .contenido-extra {
  display: none;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.alojamiento-card .expandir,
.alojamiento-card .reducir {
  background-color: #2c3e50;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.alojamiento-card .expandir:hover,
.alojamiento-card .reducir:hover {
  background-color: #1a252f;
}

/* ----------------------------- */
/* Estilos para la sección del video */
/* ----------------------------- */

.video-section {
  padding: 2rem 1rem;
  background-color: #f4f4f4;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.video-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1.5rem;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-container video {
  max-width: 100%;
  border-radius: 8px;
}

.video-container figcaption {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.5rem;
}

/* ----------------------------- */
/* Estilos para la sección del video en index.html */
/* ----------------------------- */

.video-section {
  padding: 2rem 1rem;
  background-color: #f4f4f4;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.video-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1.5rem;
}

.video-container {
  max-width: 800px; /* Limita el ancho máximo del contenedor */
  margin: 0 auto;   /* Centra el contenedor horizontalmente */
  text-align: center;
}

.video-container video {
  width: 100%;      /* Ocupa el 100% del ancho del contenedor */
  height: auto;     /* Mantiene la proporción del video */
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

.video-container figcaption {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.5rem;
  text-align: center; /* Centra el texto del pie de foto */
}
/* ----------------------------- */
/* Estilos para el aside (CTA) */
/* ----------------------------- */

.cta-section {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #FFF1D0;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.cta-section h3 {
  font-size: 1.75rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.cta-section .cta-button {
  background-color: #2c3e50;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}

.cta-section .cta-button:hover {
  background-color: #1a252f;
}
/* ----------------------------- */
/* Galería */
/* ----------------------------- */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 100%;
  max-width: 200px;
  padding: 5px;
  box-sizing: border-box;
}
/* ----------------------------- */
/* Galería específica para Nosotros.html */
/* ----------------------------- */
.nosotros-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 20px;
  justify-items: center;
}

.nosotros-gallery .img-container {
  text-align: center;
}

.nosotros-gallery .img-pequena {
  max-width: 100%;
  height: auto;
  border: 2px solid #000;
  border-radius: 5px;
}

.nosotros-gallery .img-container figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* ----------------------------- */
/* Galería específica para La Matera y El studio*/
/* ----------------------------- */

.galeria {
  padding: 2rem 1rem;
}

.galeria h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.gallery-card img { 
  max-width: 100%;
  border-radius: 8px;
}

.gallery-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 1rem 0;
}

.gallery-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* ----------------------------- */
/* Aside de comodidades para La Matera y El studio */
/* ----------------------------- */

.comodidades {
  padding: 2rem 1rem;
  background-color: #FFF1D0; /* Color cálido */
  border-radius: 8px;
  margin-bottom: 2rem;
}

.comodidades h3 {
  font-size: 1.75rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.comodidades p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.comodidades ul {
  list-style-type: none; /* Elimina las viñetas por defecto */
  padding-left: 0;
  color: #555;
}

.comodidades ul li {
  position: relative;
  padding-left: 25px; /* Espacio para el ícono */
  margin-bottom: 0.75rem; /* Espacio entre elementos */
  font-size: 1rem;
}

.comodidades ul li::before {
  content: "★"; /* Ícono de estrella */
  position: absolute;
  left: 0;
  color: #FF9800; /* Color naranja */
  font-size: 1rem;
}

/* ----------------------------- */
/* Estilos para la sección de historia */
/* ----------------------------- */

.historia {
  padding: 2rem 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.historia h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.historia p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.historia .agradecimiento {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

/* ----------------------------- */
/* Estilos para la sección de historia del index */
/* ----------------------------- */

.historia-section {
  padding: 2rem 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  max-width: 800px; /* Limita el ancho para mejorar la lectura */
  margin: 0 auto;   /* Centra la sección */
}

.historia-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1.5rem;
}

.historia-content {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6; /* Mejora la legibilidad */
  text-align: justify; /* Justifica el texto */
}

.historia-content p {
  margin-bottom: 1rem; /* Espacio entre párrafos */
}
/* ----------------------------- */
/* Estilos para la sección de historia personal */
/* ----------------------------- */

.historia-personal {
  padding: 2rem 1rem;
  background-color: #f4f4f4;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.historia-personal h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.historia-personal p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* ----------------------------- */
/* Estilos para los testimonios */
/* ----------------------------- */

.testimonial {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial blockquote {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial p {
  font-size: 1rem;
  color: #777;
  text-align: right;
}

/* ----------------------------- */
/* Estilos de video */
/* ----------------------------- */
video {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

video:not([controls]) {
  display: none;
}

/* ----------------------------- */
/* Estilos de sección */
/* ----------------------------- */
section {
  text-align: center;
}

/* ----------------------------- */
/* Encabezados y párrafos */
/* ----------------------------- */
h1 {
  font-weight: bold;
  font-size: large;
  color: #292927;
  margin: 1px;
  border: 5px;
  border-width: 5px;
  border-color: #2b2323;
  margin-left: 2px;
}

h2 {
  font-weight: bold;
  font-size: medium;
  color: #292927;
  text-align: center;
}

h3 {
  font-weight: lighter;
  font-size: medium;
  color: #292927;
  font-style: italic;
}

h4 {
  font-weight: bold;
  font-size: smaller;
  color: #292927;
  font-style: italic;
  text-align: right;
}

p {
  color: grey;
  font-size: medium;
  font-weight: lighter;
  margin-left: 40px;
  margin-right: 40px;
}

/* ----------------------------- */
/* Botones */
/* ----------------------------- */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FF9800;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 10px;
}

.cta-button:hover {
  background-color: #FFC107;
}

/* ----------------------------- */
/* Actividades y servicios */
/* ----------------------------- */
.activities-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.activities-section .img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activities-section .img-pequena {
  max-width: 100%;
  height: auto;
}

.activities-section figcaption {
  margin-top: 10px;
  text-align: center;
}

/* ----------------------------- */
/* Aside */
/* ----------------------------- */
.aside-content {
  background-color: #f7f7f7;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.aside-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #292927;
}

.aside-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}

.promo-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.promo-details {
  font-size: 0.8rem;
  color: #666;
}

.aside-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.aside-content ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #FF9800;
}

/* ----------------------------- */
/* Videos */
/* ----------------------------- */
.video-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}

.video-container {
  flex: 1 1 calc(33.33% - 20px);
  text-align: center;
}

.video-container video {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.video-container figcaption {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

/* ----------------------------- */
/* Estilos específicos para el video en index.html */
/* ----------------------------- */

.video-index .video-container {
  max-width: 800px; /* Limita el ancho del contenedor */
  margin: 0 auto;   /* Centra el contenedor */
  padding: 0 1rem;  /* Añade un poco de padding lateral */
  text-align: center;
}

.video-index .video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-index .video-container figcaption {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.5rem;
  text-align: center;
}

/* ----------------------------- */
/* Responsividad */
/* ----------------------------- */
@media (max-width: 767px) {
  iframe {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  iframe {
    width: 50%;
    height: 500px;
  }
}

@media (min-width: 992px) {
  iframe {
    width: 50%;
    height: 500px;
  }
}
/* ----------------------------- */
/* Estilos generales del footer */
/* ----------------------------- */

footer {
  background-color: #2c3e50; /* Color de fondo oscuro */
  color: #ffffff; /* Texto blanco */
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #FF9800; /* Color naranja para los títulos */
}

.footer-column p, .footer-column ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #FF9800; /* Color naranja al pasar el cursor */
}

/* ----------------------------- */
/* Estilos para los íconos de redes sociales */
/* ----------------------------- */

.social-links li a {
  display: flex;
  align-items: center;
}

.social-links li a i {
  margin-right: 10px;
  font-size: 18px;
}
.footer-links li a {
  display: flex;
  align-items: center;
}

.footer-links li a i {
  margin-right: 10px;
  font-size: 18px;
}
/* ----------------------------- */
/* Estilos para la sección inferior del footer */
/* ----------------------------- */

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 12px;
  color: #ccc;
}

/* ----------------------------- */
/* Estilos para el selector de idioma */
/* ----------------------------- */

.language-selector {
  text-align: center;
  margin-top: 20px;
}

.lang-btn {
  display: inline-block;
  padding: 8px 15px;
  margin: 5px;
  background-color: #FF9800; /* Naranja */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease; /* Cambio aquí */
}

.lang-btn:hover {
  background-color: #e68900; /* Un tono más oscuro al pasar el cursor */
}

/* ----------------------------- */
/* Estilos específicos para nosotros.html */
/* ----------------------------- */

/* Historias personales */
.historia-personal {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

.historia-personal-card {
  display: flex;
  flex-direction: column; /* Cambiamos a columna para móviles */
  align-items: center; /* Centramos el contenido */
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.historia-personal-card .img-container {
  flex: 1;
  max-width: 100%; /* Aseguramos que la imagen ocupe el ancho completo */
}

.historia-personal-card .img-container img {
  border-radius: 10px;
  width: 100%; /* Aseguramos que la imagen sea responsive */
  height: auto; /* Mantenemos la proporción de la imagen */
}

.historia-personal-card .historia-texto {
  flex: 2;
  text-align: center; /* Centramos el texto */
}

.historia-personal-card h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.historia-personal-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .historia-personal-card {
    flex-direction: column; /* Aseguramos que el contenido se apile verticalmente */
    align-items: center; /* Centramos el contenido */
  }

  .historia-personal-card .img-container {
    max-width: 100%; /* Aseguramos que la imagen ocupe el ancho completo */
  }

  .historia-personal-card .historia-texto {
    text-align: center; /* Centramos el texto */
  }
}

/* Galería de imágenes */
.galeria {
  margin: 40px 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
}

.gallery-card img {
  max-width: 100%;
  border-radius: 10px;
}

.gallery-card h3 {
  font-size: 18px;
  color: #2c3e50;
  margin: 10px 0;
}

.gallery-card p {
  font-size: 14px;
  color: #777;
}

/* Testimonios */
.testimonial {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.testimonial blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #FF9800;
  padding-left: 15px;
  margin: 0 0 10px;
}

.testimonial p {
  text-align: right;
  font-weight: bold;
  color: #333;
}

/* Botón de llamado a la acción */
.cta-section {
  text-align: center;
  margin: 40px 0;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FF9800;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e68900;
}

/* ----------------------------- */
/* Estilos para los botones "Leer más" y "Reducir" */
/* ----------------------------- */

.contenido-extra {
  display: none; /* Oculta el contenido adicional por defecto */
  margin-top: 10px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
}

.expandir, .reducir {
  background-color: #FF9800;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.expandir:hover, .reducir:hover {
  background-color: #e68900;
}

.reducir {
  display: none; /* Oculta el botón "Reducir" por defecto */
}
/* ----------------------------- */
/* Sección Experiencias - Home */
/* ----------------------------- */

.experiencias {
  padding: 2rem 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 1200px;
}

.experiencias h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1rem;
}

.experiencias .subtitle,
.faqs-home .subtitle {
  font-size: 1.05rem;
  color: #666;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2rem;
}

.experiencias-resumen {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.experiencia-score {
  background-color: #FFF1D0;
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
}

.score-numero {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.score-estrellas {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #FF9800;
  margin-bottom: 0.75rem;
}

.score-texto {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.experiencia-puntos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.punto-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.punto-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  font-style: normal;
  margin-bottom: 0.75rem;
}

.punto-card p {
  font-size: 0.98rem;
  color: #555;
  margin: 0 10px;
}


/* ----------------------------- */
/* FAQs Home */
/* ----------------------------- */

.faqs-home {
  padding: 2rem 1rem;
  background-color: #FFF1D0;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 1200px;
}

.faqs-home h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: bold;
  color: #2c3e50;
  position: relative;
  padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FF9800;
  font-weight: bold;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-respuesta {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-item .faq-respuesta p {
  margin: 0;
  color: #555;
  font-size: 1rem;
}

/* ----------------------------- */
/* Responsive */
/* ----------------------------- */

@media (max-width: 767px) {
  .experiencias-resumen {
    grid-template-columns: 1fr;
  }

  .score-numero {
    font-size: 2.5rem;
  }

  .faq-item summary {
    font-size: 1rem;
  }
}
/* ----------------------------- */
/* Dónde queda / Cómo llegar */
/* ----------------------------- */

.como-llegar {
  padding: 2rem 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 1200px;
}

.como-llegar h2 {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1rem;
}

.como-llegar .subtitle {
  font-size: 1.05rem;
  color: #666;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2rem;
}

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

.llegar-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.llegar-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  font-style: normal;
  margin-bottom: 0.75rem;
  text-align: center;
}

.llegar-card p {
  color: #555;
  font-size: 0.98rem;
  margin-left: 10px;
  margin-right: 10px;
}

.llegar-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.llegar-card ul li {
  display: block;
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.como-llegar-botones {
  text-align: center;
  margin-top: 1rem;
}

.nota-llegada {
  text-align: center;
  font-size: 0.92rem;
  color: #777;
  margin-top: 1rem;
}
/* ----------------------------- */
/* Ajuste fino del hero / H1 home */
/* ----------------------------- */

.intro {
  margin: 0 auto 3rem;
  padding: 2.5rem 1.25rem;
}

.intro h1 {
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.intro .lead {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.intro .descripcion {
  line-height: 1.7;
}

/* ----------------------------- */
/* Aire entre bloques de la home */
/* ----------------------------- */

.alojamientos,
.experiencias,
.faqs-home,
.como-llegar,
.historia-section,
.cta-section {
  margin-top: 0;
  margin-bottom: 3rem;
}
/* ----------------------------- */
/* Reviews en galería flexible */
/* ----------------------------- */

.experiencias-citas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.cita-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ececec;
  border-left: 4px solid #FF9800;
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  text-align: left;
  min-height: 100%;
}

.experiencias .cita-card blockquote {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

.cita-fuente {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.92rem;
  color: #777;
  font-weight: bold;
  text-align: left;
}

/* ----------------------------- */
/* Responsive */
/* ----------------------------- */

@media (max-width: 767px) {
  .intro h1 {
    font-size: 1.7rem;
  }

  .intro .lead {
    font-size: 1.15rem;
  }

  .experiencias-citas {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------- */
/* Landing descanso / escapada de campo */
/* ----------------------------- */

.landing-descanso {
  width: 100%;
}

.landing-hero {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 3rem 1.25rem;
}

.landing-hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.landing-hero .lead {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.landing-hero .descripcion {
  max-width: 900px;
  line-height: 1.75;
}

.landing-hero-botones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.cta-secundario {
  background-color: #2c3e50;
}

.cta-secundario:hover {
  background-color: #1a252f;
}

.landing-bloque {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 2.25rem 1.25rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.landing-bloque h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.landing-texto-ancho {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
}

.landing-personas {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.landing-card-persona {
  position: relative;
  padding-top: 1.5rem;
}

.landing-icono {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #FFF1D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9800;
  font-size: 1.4rem;
}

.landing-diferencial {
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: center;
}

.landing-diferencial h3 {
  font-size: 1.9rem;
  font-style: normal;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.landing-diferencial p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.landing-beneficios {
  text-align: center;
}

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

.landing-beneficios .punto-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  height: 100%;
}

.landing-beneficios .punto-card h3 {
  font-size: 1.2rem;
  font-style: normal;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.landing-beneficios .punto-card p {
  margin-left: 15px;
  margin-right: 15px;
}

.landing-alojamientos {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.landing-alojamientos .alojamiento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-alojamientos .alojamiento-card figcaption {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.landing-alojamientos .cta-button {
  margin-top: auto;
  align-self: center;
}

.landing-mini {
  font-size: 0.96rem;
  color: #666;
}

.landing-historia {
  margin-bottom: 3rem;
}

.landing-resenas {
  margin-bottom: 3rem;
}

.landing-resenas .subtitle {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.landing-resenas .cita-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-faqs {
  margin-bottom: 3rem;
}

.landing-cierre {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.landing-cierre h3 {
  font-size: 1.9rem;
  font-style: normal;
  color: #2c3e50;
}

.landing-cierre p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Afinado de espaciados internos */
.landing-descanso .intro,
.landing-descanso .galeria,
.landing-descanso .alojamientos,
.landing-descanso .experiencias,
.landing-descanso .faqs-home,
.landing-descanso .cta-section,
.landing-descanso .comodidades,
.landing-descanso .historia-section {
  margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 767px) {
  .landing-hero {
    padding: 2.2rem 1rem;
  }

  .landing-hero h1 {
    font-size: 1.85rem;
  }

  .landing-hero .lead {
    font-size: 1.15rem;
  }

  .landing-bloque h2,
  .landing-personas h2,
  .landing-alojamientos h2,
  .landing-resenas h2,
  .landing-faqs h2,
  .landing-historia h2 {
    font-size: 1.6rem;
  }

  .landing-diferencial h3,
  .landing-cierre h3 {
    font-size: 1.5rem;
  }

  .landing-hero-botones {
    flex-direction: column;
    gap: 0.75rem;
  }

  .landing-hero-botones .cta-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}