/* ================================================================
   RIZZO PLAZA HOTEL - STYLE.CSS OPTIMIZADO
   ================================================================
   
   Índice:
   1. Imports y Variables
   2. Reset y Base Styles
   3. Tipografía
   4. Scrollbar
   5. Navegación
   6. Banner Principal
   7. Secciones de Contenido
   8. Habitaciones (Carrusel)
   9. Servicios
   10. Footer
   11. Responsive
   12. Espacio para nuevas secciones
   
   ================================================================ */

/* ================================================================
   1. IMPORTS Y VARIABLES
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
  /* Colores principales */
  --color-primary: #6a3f10;
  --color-secondary: #e59e41;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #666666;
  --color-gray-light: #b8b8b8;
  --color-gray-dark: #333333;

  /* Colores de estado */
  --color-success: #128f0b;
  --color-danger: #ff005a;
  --color-warning: #d69c4f;

  /* Fondos */
  --bg-light: #f5f5f5;
  --bg-dark: #1a1a1a;

  /* Medidas */
  --max-width: 1200px;
  --border-radius: 8px;
  --transition: all 0.3s ease;

  /* Sombras */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #6a3f10, #e59e41);
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

/* ================================================================
   2. RESET Y BASE STYLES
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

/* ================================================================
   3. TIPOGRAFÍA
   ================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
}
h2 {
  font-size: clamp(28px, 4vw, 36px);
}
h3 {
  font-size: clamp(24px, 3vw, 32px);
}
h4 {
  font-size: clamp(20px, 2.5vw, 26px);
}
h5 {
  font-size: clamp(18px, 2vw, 22px);
}
h6 {
  font-size: clamp(16px, 1.5vw, 18px);
}

p {
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ================================================================
   4. SCROLLBAR PERSONALIZADA
   ================================================================ */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ================================================================
   5. NAVEGACIÓN
   ================================================================ */

.mobile-menu-overlay {
  display: none;
  left: -100%;
  transition: left 0.3s ease;
}
  
/* Top Bar - Oculto */
.kf-top-bar {
  display: none !important;
}

/* Navegación Principal */
.kf-navigation-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 9999;
  background: transparent;
  transition: background 0.08s linear, padding 0.08s linear,
    box-shadow 0.08s linear;
}

.kf-navigation-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 80%,
    transparent 100%
  );
  z-index: -1;
  transition: opacity 0.08s linear;
}

/* Navegación fija al hacer scroll */
.kf-navigation-wrap.scrolled {
  position: fixed;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.kf-navigation-wrap.scrolled::before {
  opacity: 0;
}

/* Container del header */
.kf-navigation-wrap .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.kf-navigation-wrap .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Logo */
.kf-logo {
  display: flex;
  align-items: center;
}

.kf-logo img {
  max-height: 70px;
  width: auto;
  transition: max-height 0.12s ease;
}

.kf-navigation-wrap.scrolled .kf-logo img {
  max-height: 55px;
}

/* Menú de navegación */
.kf-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex: 1;
}

#nav-main {
  flex: 1;
}

.kf-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: 0;
  padding: 0;
}

/* Menú hamburguesa - Oculto en desktop */
#nav-trigger {
  display: none !important;
}

.kf-nav ul li {
  display: inline-block;
}

