<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* EstilizaÃ§Ã£o da seÃ§Ã£o principal */
.hero {
    background: url('../../src/img/imgPagPrincipal.png') no-repeat center center/cover;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    /* Alinha o texto Ã&nbsp; esquerda */
    position: relative;
}

/* Container do conteÃºdo */
.hero-content {
    max-width: 600px;
}

/* Texto pequeno */
.hero h3 {
    font-size: 22px;
    font-weight: 900;
    background-color: #922124;
    color: white;
    padding: 10px 20px;
    display: inline-block;
}

/* Texto principal grande */
.hero h1 {
    font-size: 60px;
    font-weight: 900;
    background-color: #922124;
    color: white;
    padding: 15px 20px;
    display: inline-block;
    margin: 10px 0;
}

/* BotÃ£o CTA */
.cta {
    font-size: 18px;
    font-weight: 900;
    background-color: #922124;
    color: white;
    padding: 12px 20px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
    transition: transform 0.3s ease-in-out;
    transform-origin: left center;
}

/* Efeito de hover no botÃ£o */
.cta:hover {
    transform: scale(1.1);
}

/* Container principal */
.cursos-container {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 90vw;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    /* Sombra mais destacada */
}

/* ConteÃºdo flexÃ­vel */
.cursos-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Texto fixo Ã&nbsp; esquerda */
.cursos-texto {
    flex: 1;
    padding-left: 30px;
    font-size: 15px;
    font-weight: 900;
    color: black;
}

/* Lista dos cursos */
.cursos-lista {
    flex: 4;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* EstilizaÃ§Ã£o dos cards (agora mais finos e deitados) */
.curso-card {
    position: relative;
    width: 20%;
    /* Mais largo */
    height: 130px;
    /* Mais fino */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Ajuste das imagens dentro do card */
.curso-card {
    position: relative;
    overflow: hidden;
    /* Evita que elementos filhos ultrapassem os limites */
}

.curso-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Adicionando o gradiente */
.curso-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 80%);
    pointer-events: none;
    /* Impede que o gradiente afete interaÃ§Ãµes */
}


/* Overlay para sombrear o nome do curso */
.curso-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 80%);
    padding: 10px;
    text-align: center;
}

.curso-overlay p {
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 900;
    /* Texto mais grosso */
    color: #922124;
}

/* Hover para dar destaque */
.curso-card:hover {
    transform: scale(1.05);
}

/* SeÃ§Ã£o de ConheÃ§a a Faculdade */
.sobre-faculdade {
    width: 90%;
    margin: 50px auto;
    padding: 30px;
    background: white;
}

/* Container flexÃ­vel */
.sobre-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

/* Texto */
.sobre-texto {
    flex: 1;
    margin: 0px;
}

.sobre-texto h2 {
    font-size: 50px;
    font-weight: 900;
    margin-top: 30px;
}

.sobre-texto h3 {
    font-size: 30px;
    font-weight: 900;
    margin-top: 30px;
}

.sobre-texto p {
    font-size: 20px;
    margin: 5px 0;
    color: black;
    margin-top: 15px;
}

.sobre-texto ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
}

/* Imagem */

.sobre-imagem img {
    margin-top: 30px;
    margin-left: 100px;
    width: 70%;
    border-radius: 12px;
}

/* RESPONSIVIDADE */

/* Para dispositivos mÃ³veis (celulares) */
@media screen and (max-width: 768px) {

    .hero {
        height: auto;
        padding: 60px 20px;
        text-align: center;
        justify-content: center;
        background-position: top;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .hero h3 {
        font-size: 18px;
    }

    .cta {
        font-size: 16px;
        padding: 10px 15px;
    }

    .cursos-container {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 20px 10px;
        margin-top: 30px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cursos-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cursos-texto {
        text-align: center;
        padding: 0;
        font-size: 14px;
    }

    .cursos-lista {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .curso-card {
        width: 90%;
        height: 130px;
    }

    .curso-overlay p {
        font-size: 14px;
    }

    .sobre-content {
        flex-direction: column;
        align-items: center;
    }

    .sobre-texto {
        text-align: center;
    }

    .sobre-texto h2 {
        font-size: 30px;
    }

    .sobre-texto h3 {
        font-size: 22px;
    }

    .sobre-texto p,
    .sobre-texto ul {
        font-size: 16px;
    }

    .sobre-imagem img {
        width: 100%;
        margin: 20px 0 0 0;
    }
}</pre></body></html>