/* =====================================
   HERO SERVICIOS
===================================== */

.servicios-hero{

    min-height:50vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.55)
    ),
    url('../imagenes/banners/benner-service.png')
    center center/cover no-repeat;
}

.servicios-hero-content{

    max-width:850px;

    color:white;
}

.servicios-hero-content span{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;
}

.servicios-hero-content h1{

    font-size:clamp(2.5rem,5vw,4.5rem);

    font-weight:800;

    margin-bottom:20px;
}

.servicios-hero-content p{

    font-size:1.1rem;

    line-height:1.8;
}

/* =====================================
   SECCION SERVICIOS
===================================== */

.servicios-section{

    padding:90px 8%;

    background:#f8f9fa;
}

.servicios-section h2{

    text-align:center;

    font-size:2.5rem;

    margin-bottom:60px;
}

/* =====================================
   GRID
===================================== */

.servicios-grid{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

/* =====================================
   CARD
===================================== */

.service-card{

    background:white;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}

/* =====================================
   ICONO
===================================== */

.service-icon{

    width:80px;
    height:80px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:2rem;

    background:#e60012;

    color:white;
}

.service-card h3{

    margin-bottom:15px;

    font-size:1.3rem;
}

.service-card p{

    color:#666;

    line-height:1.8;
}

/* =====================================
   BENEFICIOS
===================================== */

.beneficios-servicios{

    background:#111;

    color:white;

    padding:90px 8%;
}

.beneficios-servicios h2{

    text-align:center;

    margin-bottom:50px;

    font-size:2.5rem;
}

.beneficios-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    max-width:1200px;

    margin:auto;
}

.beneficio{

    text-align:center;

    padding:30px;

    border-radius:20px;

    background:rgba(255,255,255,.05);
}

.beneficio h3{

    color:#e60012;

    font-size:2rem;

    margin-bottom:10px;
}

/* =====================================
   CTA
===================================== */

.cta-servicios{

    padding:90px 8%;

    text-align:center;

    background:white;
}

.cta-servicios h2{

    font-size:2.5rem;

    margin-bottom:20px;
}

.cta-servicios p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    margin-bottom:25px;
}

.cta-btn{

    display:inline-block;

    text-decoration:none;

    background:#00a63f;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.cta-btn:hover{

    background:#008535;

    transform:translateY(-3px);
}

/* =====================================
   WHATSAPP
===================================== */

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:2rem;

    box-shadow:
    0 8px 25px rgba(0,0,0,.2);

    z-index:999;
}

.whatsapp-btn:hover{

    transform:scale(1.1);
}

/* =====================================
   TABLET
===================================== */

@media(max-width:992px){

    .beneficios-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .servicios-hero{

        min-height:40vh;
    }

    .servicios-hero-content h1{

        font-size:2.2rem;
    }

    .servicios-section{

        padding:70px 6%;
    }

    .servicios-section h2{

        font-size:2rem;
    }

    .beneficios-grid{

        grid-template-columns:1fr;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media(max-width:480px){

    .servicios-hero-content h1{

        font-size:1.9rem;
    }

    .service-card{

        padding:30px 20px;
    }
}