@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Josefin+Slab:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Josefin+Slab:wght@100&family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Cardo:ital,wght@0,400;0,700;1,400&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Josefin+Slab:wght@100&family=Poiret+One&display=swap");

:root {
  --color-principal: #dabd7b;
  --color-secundario: #2c2c2c;
  --color-fondo: #f8f5f0;
  --primary-dark: #1a1a1a;
  --secondary-dark: #333333;
  --accent-gold: #c8a97e;
  --text-dark: #242424;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --color-text: #292828;
  --color-bg: #ddd;
  --color-link: #000;
  --color-link-hover: #000;
  --page-padding: 1rem;
  --angle: -15deg;
  --trans-content: -30vh;
  --font-titles: "Poiret One", serif;
  --font-subtitles: "Sweet Sans Pro";
  --font-paragraphs: "Cardo", serif;
}

@font-face {
  font-family: "Sweet Sans Pro";
  src: local("Sweet Sans Pro Medium"), local("Sweet-Sans-Pro-Medium"), url("View/Layout/fonts/SweetSansPro-Medium.woff2") format("woff2"),
    url("View/Layout/fonts/SweetSansPro-Medium.woff") format("woff"), url("View/Layout/fonts/SweetSansPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

body {
  opacity: 0;
  transition: opacity 1s ease;
  /* Asegúrate de que la transición esté definida */
}

body.loaded {
  opacity: 1;
  /* Cambia la opacidad a 1 cuando se agrega la clase 'loaded' */
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-titles);
}

.banner-suite {
  position: relative;
  width: 100%;
  height: 50vh !important;
  padding: 0 5%;
  overflow: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

/* .banner-suite .background-suite {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translate3d(0, 0, 0) scale(1.25);
  background: black url("PImage/Imagen-principal-1.avif") no-repeat center 55%;
  background-size: cover;
}

.loaded .banner-suite .background-suite {
  transform: scale(1);
  transition: 6.5s transform;
} */

.banner-suite {
  position: relative;
  width: 100%;
  height: 100vh; /* o el alto que uses */
  background: black url("PImage/Imagen-principal-1.webp") no-repeat center 55%;
  background-size: cover;
  overflow: hidden;
}

.banner-suite.loaded {
  background-image: url("PImage/Imagen-principal-1.webp");
  transition: background-image 0.3s ease-in-out;
}

.banner-suite .overlay-suite {
  position: absolute;
  /* Posiciona la superposición */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Ajusta la opacidad según sea necesario */
  z-index: 1;
  /* Asegúrate de que esté por encima de la imagen de fondo */
}

.banner-suite h1 {
  color: #eee;
  margin: 0;
  line-height: 1.2;
  text-transform: capitalize;
  text-shadow: 0 0 0.3rem black;
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  font-family: var(--font-titles);
}

.breadcrumb-suite {
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: transparent;
  /* Asegúrate de que el fondo sea transparente */
  padding: 0;
  /* Ajusta el padding si es necesario */
  border: none;
  /* Elimina cualquier borde */
  z-index: 1;
  font-family: var(--font-subtitles);
}

.breadcrumb-suite a {
  color: #dabd7b;
  text-decoration: none;
  /* Elimina el subrayado */
  background-color: transparent;
  margin-right: 5px;
  font-weight: bold;
}

.breadcrumb-suite span {
  color: white;
  /* Cambia el color del texto del span a blanco */
  font-weight: bold;
}

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

.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #dabd7b;
  display: block;
  margin-bottom: 20px;
  position: relative;
  width: auto;
}

.subtitle::after {
  content: "";
  display: block;
  width: 230px;
  height: 2px;
  background-color: #c4a484;
  margin-top: 10px;
}

.suite-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  border-bottom: 2px solid #dabd7b;
  padding-bottom: 60px;
}

.suite-section:last-child {
  border-bottom: none;
}

.suite-info {
  flex: 1;
  padding: 0 20px;
}

.suite-images {
  flex: 1;
  position: relative;
}

.suite-info h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #3c2a1e;
  margin-bottom: 20px;
  font-family: var(--font-titles);
}

