        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            overflow-x: hidden;
        }
        header {
            width: 100%;
            background: #ff5c8d;
            color: white;
            text-align: center;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            font-size: 1.2rem;
            font-weight: bold;
            display: flex;
            position: fixed;
            top: 0px;
            z-index: 1;
            

        }

        header p{
            font-size: larger;
            

        }

        header a{
            padding: 10px 7px 10px 7px;
            border-radius: 50px;
            border: 3px solid #ffb7cc;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
        }

        header a:hover{
            border-color: #f8f8f8;
        }

        .nav-links {
            display: flex; /* Usa flexbox para organizar los enlaces en línea */
            gap: 20px; /* Espaciado de 20px entre cada enlace */
            justify-content: end; /* Pega los enlaces a la parte derecha*/
            align-items: self-end;

        }
        
        .nav-links a {
            text-decoration: none; /* Quita el subrayado de los enlaces */
            color: white; /* Color del texto de los enlaces */
            font-weight: bold; /* Hace que el texto de los enlaces sea más grueso */
        }

       
        img.historia{
            margin-top: 10px;
            margin-bottom: 10px;
            object-fit: contain;
        }

        img.historia#primera_cita{
            object-fit: contain;
        }

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            background: url('/img/main/fanfutura1.JPEG') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 768px) {
            .hero {
            background: url('/img/main/fanfutura2.JPEG') center/cover no-repeat;
        }
}
        .hero-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-text {
            background: rgba(255, 255, 255, 0.75);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        .hero-text h1 {
            font-size: 2rem;
            color: #333;
        }
        .hero-text p {
            color: #555;
        }
        .sections {
            background: #f5f5f5;
            padding: 50px 20px;
            padding-top: 10px;
        }
        .section {
            max-width: 100vw;
            margin: 20px auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease-out;
            justify-content: center;
        }
        .section.show {
            opacity: 1;
            transform: translateY(0);
        }
        .section h2 {
            margin-bottom: 10px;
        }

        .section img {
            height: 50vw;
            width: 80vw;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .nav-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .nav-buttons button {
            background: #ff5c8d;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
        }

        /*
        .galeria {
            position: relative;
        }
        
        .swiper-wrapper {
            display: flex;
            overflow: hidden;
            width: 100%;
        }
        
        .slide {
            width: 100%;
            flex-shrink: 0;
            transition: transform 0.5s ease;
        }
        
        .slide img {
            display: block;
            width: 100%;
            height: auto;
        }
        
        .swiper-nav-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        
        .swiper-button-prev, .swiper-button-next {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px;
            cursor: pointer;
        }
        Galeria*/

        /*Galeria2*/

        /*Galeria2*/

        .container{
            width: 70vh;
            position: relative;
            margin-left: 20vh;
        }
        .mySlides{
            display: none;
        }
        .mySlides img{

            width: 100%;
            height: 80vh;
            height: cover;
        }
        .prev,
        .next{
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: #fff;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6 ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            border:  solid #fff 2px;
        }
        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        .prev:hover,
        .next:hover{
            background-color: #ff5c8d;
        }
        .elements{
            text-align: center;
        }
        .quadrate{
            cursor: pointer;
            height: 4px;
            width: 50px;
            margin: 0 2px;
            background-color: #ec5280;
            display: inline-block;
            transition: background-color 0.6s ease;
            border-radius: 2px;
        }
        .active, .quadrate:hover{
            background-color: #ffc2d4;
        }
        @media screen and (max-width:1000px) {

            .mySlides img{

                width: 100%;
                height: 60vh;
                height: cover;
            }
            .container{
                width: 100%;
                margin-left: 0;
            }
        }
        @media screen and (max-width:500px) {
            .container{
                width: 100%;
            }
            .prev,
            .next{
                padding: 5px;
            }
        }

    /*Contador*/
    #recuento {
        border: 2px solid #ff5c8d;
        border-radius: 15px;
        padding: 15px;
        background: #ffe6f0;
        max-width: fit-content;
        margin: 20px auto;
        display: flex;
        justify-content: center;
        gap: 15px;
        font-weight: 600;
        flex-wrap: wrap;
      }

      #recuento span {
        background: #ff9ab3;
        padding: 4px 10px;
        border-radius: 12px;
        color: #fff;
        box-shadow: 0 2px 5px rgba(255, 92, 141, 0.4);
        font-variant-numeric: tabular-nums;
        transition: background-color 0.3s ease;
        cursor: default;
      
        /* Aquí está la clave: se hace un flex vertical */
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 40px;
      }
      
      /* Para poner la palabra debajo del número, vamos a separar con pseudo-elementos */
      #recuento span::after {
        content: attr(data-label);
        font-weight: 700;            /* un poco más grueso para mejor visibilidad */
        color: #b33a5c;              /* rosa oscuro pero más suave que antes */
        font-size: 0.9rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* fuente limpia y legible */
        margin-top: 0px;
        display: block;
        user-select: none;
      }
      
      #recuento span:hover {
        background-color: #ff5c8d;
      }

      #recuento #info {
        
      }
