
/* ================ Servicios 01 ==================== */
.mainServicios {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

.mainServicios #servicios h2, 
.mainServicios #por-que-elegirnos h2, 
.mainServicios #contacto h2 {
    border-bottom: 2px solid #A6C4B1; /*#4CAF50;*/
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    color: rgba(20, 55, 89, 0.9); /* #4CAF50;*/
}

.mainServicios .servicio {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mainServicios .servicio .icono {
    width: 2.2rem;
    margin-right: 1rem;
    font-size: 2rem;
    color: rgba(20, 55, 89, 0.9); /* #4CAF50;*/
}

.mainServicios .servicio .contenido h3 {
    margin-bottom: 1rem;
    color: rgba(20, 55, 89, 0.9); /* #4CAF50;*/
}

.mainServicios .servicio .contenido ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mainServicios .servicio .contenido ul li {
    margin: 5px 0;
}
.mainServicios .lnDiv {
    border-right: 2px solid #A6C4B1;
    margin-right: 1rem;
    /*filter: drop-shadow(0 2px 2px #999);*/
    height: 4rem;
}

.mainServicios #contacto ul {
    list-style: none;
    padding: 0;
}

.mainServicios #contacto ul li {
    margin-bottom: 0.5rem;
}

.mainServicios footer p {
    margin: 0;
}

.mainServicios #dark-mode-toggle {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #333;
    color: #fff;
}

body.dark-mode header, body.dark-mode footer {
    background-color: #2E7D32;
}

body.dark-mode .servicio {
    background: #444;
}

body.dark-mode #dark-mode-toggle {
    background-color: #2E7D32;
}