.buttons-suite {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.omnibees{
  text-decoration: none;
  color: inherit;
}
.btn-suite {
  padding: 10px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
  background-color: #dabd7b;
  color: black;
  border: none;
  font-family: var(--font-subtitles);
}

.btn-primary:hover {
  background-color: #5c4a3e;
}

.btn-secondary {
  background-color: transparent;
  color: black;
  border: 1px solid #dabd7b;
  font-family: var(--font-subtitles);
}

.btn-secondary:hover {
  background-color: #dabd7b;
  color: black;
}

.suite-info p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #666;
  font-family: var(--font-paragraphs);
}

.amenities-suite {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.amenity-icon-suite {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.amenity-icon-suite:hover {
  opacity: 1;
}

.carousel-suite {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 8px;
}

.carousel-image-suite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image-suite.active {
  opacity: 1;
}

.carousel-indicators-suite {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator-suite {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator-suite.active {
  background-color: white;
}

.modal-suite {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  box-sizing: border-box;
}

.modal-content-suite {
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 15px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 1001;
}

.modal-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.modal-nav-btn {
  background: #42302e;
  border: none;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 40px;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: bold;
}

.modal-nav-btn:hover {
  background: #dabd7b;
}

/* Estilos elegantes para scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(218, 189, 123, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: #b69660;
}

/* Para Firefox */
::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(218, 189, 123, 0.1);
}

@media (min-width: 768px) {
  .hero-title-suite {
    font-size: 2.5rem;
  }

  .hero-suite {
    height: 50vh;
  }

  .suite-section {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .suite-info,
  .suite-images {
    flex: 0 0 calc(50% - 20px);
  }

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

  .modal-nav-btn {
    display: none;
  }

  .close-modal {
    right: 15px;
    top: 10px;
    font-size: 30px;
  }
}

/*Transiciones

/* Clases base para el contenido, inicialmente oculto */
.seccion {
  opacity: 0;
  transform: translateY(30px);
  /* Inicia fuera de la vista, desplazado hacia abajo */
  transition: opacity 1.5s ease, transform 1.5s ease;
  /* Suaviza la animación */
  will-change: opacity, transform;
}

/* Animación para la primera sección, animación 'fadeInUp' */
.seccion1.visible {
  animation: fadeInUp 2s forwards;
}

/* Animación para la segunda sección, animación 'fadeInLeft' */
.seccion2.visible {
  animation: fadeInLeft 2s forwards;
}

/* Animación para la tercera sección, animación 'fadeInRight' */
.seccion3.visible {
  animation: fadeInRight 2s forwards;
}

/* Definición de las animaciones */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fondo oscuro que cubre toda la pantalla */
.modal {
  display: none;
  /* Inicialmente está oculta */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Fondo translúcido */
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
  /* Animación suave de apertura */
  z-index: 1000;
  overflow: hidden;
}

/* Contenedor de la modal con fondo blanco */
.modal-content {
  background-color: #121212;
  width: 90%;
  height: 80%;
  position: relative;
  border-radius: 24px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

/* Contenedor de secciones */
.sections-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  /* Activa el scroll snap */
  scroll-behavior: smooth;
  /* Desplazamiento suave */
}

/* Estilo de cada sección */
.section {
  scroll-snap-align: start;
  /* Ajusta la posición de cada sección al iniciar */
  height: 100%;
  /* Cada sección ocupa toda la altura del contenedor */
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

/* Ocultar secciones fuera de vista (esto es opcional) */
.sections-container {
  display: block;
  /* Cambio para permitir el scroll */
  overflow-y: auto;
  /* Asegura que solo una sección esté visible a la vez */
  height: 100%;
  /* Hace que el contenedor ocupe toda la altura */
}

@media (max-width: 768px) {
  .modal-content {
    padding: 10px;
  }

  .close-btn {
    right: 30px !important;
    font-size: 40px !important;
    top: 10px !important;
    z-index: 1001;
  }
}

.modal-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #3c2a1e;
  margin-bottom: 20px;
  text-align: center;
}

/* Estilos del botón de cierre (X) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 50px;
  font-size: 50px;
  cursor: pointer;
  color: #fff;
  z-index: 1;
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
  }

  to {
    transform: translateY(0);
  }
}

.menu-grid {
  gap: 10px;
  overflow-y: auto;
  /* Permitir desplazamiento si el contenido se desborda */
  max-height: 70vh;
  padding: 10px;
  border-radius: 24px;
}

.menu-grid::-webkit-scrollbar {
  display: none;
  /* Oculta la barra de desplazamiento */
}

.menu-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) and (max-width: 1075px) {
  .menu-item.last {
    grid-column: 1 / -1 !important;
    margin: 0 auto;
    width: 50%;
  }
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

.menu-item:hover .item-image img {
  transform: scale(1.1);
}

.item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #9c8664;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.item-info {
  padding: 2rem;
}

.item-info h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.item-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #9c8664;
}

.item-order {
  padding: 0.8rem 1.5rem;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.item-order:hover {
  background: #9c8664;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-title {
    font-size: 2.5rem;
  }

  .menu-categories {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .category-item {
    padding: 0.8rem;
  }

  .menu-grid {
    padding: 0 1rem;
  }
}

/* Keyframes para las animaciones */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleReveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animaciones al hacer hover */
.menu-title {
  transition: transform 0.3s ease;
}

.menu-title:hover {
  transform: translateY(-5px);
}

.menu-subtitle {
  position: relative;
  display: inline-block;
}

.menu-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.menu-subtitle:hover::after {
  width: 100%;
}

/* Aseguramos que las animaciones solo se ejecuten una vez al cargar la página */
.menu-header * {
  animation-fill-mode: both;
}

/* END SECTION MENU */

@media (max-width: 768px) {
  .hero-image {
    width: 100%;
    height: 300px;
  }

  .cards-container {
    position: static;
    width: 100%;
    margin-top: -50px;
  }
}

/* Media Queries para Responsividad */

/* En dispositivos pequeños (móviles) */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    /* Una sola columna */
  }
}

