/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    --vermelho: #b80f15;
    --branco: hsl(0, 0%, 98%);
    --cinza: hsl(0, 0%, 24%);
    --cinza-escuro: hsl(0, 8%, 13%);
    --verde-formulario: hsl(133, 61%, 33%);

    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --normal-font: .938rem;
    --titulo-font: 2.5rem;

    /*========== Font weight ==========*/
    --font-medio: 500;
    --font-seminegrito: 600;
    --font-negrito: 700;

    /*========== z index ==========*/
    --z-fixo: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
    :root {
        --normal-font: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea {
    font-family: var(--body-font);
    font-size: var(--normal-font);
}

#faixa-header {
    width: 100%;
    background-color: var(--vermelho);
    padding: 0 1%;
    display: flex;
    height: 4rem
}

#logo-header {
    max-width: 40vw;
}

body {
    font-family: "Euclid Circular A", Poppins;
    max-width: 100%;
}

h1,
h2,
h3 {
    font-weight: var(--font-seminegrito);
}

/* Menu */
button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.navbar-burger-mobile,
.menu-mobile,
.background-mobile {
    position: sticky;
    z-index: 1;
}

.background-mobile {
    z-index: 1;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    transition: 0.5s;
    position: relative;
}

body.open .background-mobile {
    filter: blur(10px);
}

.navbar {
    z-index: 1;
    width: 100%;
    padding-left: 20px;
}

.navbar-burger-mobile {
    z-index: 3;
    top: 3rem;
    right: 1px;
    display: grid;
    place-items: center;
    width: 88px;
    background-image: url("../img/menu.svg");
    background-repeat: no-repeat;
    background-position: center;
}

body.open .navbar-burger-mobile {
    background-image: url("../img/close.svg");
}

.menu-mobile {
    z-index: 2;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.799);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: fixed;
    align-items: start;
    padding-top: 2%;
}

body.open .menu-mobile {
    opacity: 1;
    visibility: visible;
}

.menu-mobile nav:hover a {
    opacity: 0.25;
}

.menu-mobile nav a:hover {
    opacity: 1;
}

.menu-mobile nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-mobile a {
    position: relative;
    color: var(--branco);
    font-size: 32px;
    padding: 20px 0;
    width: 300px;
    text-decoration: none;
    transition: 0.4s;
}

.menu-mobile a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #f7f7f7;
    transform: scaleX(0);
    transform-origin: 0% 50%;
    transition: 0.4s;
}

.menu-mobile a:hover::after {
    transform: scaleX(1);
}

body.open .menu-mobile a {
    animation: appear 0.3s backwards;
}

@keyframes appear {
    0% {
        opacity: 0;
        translate: 0 50px;
    }

    100% {
        opacity: 1;
    }
}

