@font-face {
    font-family: 'Gotham';
    src: url('/fonts/GOTHAM-BLACK.OTF') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('/fonts/GOTHAM-BOLD.TTF') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --aprovaGreen: #10FF48;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    padding: 0 !important;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

* {
    padding: 0;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

main {
    padding: 0 !important;
    overflow: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #070549;
    background-image: url("../img/textura-plastico.png"), url("../img/foto-uenp.png");
    background-size: cover, 100vw;
    background-repeat: repeat, no-repeat;
    background-position: top left, center 500px !important;
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    margin-bottom: 165px;
    padding: 0 !important;
}

/* Para dispositivos móveis */
@media screen and (max-width: 768px) {
    body {
        background-size: auto, cover;
        background-position: top left, center -250px !important;
        margin-bottom: 490px;
    }
}

/* Ocultar em dispositivos móveis */
@media (max-width: 767.98px) {
    .mobileNoDisplay {
        display: none !important;
    }
}

/* Ocultar em tela grande */
@media (min-width: 768px) {
    .screenNoDisplay {
        display: none !important;
    }
}

.no-break {
    white-space: nowrap;
}

.break {
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
}

    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }

.container {
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    padding: 0 !important;
}

.logo-left {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    flex-shrink: 0;
    max-width: 200px;
}

    .logo-left img {
        height: 50px;
        width: auto;
        max-width: 180px;
        min-height: 40px;
        object-fit: contain;
    }

/* Wrapper para menu e busca - Desktop */
.nav-search-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .nav-search-wrapper {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .nav-search-wrapper {
        height: 60px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-menu a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-menu a:hover {
            color: #00ff88;
            transform: translateY(-1px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00ff88, #00d4ff);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

.search-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.28rem;
    padding: 10px 45px 10px 20px;
    color: white;
    font-size: 14px;
    width: 300px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .search-input:focus {
        outline: none;
        border-color: #00ff88;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

.search-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
}

    .search-btn:hover {
        color: #00ff88;
        background: rgba(0, 255, 136, 0.1);
        transform: scale(1.1);
    }

    .search-btn svg,
    .search-btn i {
        width: 18px;
        height: 18px;
    }

.logo-right {
    position: relative;
}

    .logo-right img {
        height: 40px;
        max-width: 120px;
        min-height: 30px;
    }

/* Botão de busca mobile */
.mobile-search-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .mobile-search-btn:hover {
        color: #00ff88;
        background: rgba(0, 255, 136, 0.1);
        transform: scale(0.9);
    }

.mobile-search-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

    .mobile-search-box.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.28rem;
    padding: 15px 50px 15px 20px;
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .mobile-search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-search-input:focus {
        outline: none;
        border-color: #00ff88;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

.mobile-search-submit {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .mobile-search-submit:hover {
        color: #00ff88;
        background: rgba(0, 255, 136, 0.1);
    }

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        position: relative;
    }

    .logo-left {
        max-width: none;
    }

        .logo-left img {
            height: 45px;
            max-width: 160px;
            min-height: 35px;
        }

    .nav-search-wrapper {
        display: none;
    }

    .mobile-search-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo-left img {
        height: 40px;
        max-width: 140px;
        min-height: 30px;
    }

    .mobile-search-box {
        padding: 15px;
    }

    .mobile-search-input {
        padding: 12px 45px 12px 15px;
        font-size: 14px;
    }

    .mobile-search-submit {
        right: 25px;
        font-size: 16px;
    }
}

/* Carrossel Infinito */
.infinite-carousel {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: #1a1a1a;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
}

    .carousel-slide img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

        .carousel-slide img:hover {
            transform: scale(1.1);
        }

/* Responsividade */
@media (max-width: 768px) {
    .carousel-slide img {
        width: 150px;
        height: 150px;
    }

    .carousel-track {
        gap: 15px;
    }

    .infinite-carousel {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        width: 120px;
        height: 120px;
    }

    .carousel-track {
        gap: 10px;
    }

    .infinite-carousel {
        padding: 20px 0;
    }
}

/* Faixa Promocional */
.promo-strip {
    width: 100vw;
    background: var(--aprovaGreen);
    margin-top: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.strip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.strip-text {
    text-align: center;
    flex: 1;
}

    .strip-text h5 {
        font-family: 'Gotham', Arial, sans-serif;
        font-style: italic;
        font-size: 18px;
        font-weight: 900;
        color: #000;
        margin: 0;
        line-height: 1.2;
    }

    .strip-text .cta-text {
        color: #700A84;
    }

.highlight {
    font-size: 24px;
    font-weight: 900;
    color: #000;
}

.strip-visual {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

    .strip-visual img {
        height: 110px;
        width: auto;
        object-fit: contain;
        position: relative;
        top: -15px;
        right: 150px;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
        animation: float 3s ease-in-out infinite;
    }

.textMobile {
    font-size: 12pt;
}

/* Animação flutuante */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .promo-strip {
        height: auto;
        padding: 20px;
    }

    .strip-container {
        flex-direction: column;
        gap: 10px;
    }

    .strip-text h5 {
        font-size: 16px;
    }

    .highlight {
        font-size: 20px;
    }

    .strip-visual img {
        height: 80px;
        top: -20px;
    }
}

@media (max-width: 480px) {
    .promo-strip {
        padding: 15px;
    }

    .strip-text h5 {
        font-size: 14px;
    }

    .highlight {
        font-size: 18px;
    }

    .strip-visual img {
        display: none;
    }
}

/*-----------------------*/
/*         BANNER        */
/*-----------------------*/
.banner-carousel {
    width: 100vw;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    margin-top: 20px;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.banner-slide {
    flex: 0 0 calc(100vw - (40vw - 20px));
    width: calc(100vw - (40vw - 20px));
    position: relative;
    cursor: pointer;
}

.banner-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 80vh;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

/* Efeito hover */
.banner-slide:hover .banner-image {
    transform: scale(0.99);
}

/* Botões de navegação */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 30%;
}

    .carousel-button:hover {
        background-color: var(--aprovaGreen);
        transform: translateY(-50%) scale(1.1);
        opacity: 100%;
    }

    .carousel-button.prev {
        left: 20px;
    }

    .carousel-button.next {
        right: 20px;
    }

    .carousel-button svg {
        width: 24px;
        height: 24px;
        fill: #333;
    }

/* Indicadores */
.carousel-nav {
    position: relative;
    display: flex;
    gap: 12px;
    margin-left: 20px;
    padding: 10px 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

    .carousel-dot:hover {
        background-color: rgba(255, 255, 255, 0.8);
        transform: scale(1.2);
    }

    .carousel-dot.active {
        background-color: var(--aprovaGreen);
        border-color: var(--aprovaGreen);
    }

/* Responsividade */
@media (max-width: 768px) {
    .banner-image {
        min-height: 300px;
        max-height: 70vh;
    }

    .banner-slide:hover .banner-image {
        transform: none;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

        .carousel-button.prev {
            left: 10px;
        }

        .carousel-button.next {
            right: 10px;
        }
}

@media (max-width: 480px) {
    .banner-image {
        min-height: 150px;
        max-height: 60vh;
    }

    .carousel-button {
        display: none;
        width: 35px;
        height: 35px;
    }

        .carousel-button svg {
            width: 20px;
            height: 20px;
        }

    .carousel-dot {
        display: none;
        width: 10px;
        height: 10px;
    }
}

/*UNIVERSIDADES*/
.img-item {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    overflow: auto;
    transition: transform 0.3s ease, opacity 0.5s ease;
}

    .img-item:hover {
        transform: scale(1.15);
    }

.image-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    overflow-y: visible;
}

@media (max-width: 768px) {
    .image-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        gap: 15px;
    }

        .image-wrapper .col-auto {
            flex: 0 0 calc(50% - 15px);
            max-width: calc(50% - 15px);
            text-align: center;
            margin-bottom: 15px;
        }

    .img-item {
        max-width: 80px;
    }
}

.row2 {
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
}

/*FOOTER*/
.customFooter {
    padding: 20px;
    background-color: black;
}

.footer-educacao {
    height: 165px;
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.logo-parana {
    top: 0;
    height: 60px;
    width: auto;
}

.titulo-secretaria {
    color: var(--aprovaGreen);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.info-contato {
    font-size: 13px;
    line-height: 1.6;
    border-left: 1px solid var(--aprovaGreen);
    padding-left: 25px;
}

    .info-contato p {
        color: #fff;
    }

.info-site {
    font-size: 13px;
    line-height: 1.6;
}

    .info-site a {
        text-decoration: none;
        color: white;
    }

        .info-site a:hover {
            color: var(--aprovaGreen);
        }

.link-mapa {
    color: var(--aprovaGreen);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
}

    .link-mapa:hover {
        color: #45a049;
        text-decoration: none;
    }

.menu-footer ul li {
    font-size: 13px;
}

    .menu-footer ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: 400;
    }

        .menu-footer ul li a:hover {
            color: var(--aprovaGreen);
        }

.btn-scroll-top {
    position: absolute;
    bottom: 50%;
    right: 200px;
    background-color: transparent;
    color: #4CAF50;
    width: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .footer-educacao {
        text-align: center;
        height: auto;
    }

    .d-flex {
        justify-content: center;
    }

    .info-contato {
        margin: 0;
        text-align: center;
        border-left: none;
        padding-left: 0;
        width: 100vw;
        margin-bottom: 105px;
        font-size: 11pt
    }

        .info-contato p {
            word-break: break-all;
        }

    .info-site {
        margin: 0;
        text-align: center;
        border-left: none;
        padding-left: 0;
        width: 100vw;
        margin-bottom: 15px;
        font-size: 11pt;
    }

    .titulo-secretaria {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .btn-scroll-top {
        text-align: center;
        bottom: 80px;
        right: 20px;
    }

    .logoSeed {
        margin-bottom: 15px;
        width: 100vw;
    }

    .customFooter {
        padding: 20px 0px;
    }
}

/* MENU MOBILE */
.menuMobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    height: 70px;
}

    .menuMobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

    .menu-item img {
        height: 24px;
        margin-bottom: 4px;
    }

.menuMobileItem {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    color: white;
}
