.hero-servicios{
position:relative;
background:url("../img/hero/h-servicios.webp") center/cover no-repeat;
min-height:65vh;
display:flex;
align-items:center;
justify-content:center;
padding:90px 20px;
color:#fff;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
max-width:900px;
z-index:2;
}

.hero-servicios h1{
font-size:clamp(2.2rem,4vw,3.3rem);
font-weight:700;
letter-spacing:1px;
margin-bottom:20px;
}

.hero-servicios h1::after{
content:"";
display:block;
width:90px;
height:4px;
background:#f2b705;
margin:18px auto 0;
}

.hero-sub{
font-size:clamp(1rem,1.4vw,1.25rem);
line-height:1.6;
opacity:.95;
margin-top:20px;
}

.text-muted-white{
    color: #fff;
}

.servicios{
background:#4CAF50;
}

.service-box{
background:#fff;
padding:30px;
border-radius:10px;
transition:all .3s ease;
box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.service-icon{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
background:var(--amarillo);
border-radius:10px;
font-size:26px;
margin-bottom:20px;
color:#000;
}

.service-box h3{
font-size:18px;
font-weight:600;
margin-bottom:10px;
}

.service-box p{
font-size:14px;
color:#6c757d;
line-height:1.6;
}

.servicio-card{
background:white;
border-radius:12px;
padding:25px;
box-shadow:0 6px 15px rgba(0,0,0,0.08);
transition:all .3s ease;
height:100%;
}

.servicio-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,0.18);
}

.servicio-top{
height:6px;
background:linear-gradient(90deg,#fcbf49,#f77f00);
border-radius:5px;
margin-bottom:15px;
}

.servicio-card h5{
color:#003366;
font-weight:700;
margin-bottom:12px;
}

.servicio-card ul{
font-size:0.9rem;
padding-left:18px;
line-height:1.5;
}

.img-container{
height:120px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:15px;
}

.img-container img{
max-height:100%;
max-width:100%;
object-fit:contain;
transition:transform .4s ease;
}

.servicio-card:hover img{
transform:scale(1.08);
}

@media (max-width:768px){

.hero-servicios{
min-height:40vh;
padding:60px 15px;
}

.servicio-card{
padding:20px;
}

.img-container{
height:100px;
}

}

