@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

.section2ciberseguridad {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('/img/fulltechnexus/fullstack/fondo2.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 50px 20px;
}

.section2ciberseguridad-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section2ciberseguridad .req-alumno {
    width: 80%;
    max-width: 400px;
    height: auto;
}

.section2ciberseguridad .section2ciberseguridad-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
    padding: 0 10px;
}

.section2ciberseguridad .descarga-brochure {
    width: 70%;
    max-width: 300px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding-top: 70px;
}

.section2ciberseguridad .descarga-brochure:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .section2ciberseguridad-container {
        max-width: 90%;
    }

    .section2ciberseguridad .req-alumno {
        width: 90%;
    }

    .section2ciberseguridad .descarga-brochure {
        width: 80%;
    }

    .section2ciberseguridad .section2ciberseguridad-text {
        font-size: 16px;
    }
}