@charset "UTF-8";
/* CSS DESKTOP - Bolsa de Estudos Oficina do Estudante */
/* Carregado para telas >= 768px */

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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

/* ========== BARRA TOPO / MENU ========== */
#barra-topo {
    background: #000000 !important;
    width: 100%;
    box-sizing: border-box;
    border: none !important;
    border-bottom: 4px solid #c8102e;
}

#barra-topo #menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img.logo-img {
    display: block;
    height: 46px;
    width: auto;
}

#menu-itens ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
    align-items: center;
}

#menu-itens ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 8px 0;
    display: block;
    transition: color .18s ease;
}

#menu-itens ul li a:hover {
    color: #e30613;
}

/* ========== BANNER / CARROSSEL ========== */
.banner-dinamico {
    width: 100vw;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.banner-dinamico .carousel {
    position: relative;
    width: 100%;
    height: 420px;
}

.banner-dinamico .slide {
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-dinamico .slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-dinamico .slide img.preload {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
}

.banner-dinamico .slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-dinamico .nav-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-dinamico .nav-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.banner-dinamico .nav-dots button:hover {
    background: rgba(255,255,255,0.8);
}

.banner-dinamico .nav-dots button.active {
    background: #fff;
}

/* Banner mobile escondido no desktop */
.banner-mobile {
    display: none !important;
}

/* ========== BLOCOS CURSINHO (GRID PRINCIPAL) ========== */
.blocos-cursinho {
    background: #191919;
    color: #fff;
    width: 100%;
    padding: 0 0 40px 0;
    font-family: Arial, sans-serif;
}

.blocos-cursinho-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 18px 0 18px;
    display: grid;
    grid-template-columns: 1fr 532px;
    grid-template-rows: auto auto auto;
    gap: 36px 36px;
}

/* ========== FORMULÁRIO ========== */
.bloco-formulario-externo {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bloco-formulario {
    background: #ededed;
    color: #222;
    border-radius: 12px;
    width: 530px;
    min-width: 170px;
    max-width: 98vw;
    box-sizing: border-box;
    padding: 12px 12px 10px 12px;
    margin-bottom: 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

.form-cursinho-custom {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.label-curso {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}

.radio-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: normal;
}

.radio-group input[type="radio"] {
    margin-right: 5px;
}

.online-label {
    display: inline-block;
    font-size: 13px;
    margin-left: 0;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.form-field {
    flex: 1;
    position: relative;
    margin-bottom: 12px;
}

.form-field label {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    font-weight: bold;
    pointer-events: none;
    color: #222;
    transition: 0.2s;
    background: transparent;
    padding-left: 0;
}

.form-field input:not(:placeholder-shown) + label,
.form-field input:focus + label {
    top: -16px;
    font-size: 12px;
    color: #d50000;
    background: #ededed;
    padding-left: 2px;
}

.form-field input {
    width: 100%;
    font-size: 13px;
    background: transparent;
    border: none;
    border-bottom: 1.2px solid #222;
    outline: none;
    padding: 5px 0 4px 0;
    color: #222;
    transition: border-color 0.2s;
}

.form-field input:focus {
    border-bottom: 1.2px solid #d50000;
}

.form-field input::placeholder {
    color: transparent;
}

.fone-row {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    margin-bottom: 0;
}

.fone-row .form-field {
    margin-bottom: 0;
}

.form-cursinho-custom button {
    background: #222;
    color: #fff;
    border-radius: 2px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    width: 70px;
    padding: 8px 0;
    margin-bottom: 0;
    font-size: 13px;
    transition: background 0.18s;
    align-self: flex-end;
}

.form-cursinho-custom button:hover {
    background: #d50000;
}

.form-msg {
    display: block;
    font-size: 12px;
    margin-top: 2px;
    color: #d50000;
    font-weight: bold;
    min-height: 16px;
    margin-bottom: 4px;
}

.form-actions {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
}

#btn-enviar {
    height: 56px;
    min-width: 120px;
    padding: 0 36px;
    font-size: 18px;
    font-weight: bold;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    box-shadow: none;
    margin: 0;
    margin-left: 10px;
    letter-spacing: 1px;
}

#btn-enviar:hover {
    background: #d50000;
}

/* ========== BLOCO CURSINHO (TEXTO) ========== */
.bloco-cursinho {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    background: transparent;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    min-height: unset;
    height: auto;
    max-height: 250px;
}

.bloco-cursinho h2 {
    color: #d50000;
    font-size: 2em;
    font-weight: bold;
    margin: 0 0 14px 0;
    letter-spacing: 1px;
}

.bloco-cursinho .subtitulo {
    font-size: 0.92em;
    color: #fff;
    margin-top: 7px;
    font-weight: bold;
}

.bloco-cursinho h3 {
    color: #fff;
    font-size: 0.96em;
    margin-bottom: 9px;
    margin-top: 12px;
}

.bloco-cursinho p {
    color: #fff;
    font-size: 0.93em;
    margin-bottom: 7px;
    line-height: 1.3;
}

/* ========== BLOCO BOLSA ========== */
.bloco-bolsa {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    background: transparent;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bloco-bolsa h2 {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 14px 0;
    letter-spacing: 1px;
}

.bloco-bolsa p {
    color: #fff;
    font-size: 0.96em;
}

/* ========== BLOCO VÍDEO ========== */
.bloco-video-txt {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: unset;
    height: auto;
    margin: 0;
    padding: 0;
}

.bloco-video-txt h2 {
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.bloco-video-txt p {
    color: #fff;
    font-size: 0.93em;
    margin: 0;
    max-width: 95%;
}

.bloco-video-img {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
    height: auto;
    margin: 0;
    padding: 0;
}

.video-thumb {
    position: relative;
    width: 500px;
    height: 300px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.festa-img {
    width: 510px;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 52px;
    color: #d50000;
    text-shadow: 0 2px 8px #000;
    pointer-events: none;
}

/* ========== FAIXA EXCELÊNCIA ========== */
.faixa-excelencia {
    background: #ededed;
    color: #222;
    font-family: Arial, sans-serif;
    padding: 38px 0 36px 0;
    width: 100%;
}

.faixa-excelencia .excelencia-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.faixa-excelencia h2 {
    font-size: 2.2em;
    font-weight: bold;
    margin: 0 0 14px 0;
    color: #111;
    letter-spacing: 1px;
}

.faixa-excelencia .linha-vermelha {
    width: 44px;
    height: 10px;
    background: #d50000;
    border-radius: 2px;
    margin: 0 0 5px 0;
    display: block;
}

.faixa-excelencia p {
    font-size: 1.08em;
    margin-bottom: 14px;
    color: #222;
    line-height: 1.7;
}

.faixa-excelencia strong {
    font-weight: bold;
}

.faixa-excelencia .destaque {
    color: #d50000;
    font-weight: bold;
    text-decoration: none;
}

/* ========== RODAPÉ ========== */
.rodape-oficina {
    background: #000000;
    width: 100%;
    padding: 15px 0 10px 0;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.rodape-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rodape-logo {
    width: 190px;
    max-width: 100%;
    margin-bottom: 8px;
    margin-top: 0;
}

.rodape-info {
    font-size: 15px;
    color: #fff;
}

/* ========== POPUPS / MODAIS ========== */
#popup-politica.modal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
}

#politica {
    background: #fff;
    color: #222;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 540px;
    width: 90vw;
    padding: 32px 26px 24px 26px;
    position: relative;
}

#politica-seta {
    position: absolute;
    top: -18px;
    left: 40px;
    width: 36px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg width="36" height="18"><polygon points="0,18 18,0 36,18" style="fill:white;" /></svg>') no-repeat;
}

#botao_video_fechar img {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

#botao_video_fechar .titulo {
    display: block;
    font-weight: bold;
    font-size: 1.12em;
    margin-bottom: 16px;
    color: #c8102e;
    margin-left: 0;
    margin-top: 0;
}

#texto-politica {
    font-size: 1em;
    color: #222;
    margin-top: 8px;
    line-height: 1.6;
    margin-bottom: 0;
}

#popup.modal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 32px 26px 24px 26px;
    max-width: 340px;
    width: 90vw;
    text-align: center;
    position: relative;
}
