﻿body{
    font-family: "Roboto", sans-serif;
}

.cintillo-ayuda{
    height: 33px;
}

.cintillo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: black;
    text-align: center;
    color: white;
    font-size: 18px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.cintillo a{
    color: white;
}



header{
    padding-top: 32px;
    padding-bottom: 32px;
}

.logotipo img{
    width: 100%;
}

.leyenda{
    font-size: 43px;
    line-height: 48px;
    font-weight: bold;
}


nav a, .leyenda a{
    color: white;
    text-decoration: none;
}
.leyenda a{
    color: black;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 19%;
    float: left;
    margin: 0 0.5%;
}

.menu{
    background: #24d366;
    font-size: 21px;
    color: white;
    text-align: center;
    padding: 12px 0;

    border-radius: 3px;
}
.mUno{
    padding: 29px 20px;
}
.menu:hover{
    background: #95ca54;
    font-weight: bold;
}


.efecto{
    padding: 0;
}


.agendas2027{
    background: #f7f7f7;
    text-align: center;
    font-size: 70px;
    color: blue;
    font-weight: bold;
    padding-top: 30px;
    padding-bottom: 30px;
}
.agendas2027 b{
    font-size: 120px;
}


.imagen img{
    width: 100%;
}


.info{
    margin: 30px 0;
}

.texto{
    background: black;
    font-size: 22px;
    color: white;
    padding: 45px;
}


.img2{
    background: url(../images/2.jpg) no-repeat center center;
    background-size: cover;
}


.productos{
    padding-top: 50px;
    padding-bottom: 50px;
}

.pro{
    background: #f7f7f7;
    background: rgb(36, 211, 102, 0.3);
    text-align: center;
    font-size: 17px;
    padding: 4px;
    margin-bottom: 20px;

    border-radius: 12px;
}
.pro b{
    font-size: 30px;
    font-weight: bold;
}


.titulo{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #95ca54;
    margin-bottom: 40px;
}



.pro2{
    background: rgb(36, 211, 102, 0.3);
    text-align: center;
    padding: 7px;
    margin-bottom: 30px;
}
.pro2 div{
    width: 100%;
    overflow: hidden;
}
.pro2 img{
    width: auto;
    height: 220px;

    object-fit: contain;
}
.pro2 strong{
    width: 100%;
    text-align: center;
    font-size: 22px;
    display: inline-block;
}


.proMas{
    background: #f7f7f7;
    padding: 12px;
}
.proMas .imagenes{
    text-align: center;
}
.proMas img{
    width: 35%;
    margin: 0 1% 10px;
}
.proMas strong{
    width: 100%;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 20px;
}



.footer {
    background: linear-gradient(180deg, #222, #111);
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
}

footer img{
    width: 30px;
}

.form-group{
    margin-bottom: 12px;
}

.footer h5 {
    color: #fff;
    letter-spacing: 1px;
}

.footer a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.footer ul li {
    margin-bottom: 6px;
    transition: transform 0.2s;
}

.footer ul li:hover {
    transform: translateX(5px);
    color: #ffc107;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){
    .cintillo{
        position: relative;
    }
    .cintillo-ayuda{
        display: none;
    }
    .agendas2026, .agendas2026 b{
        font-size: 50px;
    }
}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    nav ul li{
        width: 48%;
        margin-bottom: 12px;
    }
    .menu, .mUno{
        font-size: 17px;
        padding: 12px 0;
    }
    .img{
        height: 350px;
    }
}

@media screen and (max-width:576px){
    
}



.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}






/* === LIGHTBOX === */
.lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
    padding: 20px;
}

.lightbox.active{
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content{
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img{
    max-width: 92vw;
    max-height: 92vh;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-radius: 8px;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close{
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    background: transparent;
    border: 0;
    line-height: 1;
    padding: 6px 10px;
}

/* Flechas */
.lightbox-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-size: 34px;
    line-height: 52px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.lightbox-nav:hover{
    background: rgba(255,255,255,0.20);
}

.lightbox-prev{ left: 14px; }
.lightbox-next{ right: 14px; }

/* En móvil, que no tapen tanto */
@media (max-width: 576px){
    .lightbox-nav{
        width: 44px;
        height: 44px;
        font-size: 28px;
        line-height: 44px;
    }
}

/* Cursor en imágenes */
.imagenes img{
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.imagenes img:hover{
    transform: scale(1.03);
}