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

.cabecera{
    background: #1d1e19;
    background: black;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.leyenda{
    font-size: 30px;
    font-weight: bold;
}

.logotipo img{
    width: 100%;
}

.datos{
    text-align: center;
    font-size: 22px;
    line-height: 42px;
}
.datos strong{
    background: #f88f00;
    color: white;
    font-size: 27px;
    padding: 3px 10px;
}
.datos img{
    width: 30px;
}


.efecto{
    padding: 0;
}


.nosotros{
    padding-top: 30px;
    padding-bottom: 30px;
}


.seccion{
    font-size: 20px;
    padding: 40px;
}
.seccion strong{
    font-size: 30px;
    font-weight: bold;
}

.imagen img{
    width: 100%;
}

.i1 img{
    border-radius: 200px 0 0 100px;
}


.btn-contacto {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-contacto:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}



.servicios{
    background: url(../images/fondo-gris.webp) no-repeat center center /cover;
    padding-top: 50px;
    padding-bottom: 50px;
}

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


.ser img{
    width: 100%;

    border-radius: 50px 50px 0 0;
}
.ser strong{
    width: 100%;
    text-align: center;
    font-size: 22px;
    display: inline-block;
}


.cursos{
    position: relative;
    background: url(../images/fondo-cursos.webp) no-repeat center center / cover;
    padding-top: 40px;
    padding-bottom: 40px;
}
.fondo-blanco{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255,255,255,0.7);
    width: 100%;
    height: 100%;
}
.cursos .container{
    position: relative;
    z-index: 2;
}

.titulo2{
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
}

.curso{
    background: #f88f00;
    text-align: center;
    font-size: 18px;
    color: white;
    padding: 12px 0;
    margin-bottom: 20px;
}
.curso strong{
    width: 100%;
    font-size: 22px;
    font-weight: 800;
    display: inline-block;
}
.curso img{
    width:40px;
}


.clientes{
    background: #f7f7f7;
    padding-top: 40px;
    padding-bottom: 100px;
}


.imagenes{
    text-align: center;
}
.imagenes img{
    height: 120px;
    margin: 0 50px;
}


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

}

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

}

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

}

@media screen and (max-width:768px){
    .leyenda{
        text-align: center;
        color: #f88f00;
        font-weight: bold !important;
        font-size: 32px;
    }
    .imagenes img{
        height: 90px;
    }
    .mini{
        width: 80%;
        height: auto !important;
    }
    .datos{
        font-size: 20px;
    }
    .datos img{
        width: 25px;
    }
}

@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
}