.kf-nav ul li a {
  display: block;
  padding: 8px 15px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.kf-nav ul li a:hover,
.kf-nav ul li.active a {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.kf-navigation-wrap.scrolled .kf-nav ul li a {
  text-shadow: none;
}

/* Submenús */
.kf-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--color-secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.kf-nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kf-nav ul ul li {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kf-nav ul ul li:last-child {
  border-bottom: none;
}

.kf-nav ul ul li a {
  padding: 12px 20px;
  font-size: 13px;
  text-shadow: none;
}

.kf-nav ul ul li a:hover {
  background: var(--color-secondary);
  color: var(--color-black);
}

/* Botón de reservar */
.kf-nav-search .small-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.kf-nav-search .small-btn:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================================
   6. BANNER PRINCIPAL
   ================================================================ */

.kf-home-banner {
  position: relative;
  height: 460px;
  overflow: hidden;
  margin: 0;
}

.kf-home-banner figure,
.kf-home-banner figure img,
.kf-home-banner .owl-carousel,
.kf-home-banner .owl-carousel .item {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* Overlay del banner */
.kf-home-banner figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Texto del banner */
.kf-home-banner figure figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.kf-home-banner figure figcaption p,
.kf-home-banner figure figcaption h2 {
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}

/* Controles del carrusel */
.kf-home-banner .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.kf-home-banner .owl-nav button {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6) !important;
  color: var(--color-white) !important;
  border-radius: 50%;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  transition: var(--transition);
  opacity: 1;
}

.kf-home-banner .owl-nav .owl-prev {
  left: 30px;
}

.kf-home-banner .owl-nav .owl-next {
  right: 30px;
}

.kf-home-banner .owl-nav button:hover {
  background: rgba(229, 158, 65, 0.9) !important;
  transform: scale(1.1);
}

/* Dots del carrusel */
.kf-home-banner .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.kf-home-banner .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.kf-home-banner .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: var(--transition);
}

.kf-home-banner .owl-dots .owl-dot.active span,
.kf-home-banner .owl-dots .owl-dot:hover span {
  background: var(--color-secondary);
  transform: scale(1.3);
}

/* ================================================================
   7. SECCIONES DE CONTENIDO
   ================================================================ */

/* Container general */
.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 0px;
}

/* About Section */
.about__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.about__image img {
  max-width: 450px;
  margin: 0 auto;
  border-radius: var(--border-radius);
}

.about__content {
  text-align: justify;
}

.section__subheader {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section__header {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.section__description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 2rem;
  text-align: justify;
}

/* Botones */
.btn,
.about__btn .btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: none;
}

.btn:hover,
.about__btn .btn:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================================
   8. HABITACIONES (CARRUSEL)
   ================================================================ */

.rooms-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: var(--color-gray);
}

