/* Carrossel principal */
#carousel {
    width: 80%;
    height: 675px;
    margin: 0 auto 50px auto;
    border-radius: 30px;

}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #092e5e;
    border: 3px solid #092e5e;
    border-radius: 60%;
    margin: 0;
    width: auto;
}



/* Cards de universidades - igual busca */
.cardsInicio {
    width: 80%;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    height: auto;
    padding: 0;
}

/* Carrossel horizontal */


.cards-carousel-wrapper {
    display: flex;
    align-items: center;
    width: 85%;
    position: relative;
    height: 100%;
}

.cards-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 16px 0;
    gap: 20px;

}

.cards-carousel::-webkit-scrollbar {
    display: none;
}

/* Setas do carrossel */
.carousel-arrow {
    color: #092e5e;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    cursor: pointer;
    background-color: rgba(255, 0, 0, 0);

}

.carousel-arrow:hover {
    color: #006eff;
    opacity: 1;
}

.cards-carousel-wrapper.has-overflow .carousel-arrow {
    display: block;
}

/* Card visual igual busca */
.card-uni {
    background: #fff;
    border: 3px solid #092e5e;
    border-radius: 16px;
    /* display: flex; */
    align-items: flex-start;
    min-width: 370px;
    min-height: 170px;
    padding: 18px;
    box-sizing: border-box;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    margin: 20px;
}

.card-uni:hover {
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(9, 46, 94, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.card-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 16px;
    border-radius: 8px;
    background: #f5f5f5;
    flex-shrink: 0;
    margin-top: 6px;
    pointer-events: none;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-nome {
    font-size: 1.5rem;
    font-weight: bold;
    color: #092e5e;
    margin-bottom: 0;
    line-height: 1.1;
}

.card-nomecompleto {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0;
    line-height: 1.1;
}

.card-dados {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 10px;
}

.card-nota,
.card-org,
.card-cat {
    font-size: 1rem;
    color: #222;
    margin: 0;
    line-height: 1.2;
}

/* Responsivo */
@media (max-width: 1100px) {
    .card-uni {
        width: 95vw;
        max-width: 400px;
    }
}

@media (max-width: 700px) {
    .cardsInicio {
        width: 98vw;
        padding: 0;
    }

    .card-uni {
        width: 98vw;
        max-width: 99vw;
        min-width: unset;
        padding: 12px 8px 12px 8px;
    }

    .card-img {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .card-nome {
        font-size: 1.1rem;
    }
}

/* Outros elementos da página */


.contactImages {
    width: 50px;
    height: auto;
}




.btn-outline {
    border: 2px solid #fff;
    padding: 8px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #fff;
    color: #092e5e;
}

#sobreNos {

    width: 80%;
    height: 300px;
    border-radius: 30px;
    margin-bottom: 50px;
    color: #092e5e;
}

#sobreNos p {
    color: black;
    font-size: 35px;
    font-weight: 600;
    margin: 20px;
}

#sobreNos a {
    text-decoration: none;
    color: #092e5e;
    font-weight: 700;
}

#nossoTime {
    width: 80%;
    height: 400px;
    border-radius: 30px;
    justify-content: center;

    gap: 16px;

}

#integrantesImages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.integrantes img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 10px;
}

.gifs {
    width: 1200px;
    height: auto;


}

#primeiro-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* From Uiverse.io by Smit-Prajapati */
.orange {
    color: #ff7a01;
}

