/* Fondo general de la página */
body {
    font-family: Arial, sans-serif;
    background-image: url(fondo.2.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Sección de servicios con fondo semitransparente */
.servicios {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 40px;
}

.servicios h1 {
    font-size: 2em;
    color: #637dc5;
    margin-bottom: 10px;
}

.servicios .descripcion {
    color: #3a8b37;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Contenedor de tarjetas */
.servicios-contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Cada tarjeta de servicio */
.servicio {
    background-color: rgb(243, 239, 239);
    border: 1px solid #030303;
    border-radius: 15px;
    padding: 20px;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.servicio img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.servicio h3 {
    margin-top: 15px;
    color: #000000;
}

.servicio p {
    color: #161515;
    font-size: 0.95em;
}
.boton-inicio {
    display: inline-block;
    background-color: #635a94; 
    color: rgb(255, 252, 252);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 40px;
    transition: background-color 0.3s ease;
}

.boton-inicio:hover {
    background-color: #eee7e7; 
}