/* Tarjeta de habitación */
.room-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 15px;
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.room-slider {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.room-slider img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-slider img {
  transform: scale(1.05);
}

/* Tags */
.room-tag {
  position: absolute;
  top: 15px;
  left: 0;
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  background: var(--color-danger);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  z-index: 10;
}

/* Contenido de la tarjeta */
.room-content {
  padding: 15px;
}

/* Contenido de la tarjeta */
.room-vermas {
  gap: 20px;
  padding: 30px;
  height: 252px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.room-vermas p.paragraph {
  margin: 0;
}

.room-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.room-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.rating-score {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
}

.rating-stars {
  color: var(--color-warning);
  font-size: 12px;
}

.rating-count {
  font-size: 11px;
  color: var(--color-gray);
}

.room-description {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.room-description i {
  color: var(--color-secondary);
}

.room-description p {
  margin-bottom: 0px;
}

/* Características */
.room-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.feature-item.available {
  color: var(--color-success);
}

.feature-item.unavailable {
  color: #999;
}

.feature-item i {
  font-size: 10px;
}

/* Precios */
.room-pricing {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.price-label {
  font-size: 11px;
  color: var(--color-gray);
  margin-bottom: 3px;
}

.price-original {
  font-size: 12px;
  color: #999;
  margin-right: 6px;
}

.price-current {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-black);
}

.price-discount {
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.price-details {
  font-size: 10px;
  color: #999;
  margin-top: 3px;
}

.life-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  background: #fff9e6;
  color: var(--color-warning);
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 6px;
}

/* Botón de reserva */
.btn-reserve {
  width: 100%;
  padding: 10px 16px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-reserve:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.validity-date {
  padding: 6px 10px;
  background: var(--bg-light);
  font-size: 10px;
  color: var(--color-gray);
  text-align: center;
  border-radius: 4px;
  margin-top: 8px;
}

.validity-date strong {
  color: var(--color-black);
}

/* Controles del carrusel de habitaciones */
.rooms-section .owl-nav button {
  position: absolute !important;
  top: 40% !important;
  transform: translateY(-50%) !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(0, 0, 0, 0.6) !important;
  color: var(--color-white) !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 50px !important;
  text-align: center !important;
  transition: var(--transition) !important;
  opacity: 1 !important;
  z-index: 100 !important;
}

.rooms-section .owl-nav button:hover {
  background: rgba(229, 158, 65, 0.9) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.rooms-section .owl-nav .owl-prev {
  left: -25px !important;
}

.rooms-section .owl-nav .owl-next {
  right: -25px !important;
}

.rooms-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.rooms-section .owl-dots .owl-dot {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 50% !important;
  margin: 0 5px !important;
  transition: var(--transition) !important;
}

.rooms-section .owl-dots .owl-dot.active {
  background: var(--color-secondary) !important;
  transform: scale(1.3) !important;
}

.rooms-section .owl-dots .owl-dot span {
  display: none !important;
}

/* ================================================================
   9. SERVICIOS
   ================================================================ */

.service {
  background-image: url("Imagenes/RizzoMono.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

.service__content {
  grid-column: 2/3;
  padding: 30px 60px;
  background-color: var(--color-white);
}

.service__list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
}

.service__list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: var(--color-white);
  background: var(--gradient-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================================
   10. FOOTER
   ================================================================ */

.footer-section {
  background: var(--gradient-dark);
  color: var(--color-gray-light);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%236a3f10" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>')
    no-repeat top center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.footer-section > * {
  position: relative;
  z-index: 1;
}

#footer-top {
  padding: 60px 0 30px;
}

.footer-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section .col-md-3,
.footer-section .col-md-4 {
  flex: 1;
  min-width: 250px;
}

/* Logo y descripción */
.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-light);
  margin-bottom: 20px;
  text-align: justify;
}

/* Redes sociales */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(229, 158, 65, 0.4);
}

/* Títulos del footer */
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), transparent);
}

/* Enlaces del footer */
.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-gray-light);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-section ul li a i,
.footer-section ul li i {
  margin-right: 10px;
  color: var(--color-secondary);
  font-size: 12px;
}

/* Contacto */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--color-gray-light);
  transition: var(--transition);
}

.contact-item:hover {
  color: var(--color-white);
}

.contact-item i {
  color: var(--color-secondary);
  font-size: 16px;
  margin-top: 3px;
  min-width: 20px;
}

.contact-item a {
  color: var(--color-gray-light);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--color-secondary);
}

/* Newsletter */
.newsletter-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 158, 65, 0.2);
  border-radius: var(--border-radius);
  margin-top: 20px;
}

.newsletter-box p {
  font-size: 13px;
  color: var(--color-gray-light);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 14px;
  border-radius: 4px;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 158, 65, 0.3);
}

/* Footer Bottom */
#footer-bottom {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#copyright {
  font-size: 13px;
  color: #888;
}

#copyright a {
  color: var(--color-secondary);
  font-weight: 600;
  transition: var(--transition);
}

#copyright a:hover {
  color: var(--color-white);
}

#terms ul {
  display: flex;
  gap: 20px;
}

#terms a {
  font-size: 13px;
  color: #888;
  transition: var(--transition);
}

#terms a:hover {
  color: var(--color-secondary);
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}

.developer-credit img {
  height: 25px;
  width: auto;
  filter: grayscale(1) brightness(1.2);
  transition: var(--transition);
}

.developer-credit img:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.1);
}

/* ================================================================
SECCIÓN DE TESTIMONIOS
================================================================ */

.testimonials {
  background: var(--color-white);
  padding: 40px 0px;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: var(--color-gray);
}

