/* Cores */

:root{
    --azul-supera:#082672;
}

/*
<weight>: Use a value from 300 to 700
<uniquifier>: Use a unique and descriptive class name 
*/
 body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
 }

.quicksand-<uniquifier> {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

#minibula {
  background-color: var(--azul-supera);
  color: white;
  font-family: "Quicksand", sans-serif;
  padding: 50px 20px;
  text-align: justify;
  text-justify: inter-word;
}

#minibula p{
    max-width: 1040px;
    margin: 0 auto;
}

#logo{
    text-align: center;
    padding: 50px 0;
}
#conteudo{
    background: linear-gradient(143deg, #65A4BA, #445CA5, #B24CC4);
    text-align: center;
    padding: 50px 20px;
    color: #fff;
    font-size: 16px;
}

#conteudo p{
font-size: 25px;
}

h1{
    color: white;
    font-size: 40px;
    margin: 0;
    max-width: 780px;
    margin: 0 auto;
}
ul {
    list-style: none;
    
}


#rodape {
    font-size: 16px;
    color: var(--azul-supera);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 0px;
}

#rodape ul {
    padding: 0;
    margin: 0;
}

#rodape li a{
    margin: 10px 0;
    display: flex;
  align-items: center; /* Alinha texto e imagem verticalmente */
  gap: 10px;
  text-decoration: none;
}


.logo_supera{
    margin-top: 30px;
}

#contato{
    padding: 0 10% 50px 10%;
}

.video-wrapper {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000; /* Fundo preto enquanto carrega */
  border-radius: 8px; /* Opcional: cantos arredondados */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Replicaveis */

.espacador_superior{margin-top: 50px;}
.pos_rodape{padding: 0px 23% 15px 23%;}

#rodape a{
    color: var(--azul-supera);
    text-decoration: none;
}
#rodape a:hover{
    font-weight: bold;
}