/* Fonte usada no site */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&family=Open+Sans:wght@300;400;500;600&display=swap');

/* Configurações da página */
* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Fundo, cor e altura total */
html, body 
{
  height: 100%;
  background-color: #000;
}

/* Rodapé fixo no fim da página */
body 
{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main 
{
  flex: 1;
}

/* Cabeçalho */
header 
{
  background-color: #000;
  width: 100%;
  padding: 2px 0;
}

/* Container do cabeçalho */
.container-header
{
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.logo img 
{
  width: 150px;
  height: auto;
  cursor: pointer;
}

/* Menu */
.menu 
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Links */
.menu a 
{
  color: azure;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

/* Mudar cor dos links */
.menu a:hover 
{
  color: #d4a043;
}

/* Botões das redes sociais */
.midias 
{
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Estilo dos ícones */
.midias .social 
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #f1c04b, #d4a043);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

/* Mudar cor dos botões das redes sociais */
.midias .social:hover 
{
  transform: scale(1.2);
  background-image: linear-gradient(45deg, #ff7100, #efa51b);
}

/* Rodapé */
footer 
{
  background-color: #000;
  color: azure;
  width: 100%;
  padding: 30px 0;
  text-align: center;
  letter-spacing: 1.5px;
}

/* Container do rodapé */
.footer-container 
{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-logo img 
{
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.footertexto 
{
  font-size: x-small;
  padding: 10px 0;
}

.conteudo
{
  background-image: url(./img/fundomenu.png);
  background-size: cover;
  background-position: center;
}

/* Titulo do conteudo */
.conteudo h1
{
    color: azure;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Bloco central */
.container-modalidades
{
    max-width: 60%;
    background-color: azure;
    border-radius: 8px;
    border-style: inset;
    border-color: #d4a043;
    margin: 20px auto 80px auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 60px;
}

/* Sub titulo */
.container-modalidades h2
{
    flex-basis: 100%;         /* Largura dentro container */
    text-align: center;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
    margin-bottom: 4px;
}

/* Parágrafo dentro do bloco */
.paragrafo
{
    text-align: justify;
    line-height: 1.6rem;
}

/* Lista dentro do bloco */
.lista 
{
    list-style: none;
    padding-left: 0;
    margin: 0;
}


.lista li 
{
    position: relative;
    padding-left: 30px;
    line-height: 1.6rem;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #000;
    text-align: justify;
}

/* Destaque dentro da lista */
.lista li b
{
    font-weight: 800;
    font-style: italic;
}

/* Ícone Font Awesome antes do texto */
.lista li::before 
{
    content: "\f44b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #d4a043;
    position: absolute;
    left: 0;
    top: 3px;
}

.video 
{
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Iframe ajuste */
.video iframe 
{
    width: 80%;
    max-width: 960px;
    height: 480px;
    border-radius: 8px;
    border: 1px solid #d4a043;
}