/* Tarjeta de testimonio */
.testimonial-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin: 20px 15px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

/* Comillas decorativas */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 80px;
  color: var(--color-secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 20px;
  font-style: italic;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 10px;
}

.testimonial-card span {
  font-size: 20px;
  color: #ffc107;
  letter-spacing: 3px;
}

/* Avatar del cliente (opcional) */
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--color-secondary);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Controles del carrusel de testimonios */
#testimonios-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6) !important;
  color: var(--color-white) !important;
  border-radius: 50%;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

#testimonios-carousel .owl-nav button:hover {
  background: rgba(229, 158, 65, 0.9) !important;
  transform: translateY(-50%) scale(1.1);
}

#testimonios-carousel .owl-nav .owl-prev {
  left: -25px;
}

#testimonios-carousel .owl-nav .owl-next {
  right: -25px;
}

#testimonios-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

#testimonios-carousel .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

#testimonios-carousel .owl-dot.active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

#testimonios-carousel .owl-dot span {
  display: none;
}

/* ================================================================
SECCIÓN DE CONTACTO
================================================================ */

.contact {
  background: var(--color-white);
  padding: 40px 0px;
  overflow: hidden;
}

.contact__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Título de la sección */
.contact__header {
  text-align: center;
  margin-bottom: 50px;
}

.contact__header .section__subheader {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.contact__header h2 {
  font-size: 36px;
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact__header p {
  font-size: 16px;
  color: var(--color-gray);
}

/* Contenedor de 2 columnas */
.contact__container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Columna izquierda - Imagen */
.contact__image {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact__image:hover img {
  transform: scale(1.05);
}

/* Overlay en la imagen con info */
.contact__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 40px 30px 30px;
  color: var(--color-white);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact__info-item:last-child {
  margin-bottom: 0;
}

.contact__info-item i {
  font-size: 20px;
  color: var(--color-secondary);
  min-width: 25px;
}

.contact__info-item a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__info-item a:hover {
  color: var(--color-secondary);
}

/* Columna derecha - Formulario */
.contact__form-wrapper {
  padding: 30px 40px;
  background: var(--color-white);
}

.contact__form-header {
  margin-bottom: 30px;
}

.contact__form-header h3 {
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 8px;
}

.contact__form-header p {
  font-size: 14px;
  color: var(--color-gray);
}

/* Formulario */
#form-whatsapp {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #f8f8f8;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  color: var(--color-black);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(229, 158, 65, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* Grid para fechas */
.date-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Textarea */
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 150px;
}

/* Botón de envío */
.btn-whatsapp {
  width: 100%;
  padding: 15px 30px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 63, 16, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-whatsapp:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 63, 16, 0.4);
}

.btn-whatsapp i {
  font-size: 20px;
}

/* Badge de característica */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(229, 158, 65, 0.1);
  border: 1px solid rgba(229, 158, 65, 0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--color-primary);
  margin-top: 15px;
}

.feature-badge i {
  color: var(--color-secondary);
}

