/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


        #intro {
            position: fixed;
            inset: 0;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        #intro.hidden {
            opacity: 0;
            transform: scale(1.1);
            pointer-events: none;
        }

        .intro-container {
            text-align: center;
            transform: translateY(20px);
            animation: slideUp 1s ease-out forwards;
            position: relative;
            z-index: 10;
        }

        #logo-intro {
      width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    animation: logoFloat 3s ease-in-out infinite;
}


        #logo-intro:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 80px rgba(0,0,0,0.15);
        }

        .welcome-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #4caeb5; /* un blanco dorado sutil */
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 0 2px 15px rgb(217, 220, 251);
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #4fd9e3; /* gris claro elegante */
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.532);
}


        .tap-instruction {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
            color: rgba(5, 14, 53, 0.9);
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards, pulse 2s ease-in-out 1s infinite;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .tap-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            animation: bounce 2s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 5;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(255,255,255,0.2);
        }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }

        /* Animaciones del carrusel */
        @keyframes scrollRight {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(0%);
            }
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Animaciones existentes */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-8px);
            }
            60% {
                transform: translateY(-4px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0;
            }
            10%, 90% {
                opacity: 0.6;
            }
            50% {
                transform: translateY(-100px) rotate(180deg);
                opacity: 0.8;
            }
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            #logo-intro {
                width: 250px;
            }
            
            .welcome-text {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .tap-instruction {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            #logo-intro {
                width: 200px;
            }
            
            .welcome-text {
                font-size: 1.5rem;
            }
        }



.home-section {
  min-height: 100vh;
  padding: 9rem 2rem 6rem; /* pt-36 pb-24 approx */
  background: linear-gradient(90deg, #38b2ac 0%, #06b6d4 50%, #798290 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.home-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.home-section p {
  max-width: 60ch;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.home-section button {
  background-color: rgb(233, 248, 245);
  color: #14b8a6; /* teal */
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 8px 15px rgba(20,184,166,0.3);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.125rem;
}

.home-section button:hover {
  background-color: #ddf9f7;
  box-shadow: 0 12px 20px rgba(20,184,166,0.5);
}




.slider-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 10px 0;
    /* Para que no tape otros contenidos */
    position: relative;
    z-index: 1;
}
/*holussss*/
/* 1. Contenedor principal */
.home-section {
  padding: 8rem 1rem 5rem;
  background: #e4edfe;          /* gris muy suave */
  min-height: 100vh;
  text-align: center;
  font-family: 'center', sans-serif;
}
/* 2. Títulos */
.main-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;              /* gris oscuro */
  margin-bottom: 1rem;
}
.subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}
.description {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
/* 3. Sección de Horario - tarjeta horizontal compacta */
.horario-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  position: relative;
  margin: 0 auto 2rem;
}
#horario {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.horario-section h2 {
  margin: 0;
  margin-right: 2rem;
  font-size: 1.25rem;
  color: #047857;              /* verde marca */
  white-space: nowrap;
}
/* 4. Badge de estado */
.horario-section .status {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
/* 5. Lista de días compacta, estilo tarjetas */
.dias {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dias li {
  background: #e1f1f3;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  transition: background 0.3s;
}
.dias li:hover {
  background: #078be3;
}
.dias li span:last-child {
  margin-top: 0.25rem;
  font-weight: 600;
  color: #1f2937;
}
.dias .cerrado {
  color: #dc2626;
}
/* 6. Estilos responsivos */
@media (max-width: 640px) {
  .main-title { font-size: 2.25rem; }
  .subtitle    { font-size: 1.5rem; }
  .horario-section {
    flex-direction: column;
    padding: 1rem;
  }
  .horario-section h2 { margin-right: 0; margin-bottom: 0.75rem; }
  .dias { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
}
/* fin */ 
  .slider {
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  .slider-item {
    background: #ffffffcc; /* blanco translúcido */
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 200px;
    min-width: 200px;
    padding: 25px 20px 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .slider-item img {
    width: 60px;
    margin-bottom: 18px;
  }

  .slider-item h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    color: #034d4d; /* verde oscuro elegante */
    margin-bottom: 10px;
  }

  .slider-item p {
    font-size: 0.95rem;
    color: #2c2c2c;
    line-height: 1.3;
  }

  /* Al pasar el mouse, aumenta tamaño y sombra */
  .slider-item:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    background: #d2f0f0; /* un tono muy suave y fresco */
    z-index: 2; /* para que quede encima del resto */
  }

  /* Para que el slider no muestre barras de scroll horizontal */
  .slider-container::-webkit-scrollbar {
    display: none;
  }
  .slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
/* Clase que usa una variable --img-size para ancho/alto */
.img-zoom {
  width: var(--img-size, 800px);   /* 150px por defecto */
  height: var(--img-size, 800px);
  object-fit: cover;               /* Corta/reencuadra sin deformar */
  transition: width 0.3s, height 0.3s; /* Animación suave al cambiar tamaño */
}

/* Bordes suavemente redondeados */
.img-rounded {
  border-radius: 20px;       /* Ajusta el valor a tu gusto */
  overflow: hidden;          /* Para que la imagen no se salga del borde */
}

/* Tamaño dinámico mediante variable CSS */
.img-zoom {
  width: var(--img-size, 100px);
  height: 15px;              /* Mantiene la proporción original */
  object-fit: cover;
  transition: width 0.3s ease, height 0.3s ease;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #bde1dd;
  color: #646363;
}

.bg-turquesa {
  background-color: #e2c9e1;
}

/* Carrusel */
.carousel-images {
  width: 200%;
  display: flex;
  animation: carousel 30s linear infinite;
}

.carousel-img {
  width: calc(50% / 5);
  object-fit: cover;
  height: 50px;
}

@keyframes deslizarCarrusel {
  0%   { transform: translateX(5%); }
  20%  { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

.carousel-images {
  animation: deslizarCarrusel 200s infinite ease-in-out;
}

/* Enlaces del menú */
nav a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .carousel-img {
    height: 200px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.shadow-xl {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.rounded-2xl {
  border-radius: 1rem;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}