/* Formulário de dúvidas - DecideJá */
.form-container {
    max-width: 700px;
    margin-top: 20px;
    background-color: #092e5e;
    /* azul escuro */
    padding: 30px;
    border-left: 5px solid #006eff;
    /* laranja destaque */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.heading {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.form-container .form .input {
    color: #fff;
    width: 100%;

    /* Carrossel principal */
    #carousel {
        width: 80%;
        height: 675px;
        margin: 0 auto 50px auto;
        border-radius: 30px;

    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        background-color: #092e5e;
        border: 3px solid #092e5e;
        border-radius: 60%;
        margin: 0;
        width: auto;
    }



    /* Cards de universidades - igual busca */
    .cardsInicio {
        width: 80%;
        border-radius: 30px;
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        height: auto;
        padding: 0;
    }

    /* Carrossel horizontal */


    .cards-carousel-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
        height: 100%;
    }

    .cards-carousel {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 100%;
        padding: 16px 0;


    }

    /* Setas do carrossel */
    .carousel-arrow {
        color: #092e5e;
        border: none;
        width: 40px;
        height: 40px;
        font-size: 2rem;
        cursor: pointer;
        background-color: rgba(255, 0, 0, 0);

    }

    .carousel-arrow:hover {
        color: #006eff;
        opacity: 1;
    }

    .cards-carousel-wrapper.has-overflow .carousel-arrow {
        display: block;
    }

    /* Card visual igual busca */
    .card-uni {
        background: #fff;
        border: 3px solid #092e5e;
        border-radius: 16px;
        /* display: flex; */
        align-items: flex-start;
        min-width: 370px;
        min-height: 170px;
        padding: 18px;
        box-sizing: border-box;
        transition: box-shadow 0.2s, transform 0.2s;
        position: relative;
        margin: 20px;
    }

    .card-uni:hover {
        cursor: pointer;
        box-shadow: 0 8px 24px rgba(9, 46, 94, 0.13);
        transform: translateY(-4px) scale(1.01);
    }

    .card-img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-right: 16px;
        border-radius: 8px;
        background: #f5f5f5;
        flex-shrink: 0;
        margin-top: 6px;
        pointer-events: none;
    }

    .card-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
    }

    .card-header {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .card-nome {
        font-size: 1.5rem;
        font-weight: bold;
        color: #092e5e;
        margin-bottom: 0;
        line-height: 1.1;
    }

    .card-nomecompleto {
        font-size: 1rem;
        color: #222;
        margin-bottom: 0;
        line-height: 1.1;
    }

    .card-dados {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-top: 10px;
    }

    .card-nota,
    .card-org,
    .card-cat {
        font-size: 1rem;
        color: #222;
        margin: 0;
        line-height: 1.2;
    }

    /* Responsivo */
    @media (max-width: 1100px) {
        .card-uni {
            width: 95vw;
            max-width: 400px;
        }
    }

    @media (max-width: 700px) {
        .cardsInicio {
            width: 98vw;
            padding: 0;
        }

        .card-uni {
            width: 98vw;
            max-width: 99vw;
            min-width: unset;
            padding: 12px 8px 12px 8px;
        }

        .card-img {
            width: 45px;
            height: 45px;
            margin-right: 10px;
        }

        .card-nome {
            font-size: 1.1rem;
        }
    }

    /* Outros elementos da página */


    .contactImages {
        width: 50px;
        height: auto;
    }




    .btn-outline {
        border: 2px solid #fff;
        padding: 8px 18px;
        border-radius: 8px;
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
    }

    .btn-outline:hover {
        background: #fff;
        color: #092e5e;
    }

    #sobreNos {

        width: 80%;
        height: 300px;
        border-radius: 30px;
        margin-bottom: 50px;
        color: #092e5e;
    }

    #sobreNos p {
        color: black;
        font-size: 35px;
        font-weight: 600;
        margin: 20px;
    }

    #sobreNos a {
        text-decoration: none;
        color: #092e5e;
        font-weight: 700;
    }

    #nossoTime {
        width: 80%;
        height: 400px;
        border-radius: 30px;
        justify-content: center;

        gap: 16px;

    }

    #integrantesImages {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-top: 20px;
    }

    .integrantes img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
        margin-top: 10px;
    }

    .gifs {
        width: 1200px;
        height: auto;


    }

    #primeiro-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* From Uiverse.io by Smit-Prajapati */
    .orange {
        color: #ff7a01;
    }

    /* Formulário de dúvidas - DecideJá */
    .form-container {
        max-width: 700px;
        margin-top: 20px;
        background-color: #092e5e;
        /* azul escuro */
        padding: 30px;
        border-left: 5px solid #006eff;
        /* laranja destaque */
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    }

    .heading {
        display: block;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .form-container .form .input {
        color: #fff;
        width: 100%;
        background-color: #0a3a79;
        /* azul intermediário */
        border: none;
        outline: none;
        padding: 10px;
        margin-bottom: 20px;
        font-weight: bold;
        transition: all 0.2s ease-in-out;
        border-left: 1px solid transparent;
    }

    .form-container .form .input:focus {
        border-left: 5px solid #006eff;
        /* azul claro destaque */
        background-color: #092e5e;
    }

    .form-container .form .textarea {
        width: 100%;
        padding: 10px;
        border: none;
        outline: none;
        background-color: #0a3a79;
        color: #fff;
        font-weight: bold;
        resize: none;
        max-height: 150px;
        margin-bottom: 20px;
        border-left: 1px solid transparent;
        transition: all 0.2s ease-in-out;
    }

    .form-container .form .textarea:focus {
        border-left: 5px solid #006eff;
        background-color: #092e5e;
    }

    .form-container .form .button-container {
        display: flex;
        gap: 10px;
    }

    .form-container .form .button-container .send-button {
        flex-basis: 70%;
        position: relative;
        text-align: center;
        padding: 10px;
        color: white;
        font-weight: bold;
        background: #006eff;
        /* Chanfro no canto inferior esquerdo */
        clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
        transition: all 0.2s ease-in-out;
        border-radius: 8px;
        border-top: 1px solid #0a3a79;
        border-right: 1px solid #0a3a79;
        border-bottom: 1px solid #0a3a79;
    }

    .form-container .form .button-container .send-button:hover {
        background: #0a3a79;
        /* azul claro */
        color: #fff;
    }

    .form-container .form .button-container .reset-button-container {
        filter: drop-shadow(1px 1px 0px #006eff);
        flex-basis: 30%;
    }

    .form-container .form .button-container .reset-button-container .reset-button {
        position: relative;
        text-align: center;
        padding: 10px;
        color: white;
        font-weight: bold;
        background: #092e5e;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
        transition: all 0.2s ease-in-out;
        border-radius: 8px;
        border: 1px solid #0a3a79;
    }

    .form-container .form .button-container .reset-button-container .reset-button:hover {
        background: #0a3a79;
        color: #ffff;
        border: 1px solid #092e5e;
    }


    background-color: #0a3a79;
    /* azul intermediário */
    border: none;
    outline: none;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    border-left: 1px solid transparent;
}

.form-container .form .input:focus {
    border-left: 5px solid #006eff;
    /* azul claro destaque */
    background-color: #092e5e;
}

.form-container .form .textarea {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    background-color: #0a3a79;
    color: #fff;
    font-weight: bold;
    resize: none;
    max-height: 150px;
    margin-bottom: 20px;
    border-left: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.form-container .form .textarea:focus {
    border-left: 5px solid #006eff;
    background-color: #092e5e;
}

.form-container .form .button-container {
    display: flex;
    gap: 10px;
}

.form-container .form .button-container .send-button {
    flex-basis: 70%;
    position: relative;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: bold;
    background: #006eff;
    /* Chanfro no canto inferior esquerdo */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all 0.2s ease-in-out;
    border-radius: 8px;
    border-top: 1px solid #0a3a79;
    border-right: 1px solid #0a3a79;
    border-bottom: 1px solid #0a3a79;
}

.form-container .form .button-container .send-button:hover {
    background: #0a3a79;
    /* azul claro */
    color: #fff;
}

.form-container .form .button-container .reset-button-container {
    filter: drop-shadow(1px 1px 0px #006eff);
    flex-basis: 30%;
}

.form-container .form .button-container .reset-button-container .reset-button {
    position: relative;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: bold;
    background: #092e5e;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    transition: all 0.2s ease-in-out;
    border-radius: 8px;
    border: 1px solid #0a3a79;
}

.form-container .form .button-container .reset-button-container .reset-button:hover {
    background: #0a3a79;
    color: #ffff;
    border: 1px solid #092e5e;
}

.cardUniversidade {
    min-width: 400px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;

}

#criarConta h1 {
    color: #f5f5f5;
    font-weight: 600;
}
#criarConta a{
    text-decoration: none;
    color: #f5f5f5;
}

#criarConta h4 {
    color: #ddd;
    font-size: 20px;
    padding: 10px;
}

