/* Hero Section */
.hero-servicios {
    margin-top: 80px;
    padding: 2rem 1rem;
    background: none;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Navbar - Fondo negro y texto blanco */
.nav-transparent {
    background-color: #333; /* Fondo negro */
}

.hero-servicios h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 40px; /* Agregar margen superior para separar el título de la cabecera */
}

/* Servicios Principales */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.servicio-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.servicio-item:hover {
    transform: translateY(-5px);
}

.servicio-icon {
    font-size: 48px;
    color: #009fe3;
    margin-bottom: 20px;
}

/* Proceso de Trabajo */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #009fe3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    clear: both;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #009fe3;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 10px);
    top: 0;
    z-index: 1;
}

.timeline-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Beneficios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.beneficio-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.beneficio-item:hover {
    transform: translateY(-5px);
}

.beneficio-item i {
    font-size: 48px;
    color: #009fe3;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 31px;
    }
    
    .hero-servicios h1 {
        font-size: 3rem;
    }
}

ul.sin-puntos {
    list-style-type: none; /* Oculta las viñetas */
    padding-left: 0; /* Opcional: elimina la indentación */
}