/* ================================================================
           BOTÓN FLOTANTE DE WHATSAPP
           ================================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
}

/* Tooltip del botón WhatsApp */
.whatsapp-float::before {
  content: "¿Necesitas ayuda?";
  position: absolute;
  right: 70px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* ================================================================
   11. RESPONSIVE
   ================================================================ */

/* Tablets y móviles grandes (991px y menos) */
@media (max-width: 991px) {
  /* Fondo oscuro fijo */
  .kf-navigation-wrap {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 15px 0 !important;
    position: fixed !important;
  }

  .kf-navigation-wrap .row {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    align-items: center;
    justify-content: space-between;
  }

  /* Botón hamburguesa */
  #nav-trigger {
    display: flex !important;
    align-items: center;
    order: 1;
    z-index: 10001;
  }

  #nav-trigger span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
  }

  #nav-trigger span:hover {
    color: var(--color-secondary);
  }

  /* Logo centrado */
  .kf-navigation-wrap .col-md-3 {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .kf-logo img {
    max-height: 50px !important;
  }

  /* Ocultar menú desktop y botón reservar */
  .kf-navigation-wrap .col-md-9 {
    display: none !important;
  }


  /* Menú móvil overlay */
  .mobile-menu-overlay {
    display: block !important;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    z-index: 99999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
  }

  .mobile-menu-overlay.active {
    left: 0;
  }

  /* Header del menú móvil */
  .mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-close {
    cursor: pointer;
  }

  .mobile-menu-close span {
    font-size: 28px;
    color: var(--color-primary);
    transition: var(--transition);
  }

  .mobile-menu-close span:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
  }

  /* Contenido del menú */
  .mobile-menu-content {
    padding: 0;
  }

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-list li {
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-list li a {
    display: block;
    padding: 20px 30px;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
  }

  .mobile-menu-list li a:hover {
    background: var(--bg-light);
    color: var(--color-secondary);
    padding-left: 40px;
  }

  /* Footer del menú móvil */
  .mobile-menu-footer {
    padding: 30px;
    border-top: 1px solid #eee;
    margin-top: 20px;
  }

  .mobile-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
  }

  .mobile-reserve-btn:hover {
    background: linear-gradient(
      135deg,
      var(--color-secondary),
      var(--color-primary)
    );
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .mobile-reserve-btn i {
    font-size: 20px;
  }

  /* Overlay oscuro de fondo */
  body.menu-open {
    overflow: auto !important;;
  }


  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Banner */
  .kf-home-banner,
  .kf-home-banner figure,
  .kf-home-banner figure img,
  .kf-home-banner .owl-carousel,
  .kf-home-banner .owl-carousel .item {
    height: 400px !important;
  }

  .kf-home-banner .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 18px !important;
  }

  .kf-home-banner .owl-nav .owl-prev {
    left: 10px !important;
  }

  .kf-home-banner .owl-nav .owl-next {
    right: 10px !important;
  }

  .kf-home-banner .owl-dots {
    bottom: 15px !important;
  }

  /* About */
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__image img {
    max-width: 100%;
  }

  /* Servicios */
  .service__container {
    grid-template-columns: 1fr;
  }

  .service__content {
    grid-column: 1;
    padding: 40px 20px;
  }

  /* Habitaciones */
  .rooms-section .owl-nav .owl-prev {
    left: -15px !important;
  }

  .rooms-section .owl-nav .owl-next {
    right: -15px !important;
  }

  /* Footer */
  .footer-section .col-md-3,
  .footer-section .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #footer-top {
    padding: 40px 0 20px;
  }

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

  #terms ul {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Tablets pequeños (768px y menos) */
@media (max-width: 768px) {
  /* Tipografía */
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }

  /* ================================================================
   NAVEGACIÓN RESPONSIVE TABLETS (768px y menos)
   ================================================================ */
  @media (max-width: 768px) {
    .kf-logo img {
      max-height: 45px !important;
    }

    .mobile-menu-overlay {
      width: 90%;
    }
  }

  .kf-nav-search .small-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  #nav-trigger span {
    padding: 8px 11px;
    font-size: 18px;
  }

  /* Secciones */
  .section__container {
    padding: 60px 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  /* Habitaciones */
  .rooms-section {
    padding: 60px 20px;
  }

  .room-card {
    margin: 10px 5px;
  }

  .room-slider,
  .room-slider img {
    height: 160px;
  }

  .rooms-section .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 18px !important;
  }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
  .kf-logo img {
    max-height: 40px !important;
  }

  .kf-nav-search .small-btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  /* Banner */
  .kf-home-banner,
  .kf-home-banner figure,
  .kf-home-banner figure img,
  .kf-home-banner .owl-carousel,
  .kf-home-banner .owl-carousel .item {
    height: 300px !important;
  }

  .kf-home-banner figure figcaption h2 {
    font-size: 24px !important;
  }

  .kf-home-banner figure figcaption p {
    font-size: 14px !important;
  }

  .kf-home-banner .owl-nav button {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
    font-size: 16px !important;
  }

  /* Secciones */
  .section__container {
    padding: 40px 15px;
  }

  .section__header {
    font-size: 28px;
  }

  /* Habitaciones */
  .rooms-section {
    padding: 40px 15px;
  }

  .rooms-section .owl-nav .owl-prev {
    left: 5px !important;
  }

  .rooms-section .owl-nav .owl-next {
    right: 5px !important;
  }

  .rooms-section .owl-nav button {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
    font-size: 16px !important;
  }

  /* Servicios */
  .service__content {
    padding: 30px 15px;
  }

  .service__list li {
    font-size: 16px;
  }

  /* Footer */
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-heading {
    font-size: 16px;
  }
}

