*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
   font-family: "Montserrat", sans-serif;
   color: #414141;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

html:focus-within {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* buttons */

.btn {
    background: linear-gradient(90deg, #FA048F 0%, #0168D8 100%);
    padding: 12px 24px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin: 2rem 0;
    height: auto;
    display: flex;
    align-items: center;
    transition: all .1s ease-in-out;

    img {
        margin-right: 12px;
    }

    &:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        transform: scale(1.02);
    }
}

.title {
    font-size: 35px;
    color: #032292;
    text-align: center;
    
}


.description {
    font-size: 20px;
    color: #414141;
    text-align: center;
    line-height: 26px;

    strong {
        font-weight: 700;
        display: block;
    }
}
.container { 
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    overflow: hidden;
    height: auto;
}

header {
    .top-header {
        
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 45px;
        font-size: 14px;

        .mobile-only-info {
            display: none;
            font-size: 14px;
            font-weight: 600;
        }

        .contacts {

            display: flex;
            flex-direction: column;

            a {
                font-weight: 600;
                background: url(../img/icon_whatsapp_header.svg) left center no-repeat;
                padding-left: 17px;
                margin-right: 20px;
            }
            a+a {
                background: url(../img/icon_whatsapp_header.svg) left center no-repeat;
            }
            a+a+a {
                background: url(../img/icon_whatsapp_header.svg) left center no-repeat;
            }

            span {
                background: url(../img/icon_pin.svg) left center no-repeat;
                padding-left: 12px;
            }
        }
    }
    .menu-header {
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
        padding: 12px 0;

        .container {
            overflow: visible;
        }
    }

    .logo {
        width: 180px;
    }

    nav.superior {
        a {

            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            margin: 0 24px;
            color: #414141;

            &.has-sub {
                position: relative;

                ul {
                    display: none;
                }

                &::after {
                    content: url(../img/icon_arrow-pink.svg);
                    position: absolute;
                    top: 50%;
                    right: -10px;
                    transform: translateY(-50%);
                }

                
            }

            
        }

        .submenu {
            display: none;
        }
    }
}

/* Menu dropdown/responsivo */
.superior {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    position: relative;
    /* Adicionado para garantir que o menu esteja na frente de outros elementos */
    z-index: 1000;
}

.superior a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    white-space: nowrap; /* Evita quebras de linha indesejadas */
}