/* En tabletas */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
  }
}

/* ESTILOS PARA MODAL 1*/

/*SECCION 1*/

#section1 {
  display: flex;
  justify-content: space-between;
  /* Asegura que el video y el texto estén separados */
  align-items: center;
  padding: 20px;
}

/* Contenedor del video */
.video-container {
  position: relative;
  /* Necesario para posicionar el cuadro decorativo debajo del video */
  flex: 0 1 60%;
  /* El video ocupa un 60% del espacio */
}

/* Cuadro del video con border-radius */
.video-frame {
  position: relative;
  padding-top: 56.25%;
  /* Esto mantiene la proporción 16:9 */
  overflow: hidden;
  border-radius: 16px;
  background-color: #333;
  z-index: 2;
}

/* Cuadro decorativo debajo del video */
.decorative-box {
  width: 100%;
  height: 18px;
  background-color: #f0a500;
  /* Color decorativo, ajusta según tus necesidades */
  border-radius: 8px;
  margin-top: 10px;
  /* Espacio entre el video y el cuadro decorativo */
  z-index: 1;
  /* Asegura que esté detrás del video */
  position: absolute;
  height: 350px;
  top: 90px;
  right: -30px;
}

@media (min-width: 1900px) {
  .decorative-box {
    top: 200px;
    height: 450px;
  }
}

.modal#modalPlan1 .planes {
  transform: none !important;
}

/* Contenedor del texto a la derecha del video */
.text-container {
  flex: 0 1 35%;
  /* El texto ocupa un 35% del espacio */
  padding-left: 20px;
}

.text-container h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3c2a1e;
  margin-bottom: 15px;
}

.text-container p {
  font-size: 1rem;
  color: #555;
}

/* Video player styles */
#section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.video-container {
  position: relative;
  flex: 0 1 60%;
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 16px;
  background-color: #333;
  z-index: 2;
}

.video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon:hover {
  color: #dabd7b;
  transform: translate(-50%, -50%) scale(1.1);
  background-color: rgba(0, 0, 0, 0.7);
}

.decorative-box {
  width: 100%;
  height: 400px;
  background-color: #dabd7b;
  border-radius: 8px;
  position: absolute;
  top: 90px;
  right: -30px;
  z-index: 1;
}

.text-container {
  flex: 0 1 35%;
  padding-left: 20px;
}

.text-container h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #3c2a1e;
  margin-bottom: 15px;
}

