/* ======= NUEVO DISEÑO DE CATÁLOGO DE HABITACIONES ======= */
:root {
  /* Nueva paleta de colores elegante */
  --primary: #1a2639;
  --secondary: #c8a97e;
  --secondary-light: #e6d5b8;
  --dark: #0f1624;
  --light: #f5f5f5;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* ======= ESTILOS GENERALES ======= */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.room-catalog-banner {
  position: relative;
  height: 500px;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 38, 57, 0.9), rgba(15, 22, 36, 0.7));
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.banner-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  line-height: 1.2;
}

.banner-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-200);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

/* ======= FILTROS DE HABITACIONES ======= */
.room-filters {
  padding: 80px 0 40px;
  background-color: var(--light);
  position: relative;
}

.room-filters::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--light);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.filter-container {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.filter-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.filter-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background-color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.25);
}

.price-range {
  flex: 2;
  min-width: 300px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-inputs input {
  flex: 1;
}

.price-inputs span {
  color: var(--gray-600);
  font-weight: 500;
}

.date-filter {
  background-color: rgba(200, 169, 126, 0.08);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(200, 169, 126, 0.2);
}

.filter-note {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-size: 0.9rem;
  margin-top: 10px;
}

.filter-note i {
  margin-right: 8px;
}

.filter-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.filter-button,
.reset-button {
  padding: 15px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  min-width: 180px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.filter-button {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
}

.filter-button:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.reset-button {
  background-color: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-400);
  text-decoration: none;
}

.reset-button:hover {
  background-color: var(--gray-200);
  color: var(--gray-900);
  transform: translateY(-3px);
}

/* ======= CATÁLOGO DE HABITACIONES ======= */
.room-catalog {
  padding: 80px 0;
  background-color: var(--light);
  position: relative;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.catalog-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding-bottom: 15px;
}

.catalog-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--secondary);
}

.catalog-header p {
  font-family: "Poppins", sans-serif;
  color: var(--gray-600);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ======= NUEVO DISEÑO DE TARJETAS DE HABITACIÓN ======= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}

/* Nuevo diseño del precio - ahora debajo de los botones */
.room-price {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 38, 57, 0.95);
  padding: 15px 20px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 25px;
  position: relative;
  z-index: 5;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.catalog-room-card:hover .room-price {
  transform: translateY(-5px);
}

.price-amount {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-period {
  font-size: 1rem;
  color: var(--gray-200);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin-top: 5px;
}

/* Modificar el room-card-footer para que no incluya el precio */
.room-card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-top: 25px;
  position: relative;
}

.room-card-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
}

.room-actions {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
}