#melhorAvaliadas {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #fafbfc;
    width: 100%;
    border-radius: 0;
}

#pertoDeVoce {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #f6f8fa;
    width: 100%;
    border-radius: 0;
}

#criarConta {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 350px;
    padding: 50px;
    background-image: linear-gradient(to right, #0c3366, #0f396f, #15437f);
}

#botoesCriarConta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 80px;
}

#botaoCriarConta {
    background-color: #092e5e;
    color: #f5f5f5;
    font-size: 22px;
    font-weight: 600;
    border-radius: 10px;
    padding: 16px;
}

#botaoContinuarSem {
    background-color: #f5f5f5;
    color: #092e5e;
    font-size: 22px;
    font-weight: 600;
    border-radius: 10px;
    padding: 16px;

}



#botaoCriarConta:hover {
    background-color: #0a3a79;

}

#botaoContinuarSem:hover {
    background-color: #ddd;
}

#botaoCriarConta,
#botaoContinuarSem,
#botaoBuscar {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    /* sombra inicial */
}

#botaoCriarConta:hover,
#botaoContinuarSem:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    /* sombra mais forte no hover */
}

#botaoCriarConta:active,
#botaoContinuarSem:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* sombra menor quando clicado */
}

/*buscaAvançada*/
#buscaAvancada {
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-top: 60px;
 font-family: 'Lexend Deca', Arial, sans-serif;
 background: #f6f8fa;
 min-height: 300px;
 padding: 40px;
 width: 100%;
}

#titulo-principal {
 font-size: 2.5rem;
 color: #17325a;
 font-weight: 700;
 margin-bottom: 48px;
}

#pesquisa {
 display: flex;
 flex-direction: row;
 align-items: center;
 gap: 16px;
}

#barraPesquisa {
 background-color: #fff;
 width: 420px;
 height: 48px;
 display: flex;
 align-items: center;
 border-radius: 10px;
 border: 1.5px solid #193970;
 padding: 0 16px;
}

.icone-pesquisa {
 font-size: 1.2rem;
 color: #193970;
 margin-right: 8px;
}

#campo-pesquisa {
 width: 100%;
 font-size: 1rem;
 border: none;
 outline: none;
 background: none;
 color: #3b3b3b;
}

.botao-buscar {
 height: 48px;
 padding: 0 32px;
 background-color: #12325a;
 color: #fff;
 border: none;
 border-radius: 10px;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 transition: background 0.2s;
 display: flex;
 align-items: center;
}

.botao-buscar:hover {
 background-color: #2854a7;
}

.botao-filtro {
 height: 48px;
 width: 54px;
 background: #f8fafd;
 border: 2px solid #17325a;
 border-radius: 10px;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: background 0.2s, border 0.2s;
}

.botao-filtro:hover {
 background: #c0c9da;
}

.icone-filtro {
 font-size: 1.5rem;
 color: #17325a;
}
