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

.cintillo{
    background: #f6fbf1;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px;
}
.cintillo strong{
    font-size: 32px;
}
.cintillo button{
    font-weight: bold;
}

.btn-verde{
    background: #1a9c4c;
    color: white;
    font-weight: bold;
}


.titulo{
    font-family: "Work Sans", sans-serif;
}

.subtitulo{
    text-align: center;
    font-weight: bold;
    font-size: 27px;
}


.efecto{
    position: relative;
    background: url(../images/fondo-efecto.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 50px;

    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.efecto::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top right, #00450d , rgb(0 69 13 / 0.8) , transparent);
}
.efecto > * {
    position: relative;
    z-index: 2;
}
.efecto button{
    font-size: 22px;
    font-weight: bold;
}

.efecto h1{
    font-family: "Work Sans", sans-serif;
    color: white;
    font-size: 75px;
    line-height: 80px;
    font-weight: 900;
    margin: 30px 0;
}

.serv{
    background: green;
    text-align: center;
    color: white;
    font-size: 20px;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 12px;
}
.serv b{
    font-size: 60px;
}

.btn-rojo{
    background: #b5191d;
    color: white;
    padding: 20px 30px;
}



.leyenda1, .leyenda2{
    background:#f2f6ba;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    padding-top: 100px;
    padding-bottom: 30px;
    margin-top: -70px;
}
.leyenda1 img, .leyenda2 img{
    height: 40px;
}

.leyenda2{
    padding-top: 30px !important;
    margin-top: 0 !important;
}


.textote{
    padding-top: 40px;
    padding-top: 20px;
}

.titulo{
    text-align: center;
    color: blue;
    font-weight: bold;
    font-size: 33px;
}

.textote2{
    padding-top: 20px;
    padding-bottom: 20px;
}


.pro{
    background: #f7f7f7;
    text-align: center;
    font-size: 23px;
    padding: 5px 10px;

    border-radius: 20px;
}



.amarillo{
    background: #f2f6ba;
    font-size: 22px;
    text-align: center;
    padding: 40px;
}
.amarillo strong{
    color: red;
    font-size: 30px;
}
.amarillo img{
    width: 300px;
}


.verde{
    background: #015a26;
    font-size: 22px;
    color: white;
    text-align: center;
    padding: 40px;
}
.verde strong{
    color: white;
    font-size: 30px;
}
.verde img{
    width: 30px;
}
.verde a{
    color: white;
    text-decoration: none;
}


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

}

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

}

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

}

@media screen and (max-width:768px){
    .leyenda1{
        margin-top: -105px;
    }
}

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




.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: normal;
    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
}





.galeria-doble {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.galeria-fila {
    width: 100%;
    overflow: hidden;
    margin-bottom: 22px;
}

.galeria-fila:last-child {
    margin-bottom: 0;
}

.galeria-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.galeria-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.galeria-track-1 {
    animation: scrollIzquierda 55s linear infinite;
}

.galeria-track-2 {
    animation: scrollDerecha 60s linear infinite;
}

.galeria-item {
    flex: 0 0 auto;
    width: 280px;
    height: 250px;
    margin-right: 20px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
    background: #222;
}

.galeria-item:hover {
    transform: scale(1.04);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scrollIzquierda {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollDerecha {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.cerrar {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    font-weight: bold;
    z-index: 20;
}

.flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px 14px;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    z-index: 20;
    transition: background 0.3s ease, transform 0.3s ease;
}

.flecha:hover {
    background: rgba(255,255,255,0.2);
}

.flecha.izq {
    left: 20px;
}

.flecha.der {
    right: 20px;
}

@media (max-width: 768px) {
    .galeria-item {
        width: 220px;
        height: 150px;
        margin-right: 15px;
    }

    .galeria-track-1 {
        animation: scrollIzquierda 65s linear infinite;
    }

    .galeria-track-2 {
        animation: scrollDerecha 70s linear infinite;
    }
}

@media (max-width: 480px) {
    .galeria-item {
        width: 180px;
        height: 130px;
        margin-right: 12px;
    }

    .flecha {
        font-size: 32px;
        padding: 8px 12px;
    }

    .cerrar {
        font-size: 34px;
        right: 20px;
    }
}