@charset "UTF-8";
/* CSS MOBILE - 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;
    overflow-x: hidden;
}

/* ========== 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: 100%;
    margin: 0 auto;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

#menu-itens ul {
    display: none;
}

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

/* Carrossel Desktop escondido no mobile */
.banner-dinamico .carousel {
    display: none !important;
}

/* Carrossel Mobile */
.banner-mobile {
    display: block !important;
    width: 100vw;
    max-width: 100%;
    position: relative;
}

.banner-mobile .carousel-mobile {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* SLIDES - apenas o ativo aparece */
.banner-mobile .slide-mobile {
    display: none;
    width: 100%;
}

.banner-mobile .slide-mobile.active {
    display: block;
}

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

.banner-mobile .slide-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

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

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

.blocos-cursinho-inner {
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 3vw 0 3vw;
    gap: 18px 0;
    max-width: 100vw;
    width: 100vw;
}

/* ========== FORMULÁRIO ========== */
.bloco-formulario-externo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100% !important;
    padding: 0 !important;
}

.bloco-formulario {
    background: #ededed;
    color: #222;
    border-radius: 12px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding: 12px 12px 10px 12px;
    margin: 0 !important;
    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: 13px;
    margin-bottom: 5px;
    font-weight: normal;
}

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

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

.form-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
}

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

.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: 11px;
    color: #d50000;
    background: #ededed;
    padding-left: 2px;
}

.form-field input {
    width: 100%;
    font-size: 14px;
    background: transparent;
    border: none;
    border-bottom: 1.2px solid #222;
    outline: none;
    padding: 8px 0 6px 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;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-bottom: 0;
}

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

.form-cursinho-custom button {
    background: #222;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    width: 100%;
    padding: 12px 0;
    margin-bottom: 0;
    font-size: 14px;
    transition: background 0.18s;
}

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

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

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
}

#btn-enviar {
    width: 100%;
    height: 48px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    letter-spacing: 1px;
}

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

/* ========== BLOCO CURSINHO (TEXTO) ========== */
.bloco-cursinho {
    background: transparent;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: none !important;
}

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

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

.bloco-cursinho h3 {
    color: #fff;
    font-size: 0.9em;
    margin-bottom: 8px;
    margin-top: 10px;
}

.bloco-cursinho p {
    color: #fff;
    font-size: 0.88em;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* ========== BLOCO BOLSA ========== */
.bloco-bolsa {
    background: transparent;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: none !important;
}

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

.bloco-bolsa p {
    color: #fff;
    font-size: 0.88em;
    line-height: 1.4;
}

/* ========== BLOCO VÍDEO ========== */
.bloco-video-txt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: none !important;
}

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

.bloco-video-txt p {
    color: #fff;
    font-size: 0.88em;
    margin: 0;
    max-width: 100%;
    line-height: 1.4;
}

.bloco-video-img {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: none !important;
}

.video-thumb {
    position: relative;
    width: 100% !important;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.festa-img {
    width: 100% !important;
    height: auto;
    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: 40px;
    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: 24px 0 24px 0;
    width: 100%;
}

.faixa-excelencia .excelencia-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}

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

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

.faixa-excelencia p {
    font-size: 0.95em;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.6;
}

.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;
    padding: 0 12px;
}

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

.rodape-info {
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
}

/* ========== 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: 95vw;
    width: 95vw;
    padding: 20px 16px 18px 16px;
    position: relative;
}

#politica-seta {
    display: none;
}

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

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

#texto-politica {
    font-size: 0.9em;
    color: #222;
    margin-top: 8px;
    line-height: 1.5;
    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: 24px 18px 20px 18px;
    max-width: 90vw;
    width: 90vw;
    text-align: center;
    position: relative;
}

/* ========== reCAPTCHA RESPONSIVO ========== */
.g-recaptcha {
    transform: scale(0.85);
    transform-origin: center center;
}
