/* HERO */

.services-hero{
    background:var(--silver-color);
    padding:30px 20px;
    text-align:center;
}

.services-hero__container{
    max-width:900px;
    margin:auto;
}

.services-hero__title{
    font-size:42px;
    margin-bottom:20px;
    color: var(--lightskyblue-color);
}

.services-hero__text{
    font-size:18px;
    color:var(--black-color);
}

.services-hero__logo{
    width: 100px;
    display: block;
    margin: 0 auto 20px auto;
}

.services-hero__animate {
    opacity: 0;
    transform: translateY(-50px); /* empieza arriba */
    transition: all 1s ease;
}

.services-hero__animate--visible {
    opacity: 1;
    transform: translateY(0); /* baja a su posición */
}

/* SERVICIOS */

.service{
    padding:80px 20px;
}

.service__container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.service--reverse .service__container{
    direction:rtl;
}

.service--reverse .service__content{
    direction:ltr;
}

.service__image img{
    width:100%;
    border-radius:8px;
}

.service__title{
    font-size:32px;
    margin-bottom:15px;
}

.service__text{
    margin-bottom:20px;
    color:#555;
}

.service__button{
    display:inline-block;
    background:#2c7be5;
    color:white;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
    transition:0.3s;
}

.service__button:hover{
    background:#1a5fb4;
}

.reveal,
.reveal-left,
.reveal-right{
opacity:0;
transition:all .9s ease;
}

.reveal{
transform:translateY(60px);
}

.reveal-left{
transform:translateX(-60px);
}

.reveal-right{
transform:translateX(60px);
}

.active{
opacity:1;
transform:translate(0);
}