/* CARDS INTERATIVOS DA PÁGINA PRINCIPAL */
.cards {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.card-body {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-card {
    width: 17.5rem;
    height: 11rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18rem;
}

.home-card:hover {
    transform: translateY(-5px);
    transition: 0.25s;

    .card-text {
        scale: 1.15;
        transition: 0.40s;
        padding-bottom: 16px;
    }
}

.home-card:not(:hover) {
    transform: translateY(0px);
    transition: 0.50s;

    .card-text {
        scale: 1;
        transition: 0.40s;
        padding-bottom: 16px;
    }
}

.card-text {
    color: var(--branco);
    text-align: center;
    font-size: x-large;
    padding-bottom: 10px;
}

.df {
    text-decoration: none;
}


/* BARRA SUPERIOR ACIMA DO MENU PRINCIPAL */
.fa {
    font-size: var(--normal-font);
}

.barra-superior li {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
}

.barra-superior a {
    font-weight: var(--font-seminegrito);
    color: var(--cinza);
    text-decoration: none;
    font-size: smaller;
}

.barra-superior a:hover {
    color: var(--vermelho);
}

.barra-superior i:hover {
    color: var(--vermelho);
}

#section-footer {
    font-family: "Euclid Circular A", Poppins;
    position: static;
    left: 0;
    bottom: 12px;
    width: 100%;
    padding-top: 60px;
}

/* RODAPÉ */
footer {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin: 0 30px;
}


@media (width >=620px) {
    footer {
        margin: 0 auto;
        max-width: 600px;
        padding: 0;
    }
}

footer {
    color: var(--branco);
}

footer.top {
    display: flex;
    border-bottom: 2px solid var(--branco);
    padding-bottom: 20px;
    justify-content: center;

}

footer.bottom {
    padding: 20px 0;
    justify-content: space-between
}

footer.top .links {
    display: flex;
    gap: 25px;
}

.links>div {
    margin-bottom: 30px;
}

.links>div p {
    text-wrap: nowrap;
    line-height: 15px;
}

footer h2 {
    font-size: larger;
    font-weight: 400;
    color: var(--branco);
}

.legal {
    font-size: var(--normal-font);
}

.legal>a {
    margin: 0 4px;
    color: yellow;
    text-decoration: none;
}

.legal>span {
    margin-right: 10px;
}

footer.bottom .links {
    display: flex;
    gap: 18px;
}

footer.bottom .links>a {
    font-size: 24px;
}

@media (width < 420px) {
    footer {
        text-align: center;
        align-items: center;
    }

    footer.top .links {
        display: grid;
    }

    footer.bottom {
        align-items: center;
    }

    .legal>span {
        display: block;
        margin-right: 0;
        margin-bottom: 2px;
    }
}

.links a {
    color: var(--branco);
    text-decoration: none;
}

.links a:hover {
    scale: 1.2;
    transition: 0.20s;
    color: yellow;
}

.links p:hover {
    scale: 1.02;
    transition: 0.20s;
    color: yellow;
}

.legal span a {
    text-decoration: none;
    color: var(--branco);
    font-weight: var(--font-seminegrito);
}

/*barra de rolagem*/
::-webkit-scrollbar {
    width: 5px;
}

/* Cor de fundo da barra de rolagem */
::-webkit-scrollbar-track {
    background: var(--cinza-escuro);
}

/* Cor do indicador de rolagem (thumb) */
::-webkit-scrollbar-thumb {
    background: lightgray;
}

/* ######################### NAP #########################*/

.nap-apresentacao {
    padding-top: 72px;
    padding-bottom: 110px;
}

.wrapper-inner {
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
}

.quem-somos {
    display: flex;
    padding: 5rem 10rem 5rem 10rem;
    flex-direction: column;
    background-color: gainsboro;
}

.quem-somos .sobre-psicologa {
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.quem-somos .sobre-psicologa .lattes {
    max-width: 35rem;
    text-align: justify;
}

.quem-somos .sobre-psicologa .psicologa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.quem-somos .sobre-psicologa .psicologa img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .quem-somos {
        padding: 1rem;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.row {
    display: flex;
}

@media (min-width: 1200px) {
    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.nap-apresentacao img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.nap-sou_respeito .atendimento-estudantes {
    padding-right: 90px;
    background: #1c1c1c;
    padding-top: 70px;
    padding-bottom: 70px;
    min-height: 100%;
    position: relative;
}

.nap-sou_respeito .atendimento-estudantes::before {
    content: "";
    width: 50vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #1c1c1c;
    z-index: -1;
}

.nap-sou_respeito .atendimento-estudantes h2 {
    color: white;
}


.nap-sou_respeito .atendimento-estudantes h2,
.nap-sou_respeito .apoio-docente h2 {
    font-size: 30px;
    font-weight: var(--font-negrito);
    margin-bottom: 25px;
}

.nap-sou_respeito .atendimento-estudantes p {
    font-size: var(--normal-font);
    line-height: 21px;
    color: white;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.nap-sou_respeito .apoio-docente {
    padding-left: 90px;
    background: #ff3c45;
    padding-top: 70px;
    padding-bottom: 70px;
    min-height: 100%;
    position: relative;
}

.nap-sou_respeito .apoio-docente::before {
    content: "";
    width: 50vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ff3c45;
    z-index: -1;
}

.nap-sou_respeito {
    overflow: hidden;
}

.wrapper-geral {
    max-width: 2560px;
    width: 100%;
    margin: 0 auto;
}

*,
::after,
::before {
    box-sizing: border-box;
}

.section-banner-simples {
    position: relative;
    background-color: var(--vermelho);
    margin-top: 0.5rem;
}

.section-banner-simples .banner-figure {
    margin: 0 auto;
    background-color: hsl(222, 11%, 54%);
    text-align: center;
}

.section-banner-simples .banner-figure img {
    width: 100%;
    object-fit: cover;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.section-banner-simples .banner-figure .banner-image-mobile {
    display: none;
    width: 100%;
    object-fit: cover;
}

.p-0 {
    padding: 0 !important;
}

.section-banner-simples .wrapper-banner-simples {
    position: absolute;
    top: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.section-banner-simples .wrapper-banner-simples h1 {
    margin-top: 1.5rem;
}


img {
    vertical-align: middle;
    border-style: none;
}

/* Loader */
@-webkit-keyframes reach {

    0%,
    10%,
    20%,
    30%,
    50%,
    60%,
    70%,
    80%,
    90%,
    100% {
        -webkit-transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
        transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
    }

    50% {
        -webkit-transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
        transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
    }
}

@keyframes reach {

    0%,
    10%,
    20%,
    30%,
    50%,
    60%,
    70%,
    80%,
    90%,
    100% {
        -webkit-transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
        transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
    }

    50% {
        -webkit-transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
        transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
    }
}

.aprofundamento-pedagogico {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #f2f2f2;
}

.acessar-nap-titulo {
    text-align: left;
}

.acessar-nap-corpo {
    text-align: left;
}

.nap-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    width: 100%;
}

.class-como-acessar {
    width: 35rem;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
}

/* 
.logo {
    margin-left: 6%;
} */

/* Estilize o loader para centralizá-lo na tela */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.478);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Garante que o loader apareça na frente de outros conteúdos */
}

.form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
    width: 100%;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--cinza);
}

.form-control {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-control label {
    margin-bottom: 5px;
    color: var(--cinza);
}

.form-control input,
.form-control textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid hsl(0, 0%, 87%);
    border-radius: 4px;
    font-size: var(--normal-font);
}

.form-control input[type="file"] {
    padding: 3px;
}

.form-control button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: var(--normal-font);
    cursor: pointer;
    transition: background-color 0.3s;
    width: 10rem;
    align-self: center;
}

.form-control button:hover {
    background-color: var(--verde-formulario);
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 25px;
    bottom: 25px;
    z-index: var(--z-fixo);
    font-size: var(--normal-font);
    border: solid;
    outline: none;
    cursor: pointer;
    border-radius: 4px;
    border-width: 1px;
    border-color: darkred;
}

#myBtn:hover {
    background-color: hsl(0, 17%, 77%);
}

/* BOTÃO DE WHATSAPP */

.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: hsl(142, 70%, 49%);
    color: var(--branco);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px var(--cinza);
    z-index: 1;
}

@media (min-width: 550px) {
    .biblioteca-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 550px) {
    .biblioteca-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}