.servicios-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    align-items: center;
} 
 
.servicio {
    width: 100%;
    height:auto;
    overflow:hidden;
    display:block;
    min-height: 550px;
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    
        opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
    
}

.servicio.visible {
    opacity: 1;
    transform: translateY(0);
}


.servicio-pic{
    width: 100%;
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
} 
.servicio-titulo-box{
    width: 100%;
    height: 100px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.servicio-titulo{
    font-weight: bold;
    text-align: left;
    font-size: 1.4rem;
    color: var(--primary-one);
    width: 100%;
    padding: 5px 20px;
    display: block;
}
.servicio-content{
    padding:0 20px 20px 20px;
    line-height: 1.7rem;
    font-size: 1.2rem;
}

@media (max-width: 848px) {
  .servicios-container {
    grid-template-columns: 1fr; /* Una sola columna */
  }
}