/* Estilos específicos para la página "Qué es Liberit" */

.about-hero {
    height: 50vh;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 161, 155, 0.5) 100%), url('assets/cubos.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(1, 245, 208, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(1, 245, 208, 0.2) 0%, rgba(0, 161, 155, 0.05) 100%);
    filter: blur(30px);
    z-index: 0;
}

.about-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 60px;
    line-height: 1.8;
}

.about-text p {
    color: var(--plata);
    margin-bottom: 25px;
    font-size: 18px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--blanco);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(200, 204, 206, 0.1);
    border-left: 3px solid var(--verde);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.service-title {
    color: var(--blanco);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.providers-section {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(200, 204, 206, 0.1);
    border-bottom: 1px solid rgba(200, 204, 206, 0.1);
}

.providers-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--blanco);
    font-size: 32px;
    font-weight: 600;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.provider-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.provider-logo:hover {
    background-color: var(--verde);
    transform: translateY(-5px);
}

.provider-logo:hover img {
    filter: brightness(1.2);
}
.provider-name {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    color: var(--plata);
    font-size: 14px;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-text p {
        font-size: 16px;
    }

    .provider-logo {
        width: 70px;
        height: 70px;
    }

    .provider-logo svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 40vh;
    }

    .about-content {
        padding: 60px 5%;
    }

    .provider-logo {
        width: 60px;
        height: 60px;
    }

    .provider-logo svg {
        width: 30px;
        height: 30px;
    }
}