/* 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;
}
/* 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: rgba(69, 168, 255, 0.9);
    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: 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);
}

.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;
    }
}

/* 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: rgba(69, 168, 255, 0.15);
    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);
}

.prouni-icon {
    background: rgba(69, 168, 255, 0.3) !important;
}

.bolsa-card:hover .prouni-icon {
    background: rgba(69, 168, 255, 0.5) !important;
}

.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: var(--border-radius);
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.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.5rem 0;
}

.curso-dropdown.active .curso-btn {
    background: var(--secondary-blue);
    color: var(--white);
}

.curso-dropdown.active .curso-btn:hover {
    background: #3d96e6;
    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: #57aff6;
    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 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: var(--secondary-blue);
    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: #1f4cbf;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.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: var(--secondary-blue);
}

.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;
}

/* 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: var(--secondary-blue);
    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; /* MOSTRA A IMAGEM INTEIRA */
        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 {
    background: #2487EE;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-button {
    background: transparent !important;
    border: none !important;
    color: var(--white) !important;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 0;
    box-shadow: none !important;
    position: relative;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.faq-button:hover {
    color: var(--secondary-blue) !important;
}

.faq-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.faq-button::after {
    display: none;
}

.faq-button:not(.collapsed) {
    color: var(--secondary-blue) !important;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    transition: var(--transition);
    transform: rotate(0deg);
}

.faq-button:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary-blue);
}

.faq-button:hover .faq-icon {
    color: var(--secondary-blue);
}

.faq-body {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.5rem 1.2rem;
    border: none;
    backdrop-filter: blur(10px);
    margin-top: 0;
}

.collapse {
    border: none;
    transition: all 0.3s ease;
}

.card-header {
    background: transparent;
    border: none;
    padding: 0;
}

.card {
    background: transparent;
    border: none;
}

.faq-button {
    background: transparent !important;
    border: none !important;
    color: var(--white) !important;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 0;
    box-shadow: none !important;
    position: relative;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-button:hover {
    color: var(--secondary-blue) !important;
    transform: translateX(5px);
}

.faq-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.faq-button::after {
    display: none;
}

.faq-button:not(.collapsed) {
    color: var(--secondary-blue) !important;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.faq-button:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary-blue);
}

.faq-button:hover .faq-icon {
    color: var(--secondary-blue);
    transform: scale(1.1);
}

/* Animações para o FAQ */
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-item:nth-child(7) { animation-delay: 0.4s; }
.faq-item:nth-child(8) { animation-delay: 0.45s; }
.faq-item:nth-child(9) { animation-delay: 0.5s; }
.faq-item:nth-child(10) { animation-delay: 0.55s; }


.advantage-card,
.bolsa-card,
.curso-dropdown,
.video-container {
    animation: fadeInUp 0.6s ease forwards;
}

.video-play-btn {
    animation: pulse 2s infinite;
}

/* SCROLL SUAVE */
html {
    scroll-behavior: smooth;
}

/* LOADING STATES */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ACESSIBILIDADE */
.btn:focus,
.curso-btn:focus {
    outline: 3px solid rgba(69, 168, 255, 0.5);
    outline-offset: 2px;
}

/* PERFORMANCE */
.video-thumbnail,
.hero-image img {
    will-change: transform;
}

.advantage-icon,
.bolsa-icon,
.video-play-btn {
    will-change: transform, background-color;
}

/* 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: rgba(69, 168, 255, 0.8);
    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;
}

/* Afina o CONTEÚDO (alinha com as outras sem cortar o fundo) */

.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;
    }
}


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

.faq-section {
    background: #4169E1;
    padding: 80px 0;
    color: #ffffff;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
    padding-left: 0;
}

.faq-accordion {
    width: 100%;
}

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

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

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

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

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

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

.faq-answer {
    overflow: hidden;
}

.faq-answer-content {
    padding: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding-right: 40px;
    }

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


/* ==== FAQ — maior e alinhado com as outras ==== */
/* Altura geral da seção (mais respiro) */

.faq-section {
    padding: 80px 0;
}

/* Largura do conteúdo (mais largo no desktop) */

.faq-section > .container {
    max-width: 1040px;
    margin: 0 auto;
}

/* Título mais encorpado */

.faq-title {
    font-size: 2.6rem;
    margin: 0 0 32px 0;
    font-weight: 800;
}

/* Leve indent das perguntas */

.faq-accordion {
    margin-left: 12px;
}

/* Perguntas mais altas e legíveis */

.faq-question {
    font-size: 1.1rem;
    padding: 22px 52px 22px 10px;
}

/* Ícone ligeiramente maior */

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

/* Respostas com mais corpo */

.faq-answer-content {
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 0 0 22px 10px;
}

/* Opcional: deixar ainda mais largo em telas bem grandes */
@media (min-width: 1400px) {
    .faq-section > .container {
        max-width: 1140px;
    }
}

/* Mobile: mantém proporção confortável */
@media (max-width: 768px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-section > .container {
        max-width: 100%;
        padding: 0 18px;
    }

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

    .faq-accordion {
        margin-left: 6px;
    }

    .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;
    }
}
