* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, p, li, a {
  line-height: 1.6;
}

h1 { font-size: 45px; font-weight: 700; }
h2 { font-size: 28px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }
p, li, a { font-size: 18px; }


/* HEADER & NAVIGATION */
.top_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  position: relative;
  z-index: 10;
}

.logo {
  height: 60px;
  margin-left: -10px;
}

.main_nav {
  display: flex;
}

.main_nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main_nav a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.main_nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: orange;
  transition: width 0.4s ease-in-out, background-position 0.4s ease-in-out;
}

.main_nav a:hover::after,
.main_nav a.active::after {
  width: 100%;
  background: linear-gradient(to right, orange, #ff9900);
}

.main_nav a.active::after {
  background: linear-gradient(to right, orange, #ff9900);
}

.menu_toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}

.menu_toggle span {
  width: 25px;
  height: 3px;
  background-color: #f7901e;
  border-radius: 2px;
  display: block;
}


@media (max-width: 768px) {
  .menu_toggle {
    display: flex;
  }

  .main_nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
  }

  .main_nav.open {
    display: flex;
  }

  .main_nav ul {
    flex-direction: column;
    gap: 15px;
  }
}
/* HERO SECTIONS */
.hero_section {
  height: 80vh;
  width: 100%;
  margin-top: 10px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

.index_hero {
  background-image: url('imagenes/paisaje-2.jpg');
}

.about_hero {
  background-image: url('imagenes/gorosito-monumento.jpg');
  background-position: top center;
}

.restaurante_hero {
  background-image: url('imagenes/el-deck.webp');
}

.overlay {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.0));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header_contenido {
  padding: 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  text-align: center;
}

.header_contenido h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.header_contenido h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero_section {
    border: none;
    margin: 0;
    padding: 0;
    background-attachment: scroll;
    height: 70vh;
  }
  
  .header_contenido {
    padding: 15px;
    min-height: 50vh;
  }
  
  .header_contenido h1 {
    font-size: 2rem;
    padding: 0 15px;
  }
  
  .header_contenido h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .header_contenido h1 {
    font-size: 1.8rem;
  }
}
/*PRESENTACIÓN*/
.presentacion {
  scroll-margin-top: 100px;
}

.presentacion_contenido{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  gap: 60px;
  background-color: #fff;
}

.presentacion_carrusel {
  flex: 0 0 60%;
  max-width: 700px;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}