.text-container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  #section1 {
    flex-direction: column;
  }

  .video-container,
  .text-container {
    flex: 1 1 100%;
  }

  .text-container {
    padding-left: 0;
    margin-top: 20px;
  }

  .decorative-box {
    display: none;
  }
}

/************************************************************/
/* Styles Modal 4 */
/************************************************************/

/* Style IFRAME */
.video-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #121212;
}

.video-section iframe {
  width: 60%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.video-section h2 {
  margin-right: 50px;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-principal);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1.5s ease-out;
  position: relative;
  display: inline-block;
}

.video-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50%;
  height: 5px;
  background-color: var(--accent-gold);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.video-section h2:hover::after {
  width: 60%;
}

/* YouTube iframe styling */
iframe {
  width: 60%;
  height: 90%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;
}

/* Hover effect on iframe */
iframe:hover {
  transform: scale(1.007);
  /* Slight zoom effect */
  box-shadow: 0 15px 45pxrgba (0, 0, 0, 0.2);
  /* Slightly more shadow on hover */
}

@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    text-align: center;
  }

  .video-section iframe {
    width: 100%;
    height: 300px;
  }

  .video-section h2 {
    font-size: 2rem;
    margin-right: 0;
  }
}

/* Animation for fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 30px 15px;
  }
}

/* Style IFRAME */

/********************************/
/* Styles BentoGrid Modal 4 */
/********************************/
.bentogrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 25px;
  width: 90%;
  height: 90%;
}

.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Nueva animación para el efecto de clic */
.grid-item:active {
  transform: scale(1.05) translateY(-5px);
  /* Escalado y desplazamiento hacia arriba */
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
  /* Sombra sutil para resaltar el efecto */
}

/* Efecto al pasar el cursor por encima (hover) */
.grid-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Distribución de los items */
.item1 {
  grid-column: span 3;
  grid-row: span 1;
}

.item2 {
  grid-column: 3 / span 1;
  grid-row: 1 / span 1;
}

.item3 {
  grid-column: 4 / span 1;
  grid-row: 1 / span 1;
}

.item4 {
  grid-column: 5 / span 1;
  grid-row: 1 / span 1;
}

.item5 {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.item6 {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}

.item7 {
  grid-column: 3 / span 1;
  grid-row: 2 / span 1;
}

.item8 {
  grid-column: 4 / span 1;
  grid-row: 2 / span 1;
}

.item9 {
  grid-column: 5 / span 1;
  grid-row: 2 / span 1;
}

.item10 {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}

@media (max-width: 768px) {
  .bentogrid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: auto;
    gap: 10px;
    padding: 10px;
  }

  .grid-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
    height: 250px;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .slider-control {
    background: var(--color-principal);
    border: none;
    color: white;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
  }
}

