/* VARIÁVEIS CSS */
:root {
    --primary-blue: #326ce5;
    --primary-blue-dark: #2861d1;
    --primary-blue-light: #4d7ee8;
    --secondary-blue: #45a8ff;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --border-radius: 15px;
    --border-radius-sm: 5px;
    --shadow: 0 10px 30px rgba(50, 108, 229, 0.1);
    --shadow-hover: 0 15px 40px rgba(50, 108, 229, 0.2);
    --transition: all 0.3s ease;
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}
.fone-vendas a{
    font-size: 13px;
}
/* CONTAINER CONTÍNUO COM DEGRADÊ */
.gradient-sections-container {
    background: linear-gradient(180deg, #1E4CBF 0%, #1B69DB 19.16%, #2BA0FF 100%);
    position: relative;
}

/* SEÇÃO BOLSA FIES */
.bolsa-fies-section {
    color: var(--white);
    padding: 4rem 0 2rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

/* Título do header */
.header-title {
    color: var(--white);
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.header-title strong {
    font-weight: 700;
    color: var(--white);
}
#slideshow-curso h1{
    font-size: 2.5rem !important;
}
.header-title .highlight-text{
    background-color: #0055c8;
    padding: 0.2rem 0.6rem;
}
#slideshow-curso h2{
    font-size: 1.5rem !important;
    margin-bottom: 2rem;
}

/* Botão específico do header */
.btn-header-cta {
    background: var(--white);
    color: var(--primary-blue-dark);
    border: none;
    border-radius: var(--border-radius);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: none;
    text-decoration: none;
    display: inline-block;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    text-align: center;
}

#slideshow-curso .carousel-caption{
    left: 0;
    right: unset;
    position: relative;
    bottom: auto;
    transform: none;
    padding: 0;
}

#slideshow-curso .container {
    position: relative;
    z-index: 10;
}

#slideshow-curso .mobile-render-center {
    display: flex;
    align-items: flex-end;
    min-height: 100%;
    padding-bottom: 2rem;
}

#slideshow-curso .carousel-caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
}

.btn-header-cta:hover {
    background: var(--white);
    color: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: none;
    text-decoration: none;
}

.btn-header-cta:focus {
    background: var(--white);
    color: var(--primary-blue-dark);
    box-shadow: none;
    text-decoration: none;
}

.title-box {
    background: #a05bf2;
    border-radius: var(--border-radius);
    padding: 0.5rem 3rem;
    display: inline-block;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    width: 100%;
}

.title-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
}

.advantages-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advantage-card {
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: #a05bf2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(69, 168, 255, 0.3);
}

.advantage-card:hover .advantage-icon {
    background: rgba(69, 168, 255, 0.4);
    border-color: rgba(69, 168, 255, 0.6);
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--secondary-blue);
}

.advantage-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advantage-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}


@media (max-width: 768px) {
    /* Ajusta o posicionamento da imagem de fundo */
    #divheadimg {
        background-position: center 30% !important;
        background-size: cover !important;
        min-height: 700px !important;
    }

    /* Empurra o conteúdo para baixo para liberar espaço superior */
    #slideshow-curso .mobile-render-center {
        align-items: flex-end;
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    #slideshow-curso .carousel-caption {
        justify-content: flex-end;
    }

    /* Reduz o tamanho dos textos */
    #slideshow-curso h1 {
        font-size: 1.9rem !important;
        margin-bottom: 0.5rem;
    }

    #slideshow-curso h2 {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .highlight-text {
        padding: 0.15rem 0.5rem !important;
    }

    /* Ajusta o botão CTA */
    .btn-header-cta {
        padding: 1rem 2rem !important;
        font-size: 0.95rem !important;
    }
}