.slides {
  display: flex;
  height: 100%;
  animation: slide 12s infinite ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.presentacion_texto {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.presentacion_texto h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: left;
}

.presentacion_texto p {
  margin-bottom: 25px;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
}

@keyframes slide {
  0%, 25% { transform: translateX(0); }
  33%, 58% { transform: translateX(-100%); }
  66%, 91% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

@media (max-width: 992px) {
  .presentacion_contenido{
    flex-direction: column;
    gap: 40px;
    padding: 60px 30px;
  }
  
  .presentacion_carrusel {
    flex: 0 0 auto;
    width: 100%;
    height: 350px;
    max-width: 100%;
  }
  
    .presentacion_texto {
    width: 100%;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }
  
    .presentacion_texto h2 {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 15px;
  }

  
  .presentacion_texto p {
    text-align: left;
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .presentacion_contenido{
    padding: 50px 20px;
    gap: 30px;
  }
  
  .presentacion_carrusel {
    height: 300px;
    border-radius: 10px;
  }
  
  .presentacion_texto h2 {
    font-size: 1.4rem;
  }
  
}
/* Servicios */
.servicios {
  background-color: #f7901e;
  color: white;
  padding: 40px 20px 30px;
}

.servicios h2 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2.1rem;
}

.servicios_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 20px 20px;
  padding: 20px;
}

.servicios_grid_inferior {
  max-width: 600px;
  margin: 20px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 600px;
  padding: 10px;
}

.servicio_item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.servicio_item i {
  font-size: 1.6rem;
  width: 32px;
  height: 32px;
  line-height: 32px;
}

.servicios_subtitulo {
  font-weight: bold;
  margin: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 20px;
}

/* Habitaciones */
.habitaciones {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  color: #222;
}

.titulo-habitaciones {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-align: center;
}

.habitaciones-contenedor {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
}

.habitacion-card {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.25rem;
}

/* Posicionamiento especial para desktop */
.habitacion-card:nth-child(1) { /* Single */
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.habitacion-card:nth-child(2) { /* Doble */
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.habitacion-card:nth-child(3) { /* Triple */
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.habitacion-card:nth-child(4) { /* Matrimonial */
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.habitacion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Imagen destacada */
.habitacion-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 4px solid #ff6f00;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Título en la card */
.habitacion-card h3 {
  margin: 1rem 0 0;
  font-weight: 600;
  font-size: 1.4rem;
  color: #222;
  text-align: center;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
  overflow-y: auto;
}

.modal-contenido {
  background: white;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  margin: 1rem;
}

.modal-contenido img {
  max-width: 100%;
  max-height: 50vh;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  object-fit: contain;
  width: auto;
}

.modal-contenido h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6f00;
}

.modal-contenido p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.modal-cerrar {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ff6f00;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
  padding: 0.5rem;
  z-index: 10;
}

.modal-cerrar:hover {
  color: #cc5200;
}

/* Media Queries Responsivas */
@media (max-width: 768px) {
  /* Layout de habitaciones en móvil */
  .habitaciones-contenedor {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Resetear las posiciones grid específicas */
  .habitacion-card:nth-child(1),
  .habitacion-card:nth-child(2),
  .habitacion-card:nth-child(3),
  .habitacion-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  
  /* Ajustar altura de imágenes en móvil */
  .habitacion-card img {
    height: 220px;
  }
  
  /* Ajustes del modal para tablet */
  .modal-contenido {
    padding: 1.5rem;
  }
  
  .modal-contenido img {
    max-height: 40vh;
    margin-bottom: 1rem;
  }
  
  .modal-contenido h3 {
    font-size: 1.3rem;
  }
  
  .modal-cerrar {
    font-size: 1.8rem;
    top: 5px;
    right: 5px;
  }
}

@media (max-width: 480px) {
  /* Ajustes adicionales para móviles pequeños */
  .titulo-habitaciones {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .habitacion-card h3 {
    font-size: 1.3rem;
  }
  
  .modal-contenido {
    padding: 1.5rem 1rem;
    width: 95%;
  }
  
  .modal-contenido img {
    max-height: 35vh;
  }
}

/* Preguntas frecuentes */
.faq_mapa_section {
  width: 100%;
  padding: 2rem;
}

.faq_mapa_contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  min-height: 600px;
}

.faq_lateral {
  flex: 1 1 50%;
  overflow-y: auto;
}

.faq_lateral h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.faq_container_custom details {
  color: #000;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.faq_container_custom details summary {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 2rem;
}

.faq_container_custom details summary::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #f7901e;
  font-size: 1.5rem;
}

.faq_container_custom details[open] {
  background-color: #f7901e;
  color: #fff;
}

.faq_container_custom details[open] summary::before {
  content: "-";
  color: #fff;
}

.mapa_lateral {
  flex: 1 1 50%;
  border-radius: 12px;
  overflow: hidden;
}

/* Formulario */

.booking-form-section {
  width: 100%;
  padding: 2rem;
  margin-top: 2rem;
}

.booking-form-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.booking-form__input,
.booking-form__select {
  flex: 1 1 20%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
}

/* Botón de envío */
.booking-form__submit {
  flex: 1 1 100%;
  padding: 0.75rem;
  background-color: #f7901e;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.booking-form__submit:hover {
  background-color: orange;
}

.booking-form__submit.enviado {
  background-color: grey;
  cursor: default;
}

.booking-form__success-message {
  display: none;
  text-align: center;
  margin-top: 1rem;
  color: #f7901e;
  font-weight: bold;
}

.booking-form__success-message.visible {
  display: block;
}

/* reseñas */
.seccion-resenas {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.contenedor-resenas {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.titulo-resenas {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitulo-resenas {
  color: #555;
  margin-bottom: 2rem;
}

.carrusel-resenas {
  position: relative;
  overflow: hidden;
}

.resenas-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.resenas-slider::-webkit-scrollbar {
  display: none;
}
.resenas-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tarjeta-resena {
  min-width: 100%;
  max-width: 100%;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

@media (min-width: 600px) {
  .tarjeta-resena {
    min-width: 50%;
  }
}

@media (min-width: 900px) {
  .tarjeta-resena {
    min-width: 33.3333%;
  }
}

.valoracion {
  font-weight: bold;
  color: #f5a623;
}

.autor {
  font-weight: 600;
  margin: 0.5rem 0;
}

.comentario {
  color: #333;
}

.boton-carrusel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  z-index: 1;
}

.boton-carrusel.anterior {
  left: 0;
}

.boton-carrusel.siguiente {
  right: 0;
}

.boton-carrusel:hover {
  background: rgba(0, 0, 0, 0.4);
}
.boton {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* HISTORIA*/
.historia {
  background: #fff;
  padding: 2rem;
}

.historia_contenido {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.historia_texto {
  flex: 1 1 50%;
  min-width: 400px;
}

.historia_texto h3 {
  margin-bottom: 20px;
  font-weight: normal;
  color: #666;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.historia_texto p {
  line-height: 1.9;
  margin-bottom: 15px;
}

.historia_imagenes {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
}

.foto {
  width: 100%;
  max-width: 300px;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.inclinada-izq {
  transform: rotate(-5deg);
  max-width: 400px
}

.inclinada-der {
  transform: rotate(5deg);
  max-width: 500px
}

.foto:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 1;
}

@media (max-width: 768px) {
  .historia_contenido {
    flex-direction: column;
    gap: 40px;
  }
  
  .historia_texto, 
  .historia_imagenes {
    flex: 1 1 100%;
    min-width: auto;
  }
}
/*CLÍNICA*/
.clinica {
  background-image: url('imagenes/clinica-Cruz-del-sur.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.clinica_contenido {
  text-align: center;
}

/* MISIÓN-VISIÓN-VALORES*/
.identidad {
  padding: 2rem;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.identidad_detalle {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.identidad_texto {
  flex: 1 1 500px;
}

.identidad_texto h3 {
  color: #666;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 1.5rem;
}

.identidad_texto h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 60px;
  background-color: #f7901e;
  border-radius: 5px;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.identidad_imagen {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.identidad_imagen img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (max-width: 768px) {
  .identidad_detalle {
    flex-direction: column;
    text-align: left;
  }

  .identidad_texto h3::before {
    left: 0;
    transform: none;
  }
}

/*TURISMO*/
.turismo {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  background-color: #fff;
}

.turismo h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.tarjeta {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.tarjeta figure {
  margin: 0;
}

.tarjeta img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tarjeta figcaption {
  padding: 1rem;
}

.tarjeta h4 {
  margin-top: 0;
  font-size: 1.25rem;
}

.tarjeta .resumen {
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem 0;
  color: #555;
}

.btn-secundario {
  display: inline-block;
  background-color: #f7901e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-secundario:hover {
  background-color: orange;
}

/* BOTONES E ÍCONOS*/
.btn_cta {
  background-color: #f7901e;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn_cta:hover {
  background-color: orange
}

/* Deck */
.deck {
  padding: 2rem;
  background-color: #fdfdfd;
}

.deck-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.deck-text {
  max-width: 700px;
  margin: 0 auto;
}

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

.deck-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Opcional: para mejorar experiencia en móviles */
@media (min-width: 768px) {
  .deck-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .deck-text {
    flex: 1;
  }

  .deck-gallery {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Horarios */
.horarios {
  background-color: #ffffff;
  color: #333;
  padding: 60px 20px 40px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.horarios h2 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #222;
  position: relative;
  display: inline-block;
}

.horarios h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #f7901e;
  border-radius: 2px;
}

.horarios_contenido {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 10px;
}

.horarios_texto ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.horarios_texto ul li {
  background-color: #f7f7f7;
  padding: 14px 20px;
  border-left: 4px solid #f7901e;
  border-radius: 6px;
  font-size: 1.05rem;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s;
}

/* Promociones */
.promociones {
  background-color: #f3f3f3;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.promociones_contenido {
  max-width: 1000px;
  width: 100%;
}

.promociones h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.promociones p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.promociones ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.promociones li {
  background-size: cover;
  background-position: center;
  height: 220px;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.promociones li:nth-child(1) {
  background-image: url('imagenes/rabas.webp');
}
.promociones li:nth-child(2) {
background-image: url('imagenes/pizza-combinada.webp');
}
.promociones li:nth-child(3) {
background-image: url('imagenes/bar.webp');
}

.promociones li span {
  position: relative;
  z-index: 1;
}
/* Responsive */
@media (max-width: 600px) {
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  .deck h2, .horarios h2, .promociones h2 {
    font-size: 1.8rem;
  }

  .horarios h3 {
    font-size: 1.3rem;
  }

  .deck_contacto h3 {
    font-size: 1.5rem;
  }
}

/* WHATSAPP FLOAT */
.whatsapp_float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp_float:hover {
  transform: scale(1.1);
}

.whatsapp_float img {
  width: 30px;
  height: 30px;
}

/* FOOTER*/
.footer {
  background-color: hsl(11, 0%, 0%);
  color: white;
  padding: 40px 20px 20px;
}

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

.footer_columna {
  flex: 1;
  min-width: 250px;
}

.footer_columna h3 {
  color: #f7901e;
  margin-bottom: 15px;
}

.footer_columna p,
.footer_columna a {
  line-height: 1.5;
  color: white;
  transition: color 0.3s ease;
}

.footer_columna a:hover {
  color: #f7901e;
}

.footer_columna i {
  color: #f7901e;
  margin-right: 8px;
}

.footer_copy {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #aaa;
  margin-top: 30px;
}

/*GLOBAL RESPONSIVE ADJUSTMENTS*/

  .presentacion,
  .servicios_contenedor {
    flex-direction: column;
    display: flex;
  }