body {
    background-color: #080808;
    color: #f3f4f6;
    font-family: 'Inter', sans-serif;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f1d592 100%);
}

/* Efecto visual para días deshabilitados (domingos y pasado) */
button:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(255, 255, 255, 0.05) 5px,
        rgba(255, 255, 255, 0.05) 10px
    );
}

.day-selected {
    background-color: #d4af37 !important;
    color: black !important;
    font-weight: bold;
}

.hour-selected {
    background-color: #ca8a04 !important; /* Yellow-600 */
    color: black !important;
    border-color: #d4af37 !important;
}

/* Resaltar la tarjeta seleccionada */
.peer:checked + div {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: scale(1.02);
}

/* Estilo para los precios */
font-black {
    letter-spacing: -1px;
}

/*-----------SECTION HOME--------------------------*/

.hero-text {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/*-----------CARRUSEL DE IMAGENES--------------------------*/
/* =========================================
SECTION
========================================= */

.carru {
    width: 100%;
    min-height: 100dvh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* =========================================
CONTENEDOR
========================================= */

.carousel-container {
    width: 95%;
    height: 80dvh;
    position: relative;
    overflow: hidden;
    margin: auto;
    border-radius: 24px;
    background: #000;
}

/* =========================================
OSCURECER IMAGEN
========================================= */

.carousel-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    pointer-events: none;
}

/* =========================================
TEXTO ENCIMA
========================================= */

.carru-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-align: center;
    padding: 20px;
    pointer-events: none;
}

/* =========================================
TITULO
========================================= */

.carru-overlay h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #facc15, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,0,0,0.7);
}

/* =========================================
SUBTITULO
========================================= */

.carru-overlay p {
    margin-top: 12px;
    color: #e5e5e5;
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 0 0 15px rgba(0,0,0,0.8);
}

/* =========================================
TRACK
========================================= */

.carousel-track {
    display: flex;
    height: 100%;
    width: max-content;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

/* =========================================
ITEMS
========================================= */

.carousel-item {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}
/* =========================================
IMAGENES
========================================= */

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* =========================================
RESPONSIVE TABLET
========================================= */

@media (max-width: 992px) {

    .carousel-container {
        height: 75dvh;
    }

    .carru-overlay h2 {
        font-size: 2.5rem;
    }

    .carru-overlay p {
        font-size: 1rem;
    }
}

/* =========================================
RESPONSIVE MOBILE
========================================= */

@media (max-width: 768px) {

    .carru {
        min-height: auto;
        padding: 40px 0;
    }

    .carousel-container {
        width: 100%;
        height: 65dvh;
        border-radius: 0;
    }

    .carru-overlay {
        padding: 25px;
    }

    .carru-overlay h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .carru-overlay p {
        font-size: 0.95rem;
        margin-top: 8px;
    }

    .carousel-item img {
        object-position: center;
    }
}

/* =========================================
MOBILE PEQUEÑO
========================================= */

@media (max-width: 480px) {

    .carousel-container {
        height: 58dvh;
    }

    .carru-overlay h2 {
        font-size: 1.6rem;
    }

    .carru-overlay p {
        font-size: 0.85rem;
    }
}
/*------------------fin carrusel---------------------------*/

footer{
  text-align:center;
  padding:20px;
  background:#000;
  font-size:0.8rem;
  opacity:0.6;
}

@media(min-width:768px){
  .services{grid-template-columns:repeat(3,1fr)}
  .gallery{grid-template-columns:repeat(4,1fr)}
  .hero h2{font-size:4rem}
}

/*------------------------------------------------------------*/

.card{
  background:linear-gradient(145deg,#0f0f0f,#1a1a1a);
  padding:25px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
}

.card:hover{
  transform:scale(1.05);
  box-shadow:0 0 25px #00f0ff;
}

.card h3{
  color:#00f0ff;
  margin-bottom:10px;
}

.gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.gallery img{
  width:100%;
  border-radius:15px;
  transition:0.3s;
}

.gallery img:hover{
  transform:scale(1.1);
}

.cta{
  text-align:center;
}

.cta h2{
  font-size:2.5rem;
  color:#ff00cc;
  text-shadow:0 0 20px #ff00cc;
}

.map {
    height: calc(100dvh - 145px);
    display: flex;
    flex-direction: column;
    justify-content: center; /* 👈 centra vertical */
    align-items: center;     /* 👈 centra horizontal */
    padding: 20px;
}

.map-container{
  display:flex;
  flex-direction: column;
  width: 90%;
  gap:20px;
  margin:20px 15px;
}

.map h2 {
    font-size:2.5rem;
    font-weight: 600;
    color:#ff00cc;
    text-align:center;
    margin-top: 20px;
}

.map-info{
  background:#111;
  padding:20px;
  border-radius:20px;
  text-align:center;
  align-items: center;
}

.map-info h3{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom:10px;
  color:#00f0ff;
}

.map-frame iframe{
  width:100%;
  height:300px;
  border:none;
  border-radius:20px;
}

@media(min-width:768px){
    .services{grid-template-columns:repeat(3,1fr)}
    .gallery{grid-template-columns:repeat(4,1fr)}
    .hero h2{font-size:4rem}

      .map-container{
        flex-direction:row;
      }
      
      .map-info h3 {
          font-size: 1.8rem;
      }
      
      .map-info p {
          font-size: 1.4rem;
      }
    
      .map-info{
        flex:1;
        text-align:left;
        display:flex;
        flex-direction:column;
        justify-content:center;
      }
    
      .map-frame{
        flex:1;
      }
    
      .map-frame iframe{
        width:100%;
        height:100%;
        min-height:350px;
      }
}

  .map-info{
    flex:1;
    text-align:left;
  }

  .map-frame{
    flex:1;
  }

  .map-frame iframe{
    height:350px;
  }
}

section{padding:70px 20px}

.services{
  display:grid;
  gap:20px;
}

.s-princ {
    background-image: url('/imagenes/fondo.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items:center;  
    justify-content:center;  
    text-align:center;
    position:relative;
}
