/*========================
Comun em todas as paginas
==========================*/
    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body{
      background: #f5f5f5;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header{
      width: 100%;
      background: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 10px 40px;
    }

    .menu{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-area{
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo-area img{
      width: 70px;
      height: 70px;
      border-radius: 50%;
    }

    .titulo h1{
      font-size: clamp(16px, 2.5vw, 22px);
      color: #1d2d5c;
    }

    .titulo p{
      color: #c08a1a;
      font-size: clamp(13px, 1.5vw, 15px);
    }

    /* LINKS */
    nav ul{
      display: flex;
      list-style: none;
      gap: 30px;
    }

    nav a{
      text-decoration: none;
      color: #1d2d5c;
      font-weight: bold;
      transition: 0.3s;
    }

    nav a:hover{
      color: #c08a1a;
    }

    /* MENU HAMBURGUER */
    .menu-toggle{
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      background: none;
      border: none;
      padding: 5px;
    }

    .menu-toggle span{
      display: block;
      width: 25px;
      height: 3px;
      background: #1d2d5c;
      border-radius: 3px;
      transition: 0.3s;
    }

    .circular{
      background: #0066cc;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
    }

    .btn-template{
      display: inline-block;
      background-color: #0056b3;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-template:hover{
      background-color: #003d82;
    }

    .btn{
      background: #c08a1a;
      color: white;
      padding: 12px 22px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn:hover{
      background: #a87410;
    }

    main{
      flex: 1;
    }

    .rodape{
      width: 100%;
      background: #001b4e;
      color: white;
      font-family: Arial, Helvetica, sans-serif;
    }

    .conteudo-rodape{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      padding: 40px 80px;
      flex-wrap: wrap;
    }

    .bloco{
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .icone{
      width: 70px;
      height: 70px;
      background: #d4a028;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 35px;
      flex-shrink: 0;
    }

    .texto p{
      font-size: 18px;
      margin-bottom: 5px;
    }

    .texto h2{
      font-size: 24px;
    }

    .faixa{
      width: 100%;
      height: 25px;
      background: #d4a028;
    }

/*===================
Pagina inicial
=====================*/
    #desclog{
      width: 100%;
      height: auto;
      display: block;
    }

/*Pagina Sobre*/

    .sobre{
      width: 100%;
      min-height: 600px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 20px;
      background: #f8f8f8;
      overflow: hidden;
    }

    /* ONDAS ESQUERDA */
    .ondas{
      position: absolute;
      left: 0;
      top: 0;
      width: 350px;
      height: 100%;
      background-image: url("../img/ondas.png");
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 0.15;
    }

    /* CONTEÚDO */
    .conteudo-sobre{
      max-width: 700px;
      margin: 0 auto;
      z-index: 2;
    }

    .conteudo-sobre h2{
      text-align: center;
      color: #0c2b63;
      font-size: clamp(28px, 5vw, 40px);
      margin-bottom: 25px;
      position: relative;
    }

    /* LINHAS AO LADO DO TÍTULO */
    .conteudo-sobre h2::before,
    .conteudo-sobre h2::after{
      content: "";
      width: 60px;
      height: 3px;
      background: #d4a028;
      position: absolute;
      top: 50%;
    }

    .conteudo-sobre h2::before{
      left: -80px;
    }

    .conteudo-sobre h2::after{
      right: -80px;
    }

    .conteudo-sobre p{
      text-align: justify;
      font-size: clamp(16px, 2vw, 18px);
      line-height: 1.8;
      color: #444;
      margin-bottom: 20px;
    }

    /* GARÇA */
    .garca{
      position: absolute;
      right: 80px;
      bottom: 80px;
      opacity: 0.9;
    }

    .garca img{
      width: 350px;
    }

/*======================
Pagina Programação
=======================*/
    .programacao{
      width: 100%;
      padding: 80px 20px;
    }

    /* TÍTULO */
    .titulo-programacao{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .titulo-programacao h2{
      font-size: clamp(28px, 5vw, 42px);
      color: #0c2b63;
      text-align: center;
    }

    .linha{
      width: 80px;
      height: 3px;
      background: #d4a028;
    }

    /* CARDS */
    .cards{
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    /* CARD */
    .card{
      width: 340px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e7d8b8;
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    /* TOPO */
    .topo-card{
      background: #001b5e;
      color: white;
      text-align: center;
      padding: 18px;
      font-size: 20px;
      font-weight: bold;
    }

    /* CONTEÚDO */
    .conteudo-card{
      padding: 30px;
    }

    /* ITEM */
    .item{
      display: flex;
      gap: 25px;
      align-items: flex-start;
    }

    .item h4{
      min-width: 70px;
      color: #0c2b63;
      font-size: 22px;
    }

    .item p{
      color: #333;
      line-height: 1.7;
    }

    /* LINHA */
    .divisor{
      width: 100%;
      height: 1px;
      background: #e5d6b5;
      margin: 25px 0;
    }

/* =========================
   PAGINA EIXOS TEMÁTICOS
========================= */

    .eixos{
      padding: 40px 20px;
      background: #f8f8f8;
    }

    .eixos-titulo{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 35px;
      flex-wrap: wrap;
    }

    .eixos-linha{
      width: 120px;
      height: 3px;
      background: #d7a544;
    }

    .eixos-titulo h2{
      font-size: clamp(26px, 4vw, 38px);
      color: #1f2d5c;
      font-family: Georgia, serif;
      text-align: center;
    }

    .eixos-cards{
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .eixos-card{
      background: #fff;
      border: 1px solid #eadfcb;
      border-radius: 12px;
      width: 250px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      transition: 0.3s;
    }

    .eixos-card:hover{
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .eixos-icone{
      min-width: 55px;
      height: 55px;
      background: #315c24;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
    }

    .eixos-texto h3{
      color: #315c24;
      font-size: 22px;
      margin-bottom: 8px;
    }

    .eixos-texto p{
      color: #2d2d2d;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 600;
    }

/* =========================
   PAGINA MINICURSOS
========================= */

    .minicursos{
      padding: 50px 20px;
      background: #f8f8f8;
    }

    /* TÍTULO */
    .minicursos-titulo{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 35px;
      flex-wrap: wrap;
    }

    .minicursos-linha{
      width: 120px;
      height: 3px;
      background: #d7a544;
    }

    .minicursos-titulo h2{
      font-size: clamp(26px, 4vw, 38px);
      color: #1f2d5c;
      font-family: Georgia, serif;
      text-align: center;
    }

    /* CARDS */
    .minicursos-cards{
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .minicursos-card{
      width: 300px;
      background: #fff;
      border: 1px solid #eadfcb;
      border-radius: 12px;
      padding: 20px;
      transition: 0.3s;
    }

    .minicursos-card:hover{
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    /* ÍCONE */
    .minicursos-icone{
      font-size: 42px;
      color: #24513b;
      margin-bottom: 15px;
    }

    /* TÍTULO CARD */
    .minicursos-card h3{
      color: #1f2d5c;
      font-size: 20px;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    /* PROFESSOR */
    .minicursos-professor{
      color: #444;
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 18px;
    }

    /* INFORMAÇÕES */
    .minicursos-info p{
      color: #244b36;
      font-size: 16px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .minicursos-info i{
      color: #6a7c6f;
    }

    .inscricao-minicursos{
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 50px 0;
      padding: 0 20px;
    }

    .inscricao-box{
      width: 80%;
      background: #ffffff;
      border-radius: 18px;
      padding: 35px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      border: 1px solid #e6e6e6;
      flex-wrap: wrap;
    }

    .inscricao-texto h2{
      font-size: clamp(28px, 4vw, 42px);
      color: #0d2f6f;
      margin-bottom: 15px;
    }

    .inscricao-texto p{
      font-size: clamp(16px, 2vw, 19px);
      color: #444;
      max-width: 600px;
      line-height: 1.5;
      margin-bottom: 25px;
    }

    .btn-inscricao-mini{
      display: inline-block;
      background: #c9961a;
      color: white;
      padding: 15px 28px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-inscricao-mini:hover{
      background: #a97f14;
      transform: translateY(-2px);
    }

    .qrcode-area img{
      width: 220px;
      height: 220px;
      border-radius: 10px;
      background: white;
      padding: 10px;
    }

/* =========================
   SUBMISSÃO
========================= */

    .submissao{
      padding: 50px 20px;
      background: #f8f8f8;
    }

    .submissao-regras{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
      margin-bottom: 40px;
    }

    .submissao-regra{
      width: 260px;
      background: #fff;
      border: 1px solid #eadfcb;
      border-radius: 12px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .submissao-regra i{
      font-size: 38px;
      color: #1f4d36;
      flex-shrink: 0;
    }

    .submissao-regra p{
      font-size: 16px;
      color: #1f2d5c;
      font-weight: 600;
      line-height: 1.4;
    }

    .submissao-cards{
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* CARD */
    .submissao-card{
      width: 420px;
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #eadfcb;
    }

    /* TOPO */
    .submissao-topo{
      padding: 18px;
    }

    .submissao-topo h2{
      color: #fff;
      font-size: clamp(22px, 3vw, 30px);
      font-family: Georgia, serif;
    }

    .verde{
      background: #1f4d36;
    }

    .azul{
      background: #072d63;
    }

    /* CONTEÚDO */
    .submissao-conteudo{
      padding: 25px;
    }

    /* DATAS */
    .submissao-item{
      display: flex;
      gap: 18px;
      margin-bottom: 28px;
    }

    .submissao-item i{
      color: #4b6b5a;
      font-size: 22px;
      margin-top: 5px;
      flex-shrink: 0;
    }

    .submissao-item p{
      color: #444;
      font-size: 17px;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .submissao-item span{
      font-size: clamp(24px, 4vw, 34px);
      font-weight: bold;
      color: #1f2d5c;
    }

    /* MODALIDADES */
    .submissao-modalidade{
      display: flex;
      gap: 20px;
      margin-bottom: 35px;
    }

    .submissao-modalidade i{
      font-size: 45px;
      color: #072d63;
      flex-shrink: 0;
    }

    .submissao-modalidade h3{
      font-size: clamp(22px, 3vw, 28px);
      color: #1f2d5c;
      margin-bottom: 8px;
    }

    .submissao-modalidade p{
      font-size: 18px;
      color: #444;
      line-height: 1.4;
    }

    .templates-section{
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 40px 0;
      padding: 0 20px;
    }

    .templates-box{
      width: 80%;
      background: #ffffff;
      border-radius: 16px;
      padding: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      border: 1px solid #e5e5e5;
      flex-wrap: wrap;
    }

    .templates-text h2{
      color: #0d2f6f;
      font-size: clamp(24px, 3.5vw, 32px);
      margin-bottom: 10px;
    }

    .templates-text p{
      color: #444;
      font-size: clamp(15px, 2vw, 18px);
      max-width: 600px;
    }

    .btn-template-download{
      background: #0057c2;
      color: white;
      padding: 16px 28px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      transition: 0.3s;
      white-space: nowrap;
    }

    .btn-template-download:hover{
      background: #003f8f;
      transform: translateY(-2px);
    }

/* =========================
   MEDIA QUERIES
========================= */

/* Tablet (até 900px) */
@media (max-width: 900px){

  /* SOBRE */
  .sobre{
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .garca{
    position: static;
    margin-top: 30px;
  }

  .garca img{
    width: 250px;
  }

  .conteudo-sobre h2::before,
  .conteudo-sobre h2::after{
    display: none;
  }

}

/* Mobile (até 768px) */
@media (max-width: 768px){

  /* HEADER */
  header{
    padding: 10px 20px;
    position: relative;
  }

  .menu{
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu-toggle{
    display: flex;
  }

  nav{
    width: 100%;
    display: none;
  }

  nav.aberto{
    display: block;
  }

  nav ul{
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
  }

  nav ul li{
    text-align: center;
  }

  /* RODAPÉ */
  .conteudo-rodape{
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    text-align: center;
  }

  .bloco{
    flex-direction: column;
    align-items: center;
  }

  .texto h2{
    font-size: 20px;
  }

  .texto p{
    font-size: 15px;
  }

  /* PROGRAMAÇÃO */
  .card{
    width: 100%;
  }

  /* EIXOS TEMÁTICOS */
  .eixos-linha{
    width: 60px;
  }

  .eixos-card{
    width: 100%;
  }

  /* MINICURSOS */
  .minicursos-linha{
    width: 60px;
  }

  .minicursos-card{
    width: 100%;
  }

  /* INSCRIÇÃO */
  .inscricao-box{
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .qrcode-area img{
    width: 160px;
    height: 160px;
  }

  /* TEMPLATES */
  .templates-box{
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  /* SUBMISSÃO */
  .submissao-regra{
    width: 100%;
  }

  .submissao-card{
    width: 100%;
  }

  .submissao-modalidade{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px){

  .logo-area img{
    width: 50px;
    height: 50px;
  }

  .icone{
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .btn-inscricao-mini,
  .btn-template-download{
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 14px 20px;
  }

  .btn{
    padding: 10px 16px;
    font-size: 14px;
  }

  .conteudo-card{
    padding: 20px;
  }

  .item h4{
    min-width: 55px;
    font-size: 18px;
  }

}