.full-screen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.full-screen-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.full-screen-modal .close-full-screen {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 50px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.full-screen-modal .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.full-screen-modal .nav-btn.prev {
  left: 20px;
}

.full-screen-modal .nav-btn.next {
  right: 20px;
}

@media (max-width: 768px) {
  .full-screen-modal .nav-btn {
    display: none;
  }
}

/********************************/
/* Styles BentoGrid Modal 4 */
/********************************/

/**********************************/
/* Styles Modal 4 PRICE*/
/*********************************/
.container {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.content-section {
  margin-top: 5%;
  width: 100%;
  max-width: 600px;
}

.content-section h2 {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #ccc;
  font-weight: 300;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.8s forwards 0.7s;
}

.price-container {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.8s forwards 0.9s;
}

.price {
  font-size: 2.9rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.original-price {
  font-size: 2rem;
  color: #888;
  text-decoration: line-through;
  margin-left: 10px;
}

.discount {
  background-color: #ffd700;
  color: #000;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 10px;
  display: inline-block;
  margin-top: 10px;
}

.viewers {
  font-size: 1.7rem;
  color: #ccc;
  margin-bottom: 20px;
}

.viewers span {
  width: auto;
  height: auto;
}

.numero {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-gold);
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

.book-button {
  background-color: #ffd700;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.8s forwards 1.3s;
}

/* Media queries para responsividad */
@media (max-width: 480px) {
  .content-section h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .price {
    font-size: 2rem;
  }

  .original-price {
    font-size: 1rem;
  }

  .discount {
    font-size: 0.8rem;
  }

  .viewers {
    font-size: 1rem;
  }

  .book-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .numero {
    font-size: 1.5rem;
  }
}

@media (min-width: 481px) and (max-width: 820px) {
  .content-section h2 {
    font-size: 2.7rem;
  }

  .tagline {
    font-size: 1.7rem;
  }

  .price {
    font-size: 2.7rem;
  }

  .original-price {
    font-size: 1.7rem;
  }

  .discount {
    font-size: 1.2rem;
  }

  .viewers {
    font-size: 1.3rem;
  }

  .book-button {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .numero {
    font-size: 1.8rem;
  }
}

/* Mantén las animaciones y otros estilos como estaban */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.book-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s;
}

.book-button:hover::before {
  opacity: 1;
  animation: shine 1s forwards;
}

/************************************/
/* Styles Modal 4 PRICE */
/************************************/

/* section de servicios */
.services-section {
  height: 100%;
  padding: 40px 0;
  background-color: #121212;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-principal);
  margin-bottom: 50px;
}

.services-description {
  font-family: var(--font-paragraphs);
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-carousel {
  position: relative;
  width: 100%;
  padding: 0 40px;
}

.services-container {
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  padding: 20px 0;
}

.services-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.service-item {
  flex: 0 0 auto;
  width: 180px;
  height: 180px;
  background-color: #121212;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 0 1px rgba(218, 189, 123, 0.1);
}

.service-item span {
  height: auto;
  width: auto;
}

.service-item ion-icon {
  font-size: 2rem;
  color: #dabd7b;
  margin-bottom: 15px;
}

.service-item .service-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 300;
}

.service-item .service-subtitle {
  color: #dabd7b;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #dabd7b;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 0;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-control:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .services-carousel {
    padding: 0 30px;
  }

  .service-item {
    width: 150px;
    height: 150px;
  }

  .carousel-control {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
}

/* Plans Section */
.planesSection {
  padding: 50px 20px 80px;
  height: 100%;
  position: relative;
  /* Para posicionamiento de flechas */
}

.planes {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.plan {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  margin: 10% auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  max-height: 500px;
  height: auto;
  transition: max-height 0.3s ease;
  border: 1px solid rgba(218, 189, 123, 0.1);
  position: relative;
  overflow: hidden;
}

.plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dabd7b, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(218, 189, 123, 0.2);
}

.plan:hover::before {
  opacity: 1;
}

.plan h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--font-titles);
  text-align: center;
}

.plan .descripcion {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
  font-family: var(--font-paragraphs);
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 300;
}

.precio-reserva {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.plan .precio {
  font-size: 2.5rem;
  font-weight: 600;
  color: #dabd7b;
  margin: 0;
  font-family: var(--font-subtitles);
  text-align: center;
  margin-bottom: 20px;
}

.btn-reservar {
  background-color: #dabd7b;
  color: #000000;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-subtitles);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 80%;
  display: flex;
  justify-content: center;
}

.btn-reservar:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.btn-ver-mas {
  background-color: transparent;
  color: #dabd7b;
  border: 1px solid #dabd7b;
  padding: 12px 0;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 80%;
  max-width: 300px;
  margin: 30px auto;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-subtitles);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.btn-ver-mas:hover {
  background-color: rgba(218, 189, 123, 0.1);
  color: #ffffff;
}

.detalles {
  margin-top: 20px;
  padding: 20px;
  width: 100%;
  text-align: center;
  display: none;
}

.detalles p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: var(--font-paragraphs);
  margin-bottom: 20px;
}

/* Estilos para la barra de desplazamiento */
.detalles::-webkit-scrollbar {
  width: 4px;
}

.detalles::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.detalles::-webkit-scrollbar-thumb {
  background: #dabd7b;
  border-radius: 10px;
}

.detalles::-webkit-scrollbar-thumb:hover {
  background: #c4a484;
}

.plan.expanded {
  max-height: none;
  /* Permite que la tarjeta se expanda según el contenido */
}

/* Mejoras en el responsive */
@media (min-width: 992px) and (max-width: 1400px) {
  .plan {
    padding: 20px 30px;
    height: 400px;
    min-height: auto;
  }
}
@media (max-width: 1024px) {
  .planes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .plan {
    width: calc(50% - 20px);
    margin-bottom: 40px;
    /* Añadir espacio entre filas */
  }
}

@media (max-width: 1024px) {
  .planesSection {
    padding: 15px 0;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .planes {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 600px; /* Add minimum height */
  }

  .plan {
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(100%) translateY(-50%);
    transition: all 0.3s ease;
    top: 50%;
    display: none; /* Hide all plans by default */
  }

  .plan.active {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%); /* Center the active plan */
    display: flex; /* Show only active plan */
  }

  .plan.prev {
    transform: translateX(-150%) translateY(-50%);
    display: none;
  }

  .plan.next {
    transform: translateX(50%) translateY(-50%);
    display: none;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(218, 189, 123, 0.2);
    border: 1px solid rgba(218, 189, 123, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--color-principal);
    transition: all 0.3s ease;
    font-size: 1.5rem;
  }

  .arrow:hover {
    background-color: var(--color-principal);
    color: #000;
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }
}

/* ... (rest of the CSS remains the same) ... */
.Viewer-animation {
  display: flex;
}

/* Estilos para el modal */
.modalPlan {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.modal-content-plan {
  background-color: #1a1a1a;
  padding: 20px;
  border: 1px solid #dabd7b;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modalPlan {
  color: #dabd7b;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modalPlan:hover,
.close-modalPlan:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.modalTitle {
  color: #dabd7b;
  font-family: var(--font-titles);
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-content-plan {
    width: 95%;
    padding: 15px;
  }

  .modalTitle {
    font-size: 1.5rem;
  }
}

/***********************************************/
/* Styles Modal 4 */
/* **********************************************/

/* Estilos para la modal */
.ampliarplanes-modal {
  display: none;
  /* Oculta la modal por defecto */
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.7);
  /* Fondo oscuro con algo de transparencia */
  backdrop-filter: blur(10px);
  /* Aplica el desenfoque al fondo detrás de la modal */
}

.ampliarplanes-modal-content {
  position: absolute;
  top: 50%;
  /* Centrado vertical real */
  left: 50%;
  /* Centrado horizontal */
  transform: translate(-50%, -50%);
  /* Ajusta al centro */
  padding: 20px;
  background-color: rgba(18, 18, 18, 0.1);
  width: 90%;
  height: 90%;
  overflow-y: auto;
  max-height: 80vh; /* Ajusta la altura máxima según sea necesario */
}

.ampliarplanes-modal-content::-webkit-scrollbar {
  display: flex;
  /* Oculta el scrollbar */
}

.ampliarplanes-close {
  position: fixed;
  /* Posiciona el botón en relación con la ventana */
  top: 10px;
  /* Se mantiene fijo en la parte superior de la pantalla */
  right: 10px;
  /* Se mantiene fijo en la esquina derecha */
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  z-index: 100;
  /* Asegúrate de que esté por encima de todo */
}

/* Estilos para el contenido de las modales de planes */

/* Sección de precios */
.pricing-section {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 1rem;
}

@media (max-width: 480px) {
  .ampliarplanes-close {
    top: 54px;
  }

  .plan .precio {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .plan .descripcion {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .ampliarplanes-close {
    top: 54px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--blanco);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  top: -30px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .pricing-card.popular {
    top: 17px;
  }

  .pricing-card {
    top: 17px;
  }
}

.popular-tag {
  background: #333;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  font-family: var(--font-titles);
}

.price-header {
  text-align: center;
  margin-bottom: 2rem;
}

.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-titles);
}

.price-description {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-family: var(--font-subtitles);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.discount-tag {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.feature-item::before {
  content: "✓";
  color: var(--primary-dark);
  margin-right: 0.5rem;
  font-weight: bold;
}

.feature-item.inactive {
  color: var(--text-dark);
}

.feature-item.inactive::before {
  content: "𝗫";
  color: var(--text-dark);
}

.select-plan-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.select-plan-btn.primary {
  background: var(--primary-dark);
  color: var(--text-light);
  border: 2px solid var(--primary-dark);
}

.select-plan-btn.primary:hover {
  background: var(--blanco);
  color: var(--primary-dark);
}

.select-plan-btn.secondary {
  background: var(--blanco);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.select-plan-btn.secondary:hover {
  background: black;
  color: white;
}

.renewal-price {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto;
  }
}

/* Arrow styling */
.arrow {
  display: none;
}

@media (max-width: 1024px) {
  .planesSection {
    padding: 15px 0;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .planes {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    padding: 0 40px;
    gap: 30px;
  }

  .plan {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: none;
  }

  .plan.active {
    display: block;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: rgba(218, 189, 123, 0.1);
    border: 1px solid rgba(218, 189, 123, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--color-principal);
    transition: all 0.3s ease;
    font-size: 1.2rem;
  }

  .arrow:hover {
    background-color: var(--color-principal);
    color: #000;
  }

  .arrow-left {
    left: 5px;
  }

  .arrow-right {
    right: 5px;
  }

  .arrow-left.disabled,
  .arrow-right.disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}

.Viewer-animation {
  display: flex;
}

/* Estilos para el modal */
.modalPlan {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.modal-content-plan {
  background-color: #1a1a1a;
  padding: 20px;
  border: 1px solid #dabd7b;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modalPlan {
  color: #dabd7b;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modalPlan:hover,
.close-modalPlan:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.modalTitle {
  color: #dabd7b;
  font-family: var(--font-titles);
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-content-plan {
    width: 95%;
    padding: 15px;
  }

  .modalTitle {
    font-size: 1.5rem;
  }
}

/***********************************************/
/* Styles Modal 4 */
/* **********************************************/

/* Estilos para la modal */
.ampliarplanes-modal {
  display: none;
  /* Oculta la modal por defecto */
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.7);
  /* Fondo oscuro con algo de transparencia */
  backdrop-filter: blur(10px);
  /* Aplica el desenfoque al fondo detrás de la modal */
}

.ampliarplanes-modal-content {
  position: absolute;
  top: 50%;
  /* Centrado vertical real */
  left: 50%;
  /* Centrado horizontal */
  transform: translate(-50%, -50%);
  /* Ajusta al centro */
  padding: 20px;
  background-color: rgba(18, 18, 18, 0.1);
  width: 90%;
  height: 90%;
  overflow-y: auto;
  max-height: 80vh; /* Ajusta la altura máxima según sea necesario */
}

.ampliarplanes-modal-content::-webkit-scrollbar {
  display: flex;
  /* Oculta el scrollbar */
}

.ampliarplanes-close {
  position: fixed;
  /* Posiciona el botón en relación con la ventana */
  top: 10px;
  /* Se mantiene fijo en la parte superior de la pantalla */
  right: 10px;
  /* Se mantiene fijo en la esquina derecha */
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  z-index: 100;
  /* Asegúrate de que esté por encima de todo */
}

/* Estilos para el contenido de las modales de planes */

/* Sección de precios */
.pricing-section {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 1rem;
}

@media (max-width: 480px) {
  .ampliarplanes-close {
    top: 54px;
  }

  .plan .precio {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .plan .descripcion {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .ampliarplanes-close {
    top: 54px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--blanco);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  top: -30px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .pricing-card.popular {
    top: 17px;
  }

  .pricing-card {
    top: 17px;
  }
}

.popular-tag {
  background: #333;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  font-family: var(--font-titles);
}

.price-header {
  text-align: center;
  margin-bottom: 2rem;
}

.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-titles);
}

.price-description {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-family: var(--font-subtitles);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.discount-tag {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.feature-item::before {
  content: "✓";
  color: var(--primary-dark);
  margin-right: 0.5rem;
  font-weight: bold;
}

.feature-item.inactive {
  color: var(--text-dark);
}

.feature-item.inactive::before {
  content: "𝗫";
  color: var(--text-dark);
}

.select-plan-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.select-plan-btn.primary {
  background: var(--primary-dark);
  color: var(--text-light);
  border: 2px solid var(--primary-dark);
}

.select-plan-btn.primary:hover {
  background: var(--blanco);
  color: var(--primary-dark);
}

.select-plan-btn.secondary {
  background: var(--blanco);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.select-plan-btn.secondary:hover {
  background: black;
  color: white;
}

.renewal-price {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto;
  }
}