/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
  body {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .room-title {
    font-size: 16px;
  }

  .price-current {
    font-size: 20px;
  }
}

/* ================================================================
   UTILIDADES Y HELPERS
   ================================================================ */

/* Contenedor con padding */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Espaciado */
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

/* Texto */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Display */
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}

/* Animaciones de carga */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Overlay para modales */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: none;
}

.overlay.active {
  display: block;
}

/* Loading spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-gray-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  #testimonios-carousel .owl-nav .owl-prev {
    left: -15px;
  }

  #testimonios-carousel .owl-nav .owl-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .testimonials,
  .contact {
    padding: 60px 20px;
  }

  .section-title h2,
  .contact .section__header {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 30px 20px;
    margin: 15px 10px;
  }

  .testimonial-card p {
    min-height: auto;
    font-size: 14px;
  }

  #form-whatsapp {
    padding: 30px 20px;
  }

  .date-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #testimonios-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .whatsapp-float::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonials,
  .contact {
    padding: 40px 15px;
  }

  .section-title h2,
  .contact .section__header {
    font-size: 24px;
  }

  #testimonios-carousel .owl-nav .owl-prev {
    left: 5px;
  }

  #testimonios-carousel .owl-nav .owl-next {
    right: 5px;
  }

  #form-whatsapp {
    padding: 25px 15px;
  }

  #form-whatsapp input,
  #form-whatsapp button {
    padding: 12px 15px;
    font-size: 14px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 991px) {
  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__image {
    min-height: 400px;
    order: 2;
  }

  .contact__form-wrapper {
    order: 1;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }

  .contact__header {
    margin-bottom: 30px;
  }

  .contact__header h2 {
    font-size: 28px;
  }

  .contact__image {
    min-height: 300px;
  }

  .contact__form-wrapper {
    padding: 30px 20px;
  }

  .contact__form-header h3 {
    font-size: 20px;
  }

  .date-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact__image-overlay {
    padding: 30px 20px 20px;
  }

  .contact__info-item {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact__header h2 {
    font-size: 24px;
  }

  .form-group input,
  .form-group textarea,
  .btn-whatsapp {
    padding: 12px 15px;
    font-size: 14px;
  }

  .contact__image {
    min-height: 250px;
  }
}

/* ================================================================
   12. ESPACIO PARA NUEVAS SECCIONES
   ================================================================ */

.espacio {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0px 20px;
  padding-bottom: 80px;
}

/* ================================================================
   FIN DEL ARCHIVO CSS
   ================================================================ */

/* ================================================================
   RIZZO PLAZA HOTEL - phabitaciones.CSS
   ================================================================ */

/* Banner de Habitaciones */
.rooms-page-banner {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../Imagenes/Portada_Habitaciones.webp") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.rooms-page-banner h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.rooms-page-banner p {
  font-size: 18px;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Filtros de Habitaciones */
.rooms-filters {
  background: var(--color-white);
  padding: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: 0;
  z-index: 100;
}

.filters-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-item label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-dark);
}