/* Estilos específicos para dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    /* Escondido por padrão */
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 3;
    list-style: none; /* Remove marcadores */
    padding: 0;
    margin: 0;
    border-radius: 8px;
    /* Propriedades para transição suave */
    max-height: 0; /* Começa escondido */
    opacity: 0; /* Começa transparente */
    overflow: hidden; /* Esconde o conteúdo que transborda */
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out; /* Transições suaves */

    &.bg-tecnico {
        background: linear-gradient(206.37deg, #FA048F 9.78%, #940255 84.87%);  
    }
    &.bg-rapido {
        background-image: linear-gradient(215.59deg, #0168D8 5.01%, #013772 83.48%);
    }
    &.bg-especializacao {
        background: linear-gradient(223.57deg, #7838B5 8.47%, #34184F 88.63%);
    }
}

.dropdown-content.btn.unidades {
    display: flex;
    flex-direction: column;
    top: 90px;
    width: 100%;
}

.dropdown-content.btn.unidades-internas {
    display: flex;
    flex-direction: column;
    top: -20px;
    position: relative;
}

.dropdown-content.btn.unidades-internas li {
    list-style: none;
}

ul.dropdown-content.bg-tecnico.drop-footer {
    display: flex;
    width: 520px;
}


.dropdown-content li a {
    color: #fff !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0 !important;
    transition: all .2s ease-in-out;
    
}

.dropdown-content li a:hover {
    background-color: #ffffff1e;
    padding-left: 20px;
}

/* Mostrar dropdown no hover para desktop */
/* Usamos uma classe para o JavaScript controlar a exibição */
.dropdown:hover .dropdown-content {
    /* Estes serão ativados pelo JavaScript para desktop */
}

/* Classe para mostrar o dropdown via JavaScript (desktop e mobile) */
.dropdown-content.show {
    max-height: 500px; /* Um valor grande o suficiente para acomodar o conteúdo */
    opacity: 1;
}

/* Ícone de hambúrguer para mobile */
.hamburger-menu {
    display: none; /* Escondido por padrão no desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #414141;
    transition: all 0.3s ease-in-out;
}



/* Media Query para responsividade mobile */
@media screen and (max-width: 768px) {

    .superior {
        display: block; /* Mude para block para que os itens se empilhem no menu lateral */
        position: fixed; /* Fixa o menu na tela */
        top: 0;
        right: -80%; /* Começa escondido à direita da tela (70% da largura da tela) */
        width: 80%; /* Largura do menu lateral */
        height: 100vh; /* Altura total da viewport */
        background-color: #fff; /* Fundo do menu lateral */
        padding-top: 130px; /* Espaço para o hambúrguer/logo que ficarão na barra superior */
        box-shadow: -2px 0 5px rgba(0,0,0,0.5); /* Sombra para destacar */
        transition: right 0.4s ease-in-out; /* Transição suave para aparecer/desaparecer */
        z-index: 999; /* Garante que o menu esteja acima da maioria dos elementos */
        overflow-y: auto; /* Permite scroll se o conteúdo for grande */
        /* Remova flex-direction e align-items daqui, já que display: block cuida disso ou será definido nos itens internos */
    }

    /* Quando o menu está ativo (aberto) */
    .superior.active {
        right: 0; /* Desliza para a posição visível */
    }

    /* Estilização dos links dentro do menu lateral */
    .superior a {
        padding: 15px 20px; /* Aumenta o padding para melhor toque */
        width: 100%; /* Garante que o link ocupe toda a largura */
        box-sizing: border-box; /* Inclui padding na largura total */
        text-align: left; /* Alinha o texto à esquerda */
        border-bottom: 1px solid #5555554b; /* Opcional: separador entre os links */
    }
    .superior a:last-child {
        border-bottom: none; /* Remove a borda do último item */
    }

    /* Ajusta a exibição dos dropdowns dentro do menu lateral */
    .dropdown {
        width: 90%;
        margin: 0 auto;
    }

    .dropdown .has-sub {
        width: auto;
        box-sizing: border-box;
        margin: 0;
    }

    .dropdown-content {
        border-radius: 0;
        position: static; /* Ocupa o fluxo normal dentro do menu lateral */
        width: 100%;
        background-color: #444; /* Fundo diferente para sub-menu */
        box-shadow: none;
        max-height: 0; /* Controlado por JS, começa escondido */
        opacity: 0; /* Controlado por JS, começa transparente */
        transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    }

    ul.dropdown-content.bg-tecnico.drop-footer {
        width: 300px;
        flex-direction: column;
    }

    /* MOSTRAR o hambúrguer no mobile */
    .hamburger-menu {
        display: flex; /* Agora ele deve aparecer! */
        position: absolute; /* Posiciona o hambúrguer em relação ao .menu-header */
        top: 50%;
        right: 20px; /* Distância da borda direita do menu-header */
        transform: translateY(-50%);
        z-index: 1002; /* Altíssimo z-index para garantir que esteja visível */
        background-color: transparent; /* Certifica-se de que não tem fundo */
        border: none; /* Remove bordas */
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 25px;
        flex-direction: column;
        justify-content: space-around;
    }

    /* Transformar ícone de hambúrguer em 'X' */
    .hamburger-menu.open span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Overlay (tela escura atrás do menu) */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998; /* Abaixo do menu, acima do conteúdo */
        display: none; /* Escondido por padrão */
    }
    .overlay.active {
        display: block; /* Mostra quando o menu está aberto */
    }

    /* Garante que o menu-header ainda esteja visível para conter o hambúrguer e a logo */
    .menu-header {
        position: relative; /* Continua sendo necessário para o posicionamento do hambúrguer */
        display: flex; /* Para alinhar logo e hambúrguer */
        justify-content: space-between; /* Empurra logo para esquerda, hambúrguer para direita */
        align-items: center;
        padding: 10px 20px; /* Adiciona padding à barra superior */
    }

    /* Mostra a logo e o botão de matrícula (actions) no menu-header no mobile */
    .menu-header .container .logo {
        display: block; /* Garante que a logo apareça */
    }
    .menu-header .container .actions {
        display: none; /* Garante que o botão de matrícula apareça */
    }

    /* Esconde a nav.superior padrão (desktop) no layout principal do mobile */
    /* Como a nav.superior agora é um menu lateral, ela não deve aparecer no fluxo normal */
    /* Este seletor já não é mais necessário devido ao position: fixed; right: -70% */
    /* .superior a:not(.has-sub) { display: none; } */
}

/* Fim do menu */

/* Estilizacao especifica dos elementos do glider */

.glider-dot {
    transition: all .2s ease-in-out;
    background: #FFF !important;
}

.glider-dot:hover, .glider-dot:focus, .glider-dot.active {
    background: #B23B89!important;
    
}
.glider-dot.active {
    width: 24px;
}

/* Fim da estilização glider */


.section-banner-home {
    position: relative;

    .glider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

}

.banner-home {
    height: 600px;
    position: relative;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    align-items: center;
    display: flex;

    .container {
        height: 600px;
    }
    
    .banner-home--text {
        width: 55%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;

        .title {
            color: #666666;
            font-weight: 300;
            font-size: 48px;
            line-height: 58px;
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            strong {
                display: block;
                font-weight: 700;
                line-height: 36px;
                color: #fff;
                background: #032292;
                padding: 12px 24px;
                width: fit-content;
                 text-align: right;
            }
        }

        .text-line {
            margin-top: 2rem;
        }
    }

    &.enfermagem {
        background-image:url(../img/background_banner_enfermagem.jpg)
    }

    &.radiologia {
        background-image:url(../img/background_banner_radiologia.jpg)
    }

    &.quimica {
        background-image:url(../img/background_banner_quimica.jpg)
    }


}

.banners-internos {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 300px;
    display: flex;
    align-items: center;

    .container {
        display: flex;
        justify-content: center;
    }

    h1 { 
        text-align: center;
        font-size: 48px;
        line-height: 70px;
        color: #fff;
    }


    &.bg-enfermagem {
        background-image: url(../img/bg_banner_enfermagem.png);
    }

    &.bg-atendente-farmacia { 
        background-image: url(../img/bg_banner_atendente_farmacia.png);
    }

    &.bg-coleta-sangue-aplicacao-injetaveis { 
        background-image: url(../img/bg_banner-coleta_sangue_aplicacao_injetaveis.png);
    }

    &.bg-cuidador-idosos {
        background-image: url(../img/bg_banner_cuidador_idosos.png);
    }

    &.bg-quimica {
        background-image: url(../img/bg_banner_tecnico_quimica.png);
    }

    &.bg-radiologia {
        background-image: url(../img/bg_banner_tecnico_radiologia.png);
    }

    &.bg-trabalheconosco {
        background-image: url(../img/bg_banner_trabalheconosco.png);
    }

    &.bg-sobrenos {
        background-image: url(../img/bg_banner_sobrenos.png);
    }
}


.about {
    background: url(../img/bg_section_about.jpg) left center no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;

    .container {
        display: flex;
        justify-content: flex-end;
    }

    .col { 
        width: 50%;

        p {
            margin-top: 2rem;
        }
    }

    .title {
        color: #666;
        font-weight: 300;
        text-align: left;
        line-height: 40px;
        strong {
            display: block;
            font-weight: 700;
            color: #032292;
        }
    }

    .btn {
        margin-bottom: 0;
    }
}

.features {
    background: linear-gradient(215.59deg, rgb(1, 104, 216) 5.01%, rgb(1, 55, 114) 83.48%);
    padding: 4rem 0 1rem 0;

    .container {
        flex-direction: column;
    }
    .title {
        color: #fff;
        line-height: 40px;
    }
    .features-container {

        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        padding: 4rem 0 2rem 0;
        gap: 32px;
        

        .item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;

            .ico {
                width: 120px;
                height: 120px;
                background: linear-gradient(90deg, #7838B5 0%, #FA048F 100%);
                padding: 25px;
                border-radius: 89px;
                margin-bottom: 1rem ;
                img {
                    width: 440px;
                }
            }

            .text {
                text-align: center;
            }
            h3 {
                font-size: 16px;
            }
            p {
                font-size: 14px;
            }
        }
    }
}

.courses {

    background: url(../img/background_courses.jpg) center center no-repeat;
    background-size: cover;
    padding: 4rem 0;


    .container {
        flex-direction: column;
    }

    .container+.container {
        flex-direction: row;
        align-items: flex-start;
    }

    .courses-container {
        display: flex;
        flex-direction: column;
        margin: 4rem 0;
        gap: 20px;
        width: calc(98% / 3);

        .course {
            background-image: linear-gradient(215.59deg, #0168D8 5.01%, #013772 83.48%);
            border-radius: 12px;
            padding: 24px;
            position: relative;
            height: 370px;
            transition: all 1s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;

            h3 {
                color: #fff;
                font-size: 22px;
                line-height: 32px;
                margin-bottom: 1rem;
                min-height: 64px;
                display: flex;
                align-items: center;
                z-index: 3;
            }

            p {
                color: #fff;
                margin-bottom: 1rem;
                height: 130px;
                z-index: 3;
                transition: all 1s ease-in-out;
            }

            .actions {
                bottom: 0;
                left: 0;
                width: 100%;
                z-index: 3;
                position: relative;
                transition: all 1s ease-in-out;

                .btn {
                    width: 100%;
                    text-align: center;
                    border-radius: 8px;
                    margin-bottom: 0;
                    margin-top: 12px;
                    background: linear-gradient(90deg, #7838B5 0%, #FA048F 100%);
                }

                .infos {
                    display: flex;
                    justify-content: space-between;
                    transition: all .5s ease-in-out;

                    span {
                        color: #fff;

                        strong {
                            color: #61F4FF;
                            font-weight: 700;
                        }

                     }
                
                }
            }

            &.aberto {
                padding-top: 200px;
                height: 520px;
                background-image: linear-gradient(181deg, #0168d8 5.01%, #013772 83.48%, #013772);
                &::after {
                    opacity: 1 !important;
                }
            }

            &.fechado {
                height: 230px;

                p {
                    height: 0;
                    opacity: 0;
                }

                .actions .infos {
                    opacity: 0;
                    
                }

                .actions {
                   
                    bottom: 40px;
                }
            }

            &::after {
                content: '';
                width: calc(100% + 4px);
                height: 280px;
                display: block;
                position: absolute;
                top: 0;
                left: -2px;
                background-size: cover;
                background-position: top center;
                background-repeat: no-repeat;
                z-index: 1;
                transition: all 1.5s;
                opacity: 0;
            }

            &.tecnico-enfermagem::after {
                background-image: url(../img/tecnico-enfermagem.png);
            }
            &.tecnico-radiologia::after {
                background-image: url(../img/tecnico-radiologia.png);
            }
            &.tecnico-quimica::after {
                background-image: url(../img/curso-tecnico-em-quimica.png)}

            &.cuidador::after {
                background-image: url(../img/cuidador.png);
            }
            &.aplicacao-injetaveis::after {
                background-image: url(../img/injetaveis.png);
            }

            &.atendente-farmacia::after {
                background-image: url(../img/curso-atendente-de-farmacia.png);
            }

            &:hover {
                box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
            }

        }

        .tecnico {
            background: linear-gradient(206.37deg, #FA048F 9.78%, #940255 84.87%);

            .btn {
                background: linear-gradient(90deg, #7838B5 0%, #0168D8 100%) !important;
            }

            &:hover {
                background: linear-gradient(206.37deg, #FA048F 9.78%, #940255 84.87%);
            }
        }

        .especializacao {
            background: linear-gradient(223.57deg, #7838B5 8.47%, #34184F 88.63%);

            &:hover {
                background: linear-gradient(223.57deg, #7838B5 8.47%, #34184F 88.63%) !important;
            }

        }
    }

    .title {
        padding: 0 84px;
        position: relative;
        margin-bottom: 2rem ;

        &::before, &::after {
            content: " ";
            position: absolute;
            bottom: -15px;
            left: 0;
            height: 10px;
            border-radius: 12px;
            background: #FA048F;
        }
        &::before {
            width: 22px;
        }
        &::after {
            content: " ";
            width: calc(100% - 34px);
            left: unset;
            right: 0;
        }
    }

    .cursos-livres {
        display: flex;
        flex-direction: column !important;
    }

    .cursos-livres-title {

        margin: auto;
    }

    .cursos-livres-description {
        margin-top: 2rem;
    }
}

.depoiments {
    background: linear-gradient(85.05deg, #FA048F 0%, #0168D8 100%);
    position: relative;
    padding: 4rem 0;
    display: flex;
    overflow: hidden;
    min-height: 360px;


    &::before {
        content: " ";
        width: 100%;
        height: 400%;
        background: linear-gradient(85.05deg, rgba(255, 255, 255, 0.33) 0%, rgba(255, 255, 255, 0) 100%);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) rotate(10deg);
    }

    .container {
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .title {
        text-align: left;
        color: #fff;
        line-height: 40px;
    }

    .left {
        width: 40%;
    }
    .right {
        width: 60%;
        position: relative;

        .buttons {
            display: flex;
            justify-content: flex-end;
            margin-top: 12px;
        }
        .glider-prev,
        .glider-next {
            width: 50px;
            position: inherit;
            background: #FA048F;
            height: 40px;
            
            border-radius: 8px;
            display: flex;
            justify-content: center;

            img {
                width: 20px;
            }

            &:hover { 
                box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
            }
        }

        .glider-prev {
            margin-right: 10px;
            -webkit-transform: scaleX(-1);
            transform: scaleX(-1);

        }
    }

    .glider-depoiments {
        .item {
            display: flex;

            .photo {
                width: 30%;
                border-radius: 12px;
                overflow: hidden;
            }
            .words {
                width: 70%;
                margin-left: 24px;
                color: #fff;
            }
        }
    }

    .glider-dots {
        position: relative;
        bottom: -25px;
    }
}



.matricule-se {
    background: #f1f1f1;
    color: #838383;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    flex-direction: column;

    .title {

        color: #838383;
    }

    .btn {
        background: linear-gradient(90deg, #7838B5 0%, #0168D8 100%) !important;
        margin-bottom: 0;
    }
    .container {
        flex-direction: column;
    }

    span {
        margin-top: 1rem;
        text-align: center;
        max-width: 750px;
        font-size: 20px;

        strong { 
            display: block;
        }
    }
}

footer {
    position: relative;
    background: #0168D8 url(../img/background_footer.jpg) center right no-repeat;
    background-size: contain;
    height: 530px;

    .container {
        position: relative;
        z-index: 2;
        flex-direction: row;
        align-items: flex-start;
    }


    .container+.container {
        flex-direction: column;
    }

    &::before {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(45deg, #0168D8, #0168D8, #0168D800);
    }

    .menu-footer {
        padding: 24px 0;
        a {
            display: block;
            background: url(../img/chevron.svg) center left no-repeat;
            padding: 4px 0 4px 22px;
            background-size: 18px;
            font-size: 14px;
            position:relative;

            &::after {
                content: " ";
                position: absolute;
                height: 2px;
                width: 100%;
                bottom: 0;
            }
        }
    }

    .menu-footer-unidades {
        color: #fff;
        padding: 2rem 0 0;
        display: flex;
        gap: 3rem 
        ;
        /* margin: auto; */

        li { 
            display: flex;
            gap: 0.5rem;
            padding: 2px 0;

        }

    }

    .float-navs {
        width: 100%;
        border-radius: 4px;
        background: #fff;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        margin: 2rem 0 1rem 0;

        .socials {
            display: flex;
            gap: 12px;

            a  {
                border-radius: 21px;
                background: #FA048F;
            }
        }
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .footer-nav a,
    .footer-nav .dropdown {
        display: inline-block;
        white-space: nowrap;
    }


    .footer-nav {
        a {
            text-transform: uppercase;
            font-weight: 700;
            font-size: 14px;
            color: #FA048F;
            margin-right: 10px;

            &:last-child {
                margin-right: 0;
            }
        }
    }

    h3 {
        position: relative;
        color: #fff;
        margin: 1rem 0;
        margin-left: 6px;
        font-size: 18px;

        &::before, &::after {
            content: " ";
            position: absolute;
            bottom: -5px;
            left: 0;
            height: 3px;
            border-radius: 12px;
            background: #FA048F;
        }
        &::before {
            width: 22px;
        }
        &::after {
            content: " ";
            width: calc(100% - 34px);
            left: unset;
            right: 0;
        }
    }

    a {
        color: #fff;
    }

    .logo-footer {
        width: 230px;
        display: flex;
        justify-content: center;
        position: relative;
        padding: 30px 0 0 0;


        &::before {
            content: " ";
            width: 100%;
            height: 136%;
            border-radius: 8px;
            background: #fff;
            position: absolute;
            left: 0;
            top: -22px;
            z-index: -1;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        }

    }

    .sign {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 12px;
        color: #fff;
    }
}


@media screen and (max-width: 768px) {

    header {
        .top-header {

            .mobile-only-info {
                display: block !important;
            }   

            p, span {
                display: none;
            }

            .contacts {
                display: flex;
                justify-content: space-between;
                width: 100%;

                a {
                    margin-right: 0;
                }
            }
        }

        nav.superior {
            a {
                &.has-sub {
                    &::after {
                        right: 0;
                    }
                }
            }
        }
    }

    

    .title {
        font-size: 28px;
        line-height: 36px;

        br {
            display: none;
        }
    }

    .description {
        font-size: 14px;
        line-height: 18px;
    }

    .banner-home {
        background-size: cover;
        .container {
            align-items: flex-start;
        }
        .banner-home--text {
            
            width: 100%;
            text-align: center;
            justify-content: center;
            align-items: center;
            padding-top: 3rem ;
            .title {
                font-size: 32px;
            }

            .text-line {
                margin-top: 1rem;
            }

            .btn {
                margin: 1rem 0;
            }
        }

        &.enfermagem {
            background-image:url(../img/background_banner_enfermagem_mobile.jpg)
    
        }
    }


    .banners-internos {
        height: 250px;

        h1 {
            font-size: 36px;
            line-height: 42px;
        }
    }


    .about {

        .title {
            text-align: center;
        }
        .col {
            width: 100%;
            text-align: center;
        }
    }

    .features {

        .title {
            line-height: 36px;
        }

        .features-container {
            grid-template-columns: 1fr 1fr;

            .item {

                .ico {
                    width: 90px;
                    height: 90px;
                    padding: 20px;
                }
            }
        }
    }

    .courses {

        .container {
            flex-direction: column !important;
        }

        .courses-container {
            width: 100%;
            margin: 10px 0;

            .course {
                height: auto;
            }
        }

        .title {
            padding: 0;
        }
    }


    .matricule-se {

        span {

            font-size: 14px;
        }
    }

    .depoiments {

        .glider-dots {
            bottom: unset;
        }

        &::before {
            top: 100%;
            transform: translateY(-50%) rotate(84deg);
            width: 200%;
        }

        .title {
            text-align: center;
            line-height: 36px;
        }

        .container {
            flex-direction: column;
            gap: 25px;
        }

        .left,
        .right {
            width: 100%;
        }

        .right .buttons {
            justify-content: center;
        }

        .glider-depoiments {
            
            .item {
                flex-direction: column;

                .photo {
                    width: 100%;
                    height: 180px;
                }

                .words {
                    margin: 0;
                    width: 100%;
                    padding: 1rem 0;
                }
            }

            
            
        }

        
    }


    footer {
        height: auto;

        .container {
            flex-direction: column;

            .logo-footer {
                width: 100%;
                margin-bottom: 4rem;
            }

            .menu-footer {
                width: 100%;
            }

            .menu-footer:nth-child(1) { 
                padding-bottom: 0;
            }
            .menu-footer:nth-child(2) {
                padding-bottom: 0;
            }
        }

        .footer-nav a {
            font-size: 12px;
        }

        .float-navs {
            flex-direction: column;
            padding-top: 24px;
            margin-bottom: 95px;

            .socials {
                margin-top: 3rem;
            }
        }

        .sign {
            padding: 12px 0;
            flex-direction: column;
            align-items: center;

            a {
                margin-top:12px;
            }
        }

        .footer-sobre { 
            position: relative;
            right: 40px;
        }

        .footer-contato { 
            position: relative;
            top: -38px;
            left: 95px;
        }

        .footer-trabalhe { 

            position: relative;
            left: 40px;
        }
        
        ul.dropdown-content.bg-tecnico.drop-footer.show {
            top: -30px;
            position: relative;
            width: 107px;
            right: -50px;
        }

    }


}