.btn-view-details,
.btn-book-now,
.btn-book-disabled {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-view-details {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-view-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-view-details:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-view-details:hover::before {
  left: 0;
}

.btn-book-now {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-book-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-book-now:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-book-now:hover::before {
  left: 0;
}

.btn-book-disabled {
  background-color: var(--gray-400);
  color: var(--white);
  border: none;
  cursor: not-allowed;
  opacity: 0.8;
}

/* Nuevo diseño para las tarjetas de habitación */
.catalog-room-card {
  position: relative;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
}

.catalog-room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.room-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-room-card:hover .main-image {
  transform: scale(1.05);
}

.reserved-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(220, 53, 69, 0.9);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.room-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.room-card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
  line-height: 1.3;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-family: "Poppins", sans-serif;
}

.spec-item i {
  margin-right: 8px;
  color: var(--secondary);
  font-size: 1.1rem;
}

.room-description {
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: var(--gray-600);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

/* Estilos responsivos para el nuevo diseño */
@media (max-width: 768px) {
  .room-card-footer {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .room-actions {
    flex: 1;
    justify-content: flex-end;
  }

  .btn-view-details,
  .btn-book-now {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  /* Ajustes responsivos para el precio */
  .price-amount {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .room-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .room-actions {
    width: 100%;
    justify-content: space-between;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .room-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-view-details,
  .btn-book-now {
    width: 100%;
  }

  /* Ajustes responsivos para el precio */
  .price-amount {
    font-size: 2.2rem;
  }

  .room-price {
    padding: 12px 15px;
  }
}

.catalog-room-card.featured {
  border: none;
  box-shadow: 0 15px 30px rgba(200, 169, 126, 0.3);
}

.catalog-room-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  z-index: 3;
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 0;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  color: var(--white);
  padding: 10px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: var(--shadow-md);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
  padding-left: 30px;
}

.room-preview {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 90px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.catalog-room-card:hover .room-preview {
  opacity: 1;
  transform: translateY(0);
}

.room-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-type-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(26, 38, 57, 0.85);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.amenity-icons {
  display: flex;
  gap: 25px;
  font-size: 1.3rem;
  color: var(--secondary);
}

.more-amenities {
  background-color: var(--gray-100);
  color: var(--gray-700);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.no-rooms-message {
  grid-column: 1 / -1;
  background-color: var(--white);
  padding: 70px 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.no-rooms-message i {
  font-size: 4rem;
  color: var(--gray-400);
  margin-bottom: 30px;
}

.no-rooms-message h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.no-rooms-message p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ======= SECCIÓN DE CARACTERÍSTICAS ======= */
.room-features-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.room-features-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-header .separator {
  width: 100px;
  height: 3px;
  background-color: var(--secondary);
  margin: 0 auto 30px;
}

.section-header p {
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 50px 30px;
  background-color: var(--light);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-xl);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.feature-item:hover .feature-icon {
  background-color: var(--secondary);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 40px;
  color: var(--secondary);
  transition: var(--transition);
}

.feature-item:hover .feature-icon i {
  color: var(--white);
}

.feature-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.feature-item p {
  font-size: 1rem;
  color: var(--gray-600);
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  transition: var(--transition);
}

.feature-item:hover h3,
.feature-item:hover p {
  color: var(--white);
}

/* ======= SECCIÓN CTA ======= */
.cta-section {
  padding: 120px 0;
  background-image: linear-gradient(rgba(26, 38, 57, 0.85), rgba(15, 22, 36, 0.9)), url("images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--white);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.cta-content::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Playfair Display", serif;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.cta-contentnt h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
  line-height: 1.3;
}

.cta-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 50px;
  line-height: 1.8;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button:hover {
  color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.cta-button:hover::before {
  width: 100%;
}

/* ======= ESTILOS RESPONSIVOS ======= */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-content h1 {
    font-size: 3.5rem;
  }

  .catalog-header h2 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .room-catalog-banner {
    height: 400px;
  }

  .banner-content h1 {
    font-size: 3rem;
  }

  .filter-container {
    padding: 30px;
  }

  .filter-container h2 {
    font-size: 2rem;
  }

  .room-card-content {
    padding: 25px;
  }

  .room-card-content h3 {
    font-size: 1.8rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .feature-item {
    padding: 40px 25px;
  }

  .feature-icon {
    width: 90px;
    height: 90px;
  }

  .feature-icon i {
    font-size: 35px;
  }

  .cta-content h2 {
    font-size: 2.8rem;
  }

  .cta-content p {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .room-catalog-banner {
    height: 350px;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  .banner-content p {
    font-size: 1.1rem;
  }

  .filter-row {
    flex-direction: column;
    gap: 20px;
  }

  .filter-group {
    width: 100%;
  }

  .date-filter {
    padding: 20px;
  }

  .filter-actions {
    flex-direction: column;
    width: 100%;
  }

  .filter-button,
  .reset-button {
    width: 100%;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .catalog-header h2 {
    font-size: 2.2rem;
  }

  .room-card-footer {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .room-actions {
    flex: 1;
    justify-content: flex-end;
  }

  .btn-view-details,
  .btn-book-now {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .room-price {
    width: 100%;
  }

  .room-actions {
    width: 100%;
    justify-content: space-between;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .room-catalog-banner {
    height: 300px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .filter-container {
    padding: 25px 20px;
  }

  .filter-container h2 {
    font-size: 1.8rem;
  }

  .catalog-header h2 {
    font-size: 1.8rem;
  }

  .room-card-content {
    padding: 20px;
  }

  .room-card-content h3 {
    font-size: 1.6rem;
  }

  .room-specs {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .room-image-container {
    height: 220px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .btn-view-details,
  .btn-book-now,
  .btn-book-disabled {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .feature-icon i {
    font-size: 30px;
  }

  .feature-item h3 {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .no-rooms-message {
    padding: 40px 20px;
  }

  .no-rooms-message h3 {
    font-size: 1.6rem;
  }

  .no-rooms-message p {
    font-size: 0.95rem;
  }
}

/* Optimizaciones adicionales para móviles pequeños */
@media (max-width: 480px) {
  .room-catalog-banner {
    height: 250px;
  }

  .banner-content h1 {
    font-size: 1.8rem;
  }

  .room-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-view-details,
  .btn-book-now {
    width: 100%;
  }

  .amenity-icons {
    gap: 15px;
    font-size: 1.1rem;
  }

  .featured-tag {
    font-size: 0.8rem;
    padding: 8px 20px;
    padding-left: 25px;
  }

  .reserved-tag {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .room-type-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}

/* Animaciones y efectos adicionales */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-room-card {
  animation: fadeIn 0.6s ease forwards;
}

.catalog-room-card:nth-child(2) {
  animation-delay: 0.2s;
}

.catalog-room-card:nth-child(3) {
  animation-delay: 0.4s;
}

.catalog-room-card:nth-child(4) {
  animation-delay: 0.6s;
}

.catalog-room-card:nth-child(5) {
  animation-delay: 0.8s;
}

.catalog-room-card:nth-child(6) {
  animation-delay: 1s;
}
