
/** padrões **/
h1, h2, h3, h4, h5, h6 {
    color: #323232;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.texto-branco{
    color: #ffffff;
}
p {
    color: #888888;
}

h3 {
    letter-spacing: 4px;
}

h3::after {
    content: '.';
    color: #e6ae49;
    font-size: 34px;
}

/** Menu **/
.navbar {
    background-color: #f8f9fa;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #e6e6e6;
}
.navbar a {
    margin: 0 15px;
    padding: 5px 10px;
    text-transform: uppercase;
    text-decoration: none;
    color: #323232;
    font-weight: 600;
}
.navbar a:hover {
    color: #e6ae49;
    text-decoration: underline;
    transition: all .3s ease-out;
}

.navbar a.active {
    color: #e6ae49;
    text-decoration: underline;
}

.titulo-pagina {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 100px;
}

/** materias e videos **/
.titulo-video {
    height: 70px;
}
.materiais-videos p {
    width: 80%;
    margin: 5px auto;
    font-size: 1rem;
}

.materiais-videos a {
    margin-bottom: 0;
}
.texto-descricao-video {
    width: 100%;
    margin-bottom: 10px;
}
h5 {
    margin-top: 20px;
    margin-bottom: 30px;
}
a.link-titulo-video {
    color: #323232;
    text-decoration: none;
}
a.link-titulo-video:hover {
    color: #e6ae49;
}
a.btn.link-videos {
    color: white;
    text-transform: uppercase;
}

#iframe-container {
    position: relative;
    /* Necessário para posicionar o ícone */
    /* border: 1px solid #ccc; */
    /* Para visualizar o contêiner */
    /* width: 100%; */
}

#loading-icon {
    position: absolute;
    /* Posiciona sobre o iframe */
    top: 50%;
    left: calc(50% - 15px);
    transform: translate(-50%, -50%);
    /* Centraliza o ícone */
    z-index: 10;
    /* Garante que o ícone fique acima do iframe */
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    display: block;
    /* Por padrão, mostra o ícone */
}

/* Exemplo de um spinner CSS */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e6ae49;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/** Objetivos */
.objetivos {
    padding-top: 150px;
}
.item-objetivo {
    padding-left: 70px;
    padding-right: 70px;
}
.item-objetivo:hover .caixa-titulo-objetivo {
    opacity: 1;
    visibility: visible;
}
.img-objetivo {
   position: relative;
   overflow: hidden;
}
.caixa-titulo-objetivo {
   background: none repeat scroll 0 0 rgba(0, 0, 0, 0.80);
   color:white;
   text-align: center;
   display: flex;
   height: 100%;
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   visibility: hidden;
   overflow: hidden;
   transition: all 0.5s ease-in-out 0s;
   -webkit-transition: all 0.5s ease-in-out 0s;
   -moz-transition: all 0.5s ease-in-out 0s;
   -o-transition: all 0.5s ease-in-out 0s;
}

.caixa-titulo-objetivo .texto-titulo-objetivo {
    position: relative;
    margin: auto;
    padding: 25px;
    color: #ffffff
}

.texto-descricao-objetivo {
    margin-top: 15px;
}
.bg-objetivos-final {
    position: relative;
    overflow: hidden;
    color: white;
    z-index: 1;
    background-attachment: fixed;
    padding-bottom: 100px;
    padding-top: 100px;
}
.bg-objetivos-final::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.7;
}

.bg-objetivos-final p, h4 {
    position: relative;
    color: #ffffff
}

.item-servico {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
}

a.titulo-servico {
    color: #ffffff;
    text-decoration: none;
    width: 100%;
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}


.titulo-servico:hover {
    color: #eeeeee;
}

.item-servico .accordion-item {
    background-color: transparent;
    border: none;
    color: #ffffff;
    padding: 5px;
    margin-top: -8px;
    margin-bottom: -8px;
}

.item-servico .accordion-button:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #ffffff;
    box-shadow: none;
}

.item-servico button.accordion-button {
    background-color: transparent;
    color: #ffffff;
    padding: 0;
    margin: 0;
    display: block;
    text-align: center;
    --prefers-reduced-motion: reduce;
}

.item-servico button.accordion-button::after {
    display: inline-block;
    float: right;
    content: "+";
    background: none;
    color: #ffffff !important;
}

.rodape {
    background-color: #f8f9fa;
    font-size: 0.9rem;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid #e6e6e6;
}

a.link-rodape {
    text-decoration: none;
    color: #000000;
    font-size: 0.9rem;
}

a.link-rodape:hover {
    color: #e6ae49;
    text-decoration: underline;
    transition: all .3s ease-out;
}

@media(max-width: 767px){
    
}

@media(min-width: 768px){

    
}

@media(min-width: 992px){
    
}

@media(max-width: 1399px){
    
}

@media(min-width: 768px) and (max-width: 992px){
    
}
