/* Portada */
.productos-container-cover {
    width: 100%;
    height: 500px;
    position: relative;
    margin-top: 80px;
    background-image: url(../img/img1.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.productos-container-cover::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(38, 172, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.container-info-cover {
    max-width: 800px;
    height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.container-info-cover h1 {
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.container-info-cover p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

/* Sección de Servicios tipo cards */
.services-container {
    max-width: 1200px;
    margin: 60px auto;
    text-align: center;
}

.services-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 20px -15px black;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px -5px black;
}

.service-card i {
    font-size: 40px;
    color: #46a2fd;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

.service-card ul {
    list-style: disc inside;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
    text-align: left;
    width: 100%;
}

.service-card ul li {
    margin-bottom: 8px;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
    .container-info-cover h1 {
        font-size: 48px;
    }
    .container-info-cover p {
        font-size: 18px;
    }
}

@media screen and (max-width: 800px) {
    .services {
        grid-template-columns: 1fr;
    }
    .container-info-cover h1 {
        font-size: 40px;
    }
    .container-info-cover p {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .service-card h3 {
        font-size: 18px;
    }
    .service-card p,
    .service-card ul li {
        font-size: 15px;
    }
}