/* Para telas muito pequenas */
@media (max-width: 576px) {
    #divheadimg {
        min-height: 650px !important;
        background-position: center 25% !important;
    }

    #slideshow-curso h1 {
        font-size: 1.7rem !important;
    }
}
@media (max-width: 768px){
    #divheadimg{
        background-position: 78% center !important;
        background-size: cover !important;
        min-height: 700px !important;
    }

    /* empurra os textos pro rodapé do hero */
    #slideshow-curso .mobile-render-center{
        align-items: flex-end;
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    #slideshow-curso .carousel-caption{
        justify-content: flex-end;
    }

    /* textos um pouco menores */
    #slideshow-curso h1{ font-size: 1.9rem !important; margin-bottom: .5rem; }
    #slideshow-curso h2{ font-size: 1rem !important;  margin-bottom: 1.5rem !important; }
    .btn-header-cta{ padding: 1rem 2rem !important; font-size: .95rem !important; }
}

@media (max-width: 576px){
    #divheadimg{
        background-position: 80% center !important;
        min-height: 650px !important;
    }
}




/* SEÇÃO OUTRAS BOLSAS */
.outras-bolsas-section {
    color: var(--white);
    padding: 2rem 0;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.bolsa-card {
    background: #a05bf2;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(69, 168, 255, 0.2);
}

.bolsa-card:hover {
    background: rgba(69, 168, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(69, 168, 255, 0.4);
}

.bolsa-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.bolsa-card:hover .bolsa-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.bolsa-icon i {
    font-size: 1.5rem;
    color: var(--white);
}
/* ÍCONE PROUNI - BRANCO IGUAL AO OUTRO */
.prouni-icon {
    background: rgba(255, 255, 255, 0.1);
}

.bolsa-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.bolsa-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* SEÇÃO CURSOS */
.cursos-section {
    color: var(--white);
    padding: 4rem 0;
}

.curso-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: none;
    border-radius: 15px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.curso-btn:hover,
.curso-btn:focus {
    background: var(--white);
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}
.curso-dropdown{
    margin: 0;
}

.curso-dropdown.active .curso-btn {
    background: #5200b3!important;
    color: var(--white);
}

.curso-dropdown.active .curso-btn:hover {
    background: #5200b3!important;
    color: var(--white);
}

.curso-btn:hover::after {
    transform: translateX(3px);
}

.cursos-grid {
    position: relative;
}
.curso-content-floating {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
}
.curso-content-floating .card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border: 1px solid #ddd !important;
}
.curso-content-floating .card-body {
    background-color: #fffffc !important;
    color: var(--white) !important;
}

.curso-content-floating .card-body p {
    color: var(--primary-blue) !important;
}

/* Botão CTA específico */
.btn-cta-cursos {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: none;
    border-radius: var(--border-radius);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cta-cursos:hover,
.btn-cta-cursos:focus {
    background: var(--white);
    color: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* SEÇÃO OUTROS PROCESSOS SELETIVOS */
.outros-processos-section {
    color: var(--white);
    padding: 2rem 0 4rem 0;
}

.processo-header {
    margin-bottom: 3rem;
}

.processo-icon {
    width: 60px;
    height: 60px;
    background: rgba(69, 168, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.processo-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.processo-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.processo-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.processo-opcoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
}

.processo-opcao {
    background: #5200b3!important;
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    text-underline-offset: 4px;
}

.processo-opcao:hover {
    background: rgba(69, 168, 255, 0.4);
    border-color: rgba(69, 168, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-decoration: none;
}

.opcao-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    flex-shrink: 0;
}

.opcao-texto {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
    flex: 1;
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--primary-blue);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(50, 108, 229, 0.1);
    color: var(--primary-blue-dark);
}

.links-container {
    margin-top: 2rem;
}

.link-edital {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
    display: inline-block;
    margin: 0.5rem 0;
}

.link-edital:hover {
    color: var(--secondary-blue);
    text-shadow: 0 0 10px rgba(69, 168, 255, 0.5);
    transform: translateY(-2px);
}




/* ========================================
  Seção do banner de Teste de Perfil
   ======================================== */
.banner-teste-perfil{
    background:#5442f6 !important;
    padding: 2rem 1rem;
    display:flex;
    justify-content:center;
    align-items:center;
}

.container-banner{
    width:100%;
    max-width:960px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.2);
}

.img-banner{
    display:block;
    width:100%;
    height:auto;
    border-radius:20px;
    object-fit:cover;
}

/* =========================================
   TESTE DE PERFIL — MOBILE (formato em pé)
========================================= */
@media (max-width: 768px){
    .banner-teste-perfil{
        padding: 24px 10px;
    }

    .container-banner{
        max-width: clamp(240px, 72vw, 340px);
        aspect-ratio: 9 / 16;
        margin: 0 auto;
        border-radius: 30px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }

    /* imagem inteira, sem cortes, dentro do card */
    .img-banner{
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 30px;
        background: #ffffff;
    }
}

/* ===== Teste de Perfil — mobile com imagem expandida (cover) ===== */
@media (max-width: 768px){
    .banner-teste-perfil{
        background:#5442f6 !important;
        padding:24px 10px;
        display:flex; justify-content:center; align-items:center;
    }

    /* card vertical centralizado */
    .container-banner{
        max-width: clamp(260px, 75vw, 360px);
        aspect-ratio: 9 / 16;
        margin:0 auto;
        border-radius:30px;
        overflow:hidden;
        box-shadow:0 10px 30px rgba(0,0,0,.25);
        background:#fff;
    }

    /* imagem preenche todo o card (sem sobras) */
    .img-banner{
        width:100%;
        height:100%;
        display:block;
        object-fit: cover;
        object-position: 50% 30%;
        border-radius:30px;
    }

    /* celulares muito pequenos (opcional) */
    @media (max-width: 380px){
        .container-banner{ max-width: 92vw; border-radius:26px; }
        .img-banner{ border-radius:26px; }
    }

}




/* SEÇÃO DEPOIMENTO */
.depoimento-section {
    background: #1f4cbf;
    color: var(--white);
    padding: 4rem 0;
}

.video-container {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
    width: 100%;
    height: 415px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(50, 108, 229, 0.3) 0%, rgba(69, 168, 255, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-play-btn i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-left: 5px;
}

/* Estilos para o link de vídeo */
.linkassiste {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.linkassiste:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.linkassiste i {
    font-size: 2rem;
    color: var(--white);
    margin-left: 5px;
    transition: var(--transition);
}

.linkassiste:hover i {
    color: var(--primary-blue);
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 3;
}

.student-info strong {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.student-info .course {
    font-size: 1rem;
    color: var(--secondary-blue);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.enem-badge {
    background: var(--secondary-blue);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.enem-text {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    display: block;
}

.year {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

.video-quote {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.depoimento-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.btn-cta-secondary {
    background: #a05bf2!important;
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-cta-secondary:hover {
    background: #3d96e6;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-cta-secondary:hover::before {
    left: 100%;
}

/* MODAL */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    overflow: hidden;
}

.modal-header {
    border: none;
    padding: 1rem;
}

.modal-body {
    padding: 0;
}

.btn-close {
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}




/* ========================================
   SEÇÃO RANKING
   ======================================== */
.ranking-section {
    background: #001E47;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Limita apenas o conteúdo interno */
.ranking-section .container {
    max-width: 940px;
    margin: 0 auto;
}

.ranking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>');
    pointer-events: none;
}

.ranking-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ranking-number {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.ranking-number::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -20px;
    width: 30px;
    height: 30px;
    background: var(--secondary-blue);
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ranking-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ranking-text .melhor {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.ranking-text .centro {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--secondary-blue);
    font-style: italic;
    line-height: 1;
}

.ranking-text .universitario {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.ranking-text .do-brasil {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.melhor-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.melhor-image img {
    transition: var(--transition);
    object-fit: cover;
    width: 100%;
}

.melhor-image img:hover {
    transform: scale(1.02);
}

.campus-image {
    position: relative;
    text-align: center;
    z-index: 0;
    left: -80px;
}

.campus-image img {
    border-radius: 50px;
    transition: var(--transition);
    object-fit: cover;
    width: 100%;
}

.campus-image img:hover {
    transform: scale(1.02);
}

.pillar-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 2;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: rgba(69, 168, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(69, 168, 255, 0.3);
}

.pillar-card:hover .pillar-icon {
    background: rgba(69, 168, 255, 0.4);
    border-color: rgba(69, 168, 255, 0.6);
    transform: scale(1.1);
}

.pillar-icon i {
    font-size: 2rem;
    color: #0029ff!important;
}

.pillar-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
}
/* =========================================
   RANKING — MOBILE (≤768px)
========================================= */
@media (max-width: 768px){
    .ranking-arts{
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px;
        overflow: visible !important;
    }
    .ranking-arts > [class*="col-"]{
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .ranking-arts > [class*="col-"]:nth-child(2){ order: -1 !important; }
    .ranking-arts > [class*="col-"]:nth-child(1){ order: 0 !important; }

    /* Estrela */
    .campus-image{
        position: static !important;
        left: 0 !important;
        align-self: center !important;

        width:  clamp(170px, 56vw, 340px) !important;
        height: clamp(170px, 56vw, 340px) !important;

        /* desce e sobrepõe o card */
        margin: 42px auto -160px !important;

        /* desloca à direita e aumenta levemente */
        transform: translateX(70px) scale(1.08) !important;

        z-index: 3 !important;
    }
    .campus-image img{
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        border-radius: 0 !important;
        display: block !important;
    }

    /* Card “4º MELHOR” */
    .melhor-image{
        position: relative !important;
        z-index: 2 !important;
        max-width: 84% !important;
        margin: 0 0 0 8px !important;
    }
    .melhor-image picture,
    .melhor-image img{
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    /* Pilares */
    .ranking-pillars{ margin-top: 18px !important; }
    .ranking-pillars > [class*="col-"]{
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 12px 0 !important;
    }
    .pillar-card{
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
    }
    .pillar-icon{
        width: 26px !important; height: 26px !important;
        min-width: 26px !important; min-height: 26px !important;
        margin-top: 4px !important;
        background: rgba(255,255,255,.2) !important;
        border: none !important;
    }
    .pillar-icon i{ font-size: 14px !important; color: #fff !important; }
    .pillar-card h4{
        margin: 0 !important;
        font-size: 0.92rem !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;
        color: #fff !important;
    }
}

/* ===== MOBILE PEQUENO (até 380px) ===== */
@media (max-width: 380px){
    .campus-image{
        width:  clamp(160px, 54vw, 220px) !important;
        height: clamp(160px, 54vw, 220px) !important;
        margin: 50px auto -90px !important;
        transform: translateX(10px) scale(1.04) !important;
    }
}





/* SEÇÃO 4 PASSOS */
.steps-section {
    background: #2487EE;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.steps-timeline {
    position: relative;
    padding: 2rem 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: 90px;
    width: 3px;
    background: linear-gradient(135deg, #56B3FF 0%, #2BA0FF 33%, #1B69DB 66%, #1E4CBF 100%);
    border-radius: 2px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(69, 168, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-number1{
    background: #56B3FF;
}

.step-number2{
    background: #2BA0FF;
}

.step-number3{
    background: #1B69DB;
}

.step-number4{
    background: #1E4CBF;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(69, 168, 255, 0.4);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-cta-steps {
    background: #3200c9!important;
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-cta-steps:hover {
    background: #3d96e6;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-cta-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-cta-steps:hover::before {
    left: 100%;
}


@media (max-width: 768px) {

    .melhor-image {
        display: block !important;
        position: relative;
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 0 15px;
        overflow: visible !important;
    }

    .melhor-image img {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
        display: block;
        object-fit: contain;
    }

    /* CAMPUS - Imagem em formato de GOTA/LOSANGO COMPLETA */
    .campus-image {
        display: block !important;
        position: relative;
        left: 0;
        max-width: 100%;
        width: 100%;
        margin: 1.5rem auto;
        padding: 0 15px;
        overflow: visible !important;
    }

    .campus-image img {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
        display: block;
        border-radius: 0 !important;
        object-fit: contain !important;
        object-position: center;
    }
}

@media (max-width: 576px) {
    .melhor-image,
    .campus-image {
        padding: 0 10px;
    }

    .melhor-image img,
    .campus-image img {
        max-width: 100%;
    }
}





/* ===============================
   SEÇÃO DÚVIDAS FREQUENTES
================================= */

.faq-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #4169E1;
    color: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

/* CONTAINER CENTRALIZADO COM CONTEÚDO LARGO */
.faq-section .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

/* TÍTULO */
.faq-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

/* ACORDEÃO */
.faq-accordion {
    width: 100%;
    margin-left: 0;
}

/* ITEM INDIVIDUAL */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
}

/* PERGUNTA */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 22px 52px 22px 10px;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00D4FF;
}

.faq-question:focus {
    outline: none;
}

/* ÍCONE */
.faq-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: translateY(-50%) rotate(45deg);
}

/* RESPOSTA */
.faq-answer {
    overflow: hidden;
}

.faq-answer-content {
    padding: 0 0 22px 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-section .container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 44px 18px 6px;
    }

    .faq-icon {
        font-size: 1.35rem;
    }

    .faq-answer-content {
        font-size: 1rem;
        padding-bottom: 18px;
    }
}




/* SEÇÃO CALL-TO-ACTION FINAL */
.final-cta-section {
    background: #1D4CBF;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.final-cta-section .highlight-text {
    background: #5200B3;!important;
    padding: 0.3rem 0.8rem;
    display: inline-block;
    margin: 0 0.2rem;
}

.btn-final-cta {
    background: var(--white);
    color: var(--primary-blue-dark);
    border: none;
    border-radius: var(--border-radius);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
}

.btn-final-cta:hover {
    background: var(--white);
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}



/* ===============================
   SEÇÃO EXPERIÊNCIA UNILEÃO (IMAGEM)
   =============================== */
.experiencia-section {
    background: #4169E1;
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.experiencia-section > .container {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Título */
.experiencia-title {
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: none !important;
    letter-spacing: .2px;
    text-align: center;
    margin: 0 0 14px;
}

.experiencia-title .viva,
.experiencia-title .unileao {
    font-weight: 900;
}

/* Frase com ícone */

.experiencia-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}

.experiencia-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experiencia-icon i {
    font-size: 1.35rem;
    color: #fff;
}

.experiencia-description {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.55;
}

/* Carrossel de imagens */
.experiencia-carousel {
    position: relative;
}

.experiencia-carousel .carousel {
    width: 100%;
}

.experiencia-carousel .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .26);
}

/* Imagem: desktop em 16:9, cobre o quadro */

.experiencia-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Indicadores e setas */
.experiencia-carousel .carousel-indicators {
    bottom: 14px;
    margin-bottom: 0;
}

.experiencia-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    border: none;
    margin: 0 4px;
}

.experiencia-carousel .carousel-indicators li.active {
    background: #00C1EA;
}

.experiencia-carousel .carousel-control-prev,
.experiencia-carousel .carousel-control-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .22);
    transition: .2s ease;
}

.experiencia-carousel .carousel-control-prev:hover,
.experiencia-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, .32);
}

/* CTA */
.btn-experiencia-cta {
    display: inline-block;
    background: #00C1EA;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: .4px;
    font-size: .95rem;
    line-height: 1.2;
    padding: 12px 36px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 193, 234, .35);
    transition: .25s ease;
    margin-top: 14px;
}

.btn-experiencia-cta:hover {
    background: #00A6C9;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .experiencia-section {
        padding: 48px 0;
    }

    .experiencia-section > .container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .experiencia-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .experiencia-intro {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .experiencia-description {
        font-size: .98rem;
    }
}

/* MOBILE pequeno: deixa a IMAGEM em formato “retrato” 9:16 */
@media (max-width: 576px) {
    .experiencia-img {
        aspect-ratio: 9 / 16;
        object-fit: cover;
    }

    .experiencia-carousel .carousel-indicators {
        bottom: 10px;
    }

    .experiencia-carousel .carousel-indicators li {
        width: 8px;
        height: 8px;
    }

    .experiencia-carousel .carousel-control-prev,
    .experiencia-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

