@import "config.css";
@import "topo.css";
@import "rodape.css";
@import "crumb.css";

@import "depoimentos.css";
@import "grid_links.css";

:root {
    --primary: #4708c1;
    --card: #ffffff;
    --border: #e5e7eb;
    --text: #000;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,.04);
}

.container_small__xxxxx {
    /* width: 100%;
    max-width: 100%; */
    margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
	width: 100%;
    padding: 5px 20px;
}

.breadcrumb {
    font-size:.85rem;
    color:var(--text);
    padding-top: 28px;
    margin-bottom:20px;
    a {
        color:var(--text);
        text-decoration: underline;
    }
}

/* HERO */
/* #defaultpage .hero {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    color: #FFF;
}

#defaultpage .hero h1 {
    font-size: clamp(25px, 25px + 1.2vw, 33px);
    line-height: normal;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

#defaultpage .hero p {
    line-height: 22px;
    font-size: 14px;
} */





/* SECTIONS */
#defaultpage section {
    margin-top: 30px;
}

#defaultpage .main_title {
    margin-bottom: 25px;
}







/* CARDS */
#defaultpage .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}



#defaultpage .card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition:.3s;
}

#defaultpage a.card:hover { transform:translateY(-5px); }

#defaultpage .card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
}

#defaultpage .card p {
    font-size: 14px;
    color: var(--text);
}





/* FORM */
#defaultpage .form {
    background: var(--card);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

#defaultpage .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

#defaultpage label {
    font-size: 14px;
    color: var(--text);
}

#defaultpage input, select, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 14px;
    margin-top: 6px;
    border: 1px solid #dddddd;
}

#defaultpage textarea {
    resize: vertical;
    min-height: 120px;
}

#defaultpage .btn {
    margin-top: 20px;
    background: var(--primary);
    color: #FFF;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}









#defaultpage .vaga {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    border-bottom:1px solid var(--border);
    transition:.3s;
}

#defaultpage .vaga:last-child { border-bottom:none; }
#defaultpage .vaga:hover { background-color:#f1f5f9; }

#defaultpage .vaga h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--text);
    font-weight: 700;
}

#defaultpage .vaga span {
    font-size:14px;
    color:var(--text);
}















.reCaptchaForm {
    font-size: 12px;
    margin-top: 10px;
}

.reCaptchaForm a {
    color: #3a4bed;
    text-decoration: underline;
}





.erro {
    position: relative;
    overflow: hidden;
    padding: 15px 15px 15px 15px;
    border: 1px solid transparent;
    border-radius: 5px;

    color: #a42830;
    background-color: #f7a8a9;
    display: flex;
    margin-bottom: 20px;

    i {
        margin-right: 10px;
    }
}

.acerto {
    position: relative;
    overflow: hidden;
    padding: 15px 15px 15px 15px;
    border: 1px solid transparent;
    border-radius: 5px;

    color: #1c7c31;
    background-color: #85e89d;
    display: flex;
    margin-bottom: 20px;

    i {
        margin-right: 10px;
    }
}



#loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999999999;
    span {
        width: 100%;
        height: 100%;
        inset: 0;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

#loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}




.video-wrapper {
    position: relative;

    /* largura no desktop */
    /* max-width: 780px; */
    max-width: 100%;
    width: 100%;

    /* mantém proporção */
    aspect-ratio: 16 / 9;

    border-radius: 15px;
    overflow: hidden;
    background: #000;
    /* margin: 30px auto 30px; */
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #fff;
    background: rgba(0, 0, 0, 1);
    cursor: pointer;
}









/* Publicidade */
.publicidade-banner {
    background-color: #FFF;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    font-size: 11px;
}





.sharePage,
.haha {
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    background-color: #4708c1;
    color: #FFF;
    display: inline-block;
    margin-bottom: 30px;
    text-align: center;
}



@media (max-width: 600px) {

    .sharePage {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }
}













canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    background-color: #FFF;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
}















.paginador {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.paginador a {
    padding: 8px 14px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all .2s ease;
}

.paginador a:hover {
    background: #f5f5f5;
}

.paginador a.ativo {
    background: #222;
    color: #fff;
    border-color: #222;
}

.paginador a.prev,
.paginador a.next {
    font-weight: bold;
}



.empty-state {
    text-align: center;
    padding: 50px 0;
    i {
        font-size: 50px;
        margin-bottom: 22px;
    }
    h2 {
        margin-bottom: 10px;
    }
}










.revert * {
    all: revert;
    img {
        max-width: 100%;
    }
}