.filter-item select {
  padding: 8px 15px;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  background: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-item select:focus {
  outline: none;
  border-color: var(--color-secondary);
}

/* Grid de Habitaciones */
.rooms-grid-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Tarjeta de Habitación Mejorada */
.room-card-detailed {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card-detailed:hover .room-image-container img {
  transform: scale(1.1);
}

.room-badge {
  position: absolute;
  top: 15px;
  left: 0;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 20px 20px 0;
}

.room-badgeh {
  position: absolute;
  top: 15px;
  left: 0;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow-sm);
  z-index: 10; /* ⭐ Asegura que esté por encima */
}

.room-details-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-header-info {
  margin-bottom: 5px;
}

.room-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

h3.room-name {
  margin-top: 0px;
}

.room-subtitle {
  font-size: 14px;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-subtitle i {
  color: var(--color-secondary);
}

/* Amenidades en Grid */
.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-gray-dark);
}

.amenity-item i {
  color: var(--color-success);
  font-size: 14px;
}

/* Precio y Acción */
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price-box {
  display: flex;
  flex-direction: column;
}

.price-label-small {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 5px;
}

.room-price-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.price-night {
  font-size: 11px;
  color: var(--color-gray);
}

.btn-view-details,
.btn-book-now {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-view-details {
  padding: 10px 16px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-view-details:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-book-now {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-book-now:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Modal de Detalles */
.room-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

.room-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--color-white);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--color-danger);
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-header {
  padding: 40px 40px 20px;
}

.modal-header h2 {
  font-size: 32px;
  color: var(--color-black);
  margin-bottom: 10px;
}

.modal-header p {
  font-size: 16px;
  color: var(--color-gray);
}

.modal-body {
  padding: 0 40px 40px;
}

.modal-image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.modal-image-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-image-gallery img:hover {
  transform: scale(1.05);
}

.modal-section {
  margin-bottom: 30px;
}

.modal-section h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenities-full-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.amenity-full-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--bg-light);
  border-radius: 6px;
}

.amenity-full-item i {
  color: var(--color-secondary);
  font-size: 18px;
}

.room-description-full {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  text-align: justify;
}

.modal-footer {
  padding: 20px 40px;
  background: var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 12px 12px;
}

.modal-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Sección de Comparación */
.comparison-section {
  padding: 60px 0;
  background: var(--color-white);
}

.comparison-title {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-title h2 {
  font-size: 36px;
  color: var(--color-primary);
}

.comparison-table {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #eee;
}

.comparison-table th {
  background: var(--gradient-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.comparison-table td {
  font-size: 14px;
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-light);
}

.comparison-table .check-icon {
  color: var(--color-success);
  font-size: 18px;
}

.comparison-table .price-cell {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
  .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .modal-content {
    max-width: 95%;
  }

  .modal-header,
  .modal-body {
    padding: 30px 20px;
  }

  .modal-footer {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .amenities-full-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rooms-page-banner h1 {
    font-size: 36px;
  }

  .filters-container {
    flex-direction: column;
    gap: 15px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

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

  .room-amenities {
    grid-template-columns: 1fr;
  }

  .amenities-full-list {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .rooms-page-banner {
    height: 300px;
  }

  .rooms-page-banner h1 {
    font-size: 28px;
  }

  .room-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-image-gallery {
    grid-template-columns: 1fr;
  }
}

/* Lightbox para imágenes */
.image-lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1200px;
  max-height: 85vh;
  object-fit: contain;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100000;
}

.lightbox-close:hover {
  color: var(--color-secondary);
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 30px;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 25px;
    font-size: 35px;
  }

  .lightbox-content {
    width: 95%;
  }
}

/* ================================================================
   RIZZO PLAZA HOTEL - pservicios.CSS
   ================================================================ */

/* Banner de Habitaciones */
.service-page-banner {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../Imagenes/HabMatrimonial.webp") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.service-page-banner h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.service-page-banner p {
  font-size: 18px;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Grid de Servicios */
.services-grid-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Tarjeta de Habitación Mejorada */
.room-card-detailed {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card-detailedh {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 45% 55%;
}

.room-card-detailedh:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-image-containerh {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.room-image-containerh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card-detailedh:hover .room-image-containerh img {
  transform: scale(1.1);
}

.room-capacity {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-details-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-header-info {
  margin-bottom: 5px;
}

.room-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

h3.room-name {
  margin-top: 0px;
}

.room-subtitle {
  font-size: 14px;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-subtitle i {
  color: var(--color-secondary);
}

/* INFO */
.service-content {
  padding: 30px 30px 30px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 15px;
  margin-top: 0px;
}

.service-content p {
  text-align: justify;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: 10px;
}

.service-features {
  padding-top: 15px;
  padding-bottom: 20px;
  border-top: 1px solid #eee;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  font-size: 13px;
  color: var(--color-gray);
  padding-left: 25px;
  position: relative;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

/* Amenidades en Grid */
.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-gray-dark);
}

.amenity-item i {
  color: var(--color-success);
  font-size: 14px;
}

/* Precio y Acción */
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price-box {
  display: flex;
  flex-direction: column;
}

.price-label-small {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 5px;
}

.room-price-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.price-night {
  font-size: 11px;
  color: var(--color-gray);
}

.btn-view-details,
.btn-book-now {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-view-details {
  padding: 10px 16px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-view-details:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-book-now {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-book-now:hover {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Modal de Detalles */
.room-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

.room-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--color-white);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--color-danger);
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-header {
  padding: 40px 40px 20px;
}

.modal-header h2 {
  font-size: 32px;
  color: var(--color-black);
  margin-bottom: 10px;
}

.modal-header p {
  font-size: 16px;
  color: var(--color-gray);
}

.modal-body {
  padding: 0 40px 40px;
}

.modal-image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.modal-image-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-image-gallery img:hover {
  transform: scale(1.05);
}

.modal-section {
  margin-bottom: 30px;
}

.modal-section h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenities-full-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.amenity-full-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--bg-light);
  border-radius: 6px;
}

.amenity-full-item i {
  color: var(--color-secondary);
  font-size: 18px;
}

.room-description-full {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  text-align: justify;
}

.modal-footer {
  padding: 20px 40px;
  background: var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 12px 12px;
}

.modal-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
}

.corporative-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Sección de Comparación */
.comparison-section {
  padding: 60px 0;
  background: var(--color-white);
}

.comparison-title {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-title h2 {
  font-size: 36px;
  color: var(--color-primary);
}

.comparison-table {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #eee;
}

.comparison-table th {
  background: var(--gradient-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.comparison-table td {
  font-size: 14px;
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-light);
}

.comparison-table .check-icon {
  color: var(--color-success);
  font-size: 18px;
}

.comparison-table .price-cell {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .modal-content {
    max-width: 95%;
  }

  .modal-header,
  .modal-body {
    padding: 30px 20px;
  }

  .modal-footer {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .amenities-full-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rooms-page-banner h1 {
    font-size: 36px;
  }

  .filters-container {
    flex-direction: column;
    gap: 15px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

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

  .room-amenities {
    grid-template-columns: 1fr;
  }

  .amenities-full-list {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .rooms-page-banner {
    height: 300px;
  }

  .rooms-page-banner h1 {
    font-size: 28px;
  }

  .room-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-image-gallery {
    grid-template-columns: 1fr;
  }
}

/* Lightbox para imágenes */
.image-lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1200px;
  max-height: 85vh;
  object-fit: contain;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100000;
}

.lightbox-close:hover {
  color: var(--color-secondary);
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 30px;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 25px;
    font-size: 35px;
  }

  .lightbox-content {
    width: 95%;
  }
}
