/* Reset Padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Keyframes */
@keyframes flutuarEixo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes flutuarBolinhas {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes rolagemAutomatica {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@keyframes fadeInPainel {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}


[class*="satelite-"] {
    position: absolute; 
    animation-name: flutuarEixo;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.satelite-1 { top: 15%; left: 8%; animation-delay: 0.5s; animation-duration: 3.8s; }
.satelite-2 { top: 22%; left: 32%; animation-delay: 1.2s; animation-duration: 4.2s; }
.satelite-3 { top: 45%; left: 4%; animation-delay: 0s; animation-duration: 4.5s; }
.satelite-4 { top: 50%; left: 35%; animation-delay: 1.8s; animation-duration: 3.9s; }
.satelite-5 { bottom: 15%; left: 10%; animation-delay: 2.3s; animation-duration: 4.1s; }
.satelite-6 { bottom: 8%; left: 28%; animation-delay: 0.8s; animation-duration: 3.6s; }

.bolha-decorativa {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    will-change: transform;
    animation: flutuarBolinhas 5s ease-in-out infinite;
}

/* Variações das Bolhas */
.bolha-decorativa.azul { background-color: #0d47a1; opacity: 0.6; }
.bolha-decorativa.amarela { background-color: #f7be33; opacity: 0.7; }
.bolha-decorativa.tam-p { width: 15px; height: 15px; }
.bolha-decorativa.tam-m { width: 28px; height: 28px; }
.bolha-decorativa.tam-g { width: 45px; height: 45px; }

/* Posicionamento das Bolhas */
.pos-esq-1 { top: 25%; left: 3%; animation-duration: 4.8s; }
.pos-esq-2 { top: 55%; left: 7%; animation-delay: 1.5s; animation-duration: 5.2s; }
.pos-esq-3 { bottom: 12%; left: 2%; animation-delay: 0.7s; animation-duration: 6s; }
.pos-dir-1 { top: 18%; right: 5%; animation-delay: 2s; animation-duration: 5.5s; }
.pos-dir-2 { top: 48%; right: 8%; animation-delay: 0.3s; animation-duration: 4.5s; }
.pos-dir-3 { bottom: 20%; right: 4%; animation-delay: 1.1s; animation-duration: 5.8s; }

/* Cabeçalho */
.cabecalho-dinamico {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    flex-wrap: nowrap;
}


.social-sidebar {
  position: fixed;
  right: 15px; 
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px; 
  z-index: 9999;
}

.social-sidebar .social-icon {
  width: 48px;
  height: 48px;
  background-color: #002B5B; 
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  border-radius: 17px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-sidebar .social-icon:hover {
  transform: scale(1.1); 
}

.social-sidebar .social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-sidebar .social-icon.facebook:hover {
  background-color: #1877f2;
}

/* Estado do Cabeçalho Fixado */
.cabecalho-dinamico.fixado-com-fundo {
    background-color: #fbc206;
    background-image: 
        linear-gradient(to right, rgba(251, 194, 6, 0) 0%, rgba(251, 194, 6, 0.4) 100%),
        linear-gradient(115deg, transparent 50%, rgba(243, 156, 18, 0.3) 50%),
        linear-gradient(65deg, rgba(243, 156, 18, 0.2) 50%, transparent 50%),
        linear-gradient(115deg, transparent 40%, rgba(245, 171, 11, 0.25) 40%),
        linear-gradient(65deg, rgba(245, 171, 11, 0.35) 60%, transparent 60%);
    background-size: 100% 100%, 140px 95px, 140px 95px, 210px 95px, 210px 95px;
    background-position: 0 0, 0 0, 0 0, 40px 0, 40px 0;
    background-repeat: repeat-x;
    padding: 12px 5%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo-container, .logo-container .logo-link {
    display: flex;
    align-items: center;
}

.logo-container {
    position: relative;
    max-width: 260px;
    height: auto;
    flex-shrink: 0;
}

.logo-container .logo-img {
    height: 70px; 
    width: 140px;
    display: block;
    transition: height 0.3s ease, width 0.3s ease;
    filter: drop-shadow(0.5px 0.5px 0px #f4cc04) drop-shadow(0px 1px 5px rgba(11, 37, 69, 0.3));
}

.mobile-top-bar-image, .espaco-vazio-mobile, .fechar-menu {
    display: none;
}

/* Menu Links */
.menu-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    gap: 12px;
    transition: all 0.3s ease;
}

.menu-links li {
    width: auto;
    display: inline-block;
}

.menu-links a {
    display: inline-block;
    padding: 10px 22px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #0d4b81;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-links a:hover {
    background-color: #0d4b81;
    color: #ffe81d;
    border-color: #0d4b81;
}

/* Destaques do Menu */
.menu-links a.btn-menu-destaque {
    background-color: #0d4b81;
    color: #ffe81d;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(13, 75, 129, 0.2);
}

.menu-links a.btn-menu-destaque:hover {
    background-color: #0b2545;
    color: #ffffff;
    border-color: #0b2545;
    transform: scale(1.05);
}

.cabecalho-dinamico.fixado-com-fundo .menu-links a.btn-menu-destaque {
    background-color: #ffe81d;
    color: #0d4b81;
}

/* Menu Hamburguer */
.btn-hamburguer {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 110;
}

.btn-hamburguer .linha {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #0d4b81;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-hamburguer.ativo .linha:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.btn-hamburguer.ativo .linha:nth-child(2) { opacity: 0; }
.btn-hamburguer.ativo .linha:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


.secao-banner-topo {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 400px;
    display: block;
    line-height: 0;
    font-size: 0;
}

.foto-fundo-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secao-boas-vindas {
    width: 100%;
    padding: 80px 4%;
    background-color: #fbc206;
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
        linear-gradient(120deg, transparent 50%, rgba(230, 142, 4, 0.25) 50%),
        linear-gradient(60deg, rgba(230, 142, 4, 0.15) 50%, transparent 50%),
        linear-gradient(120deg, transparent 40%, rgba(245, 171, 11, 0.2) 40%),
        linear-gradient(60deg, rgba(245, 171, 11, 0.25) 60%, transparent 60%);
    background-size: 100% 100%, 320px 100%, 320px 100%, 480px 100%, 480px 100%;
    background-position: 0 0, 0 0, 0 0, 80px 0, 80px 0;
    background-repeat: repeat-x;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-boas-vindas {
    max-width: 1000px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.45);
    padding: 45px 50px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 35px rgba(13, 75, 129, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.conteudo-texto {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-title {
    font-family: 'Montserrat', sans-serif;
    color: #0d4b81;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.welcome-divider {
    width: 80px;
    height: 4px;
    background-color: #0d4b81;
    margin-bottom: 35px;
    border-radius: 4px;
}

.welcome-text {
    color: #0c2540;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.welcome-text strong {
    font-weight: 700;
    color: #0d4b81;
}


.secao-programacao {
    width: 100%;
    padding: 70px 5% 100px 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-secao {
    font-family: 'Montserrat', sans-serif;
    color: #0d4b81;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
}

.linha-decorativa-titulo {
    width: 60px;
    height: 4px;
    background-color: #f7be33;
    margin: 12px auto 45px auto;
    border-radius: 2px;
}

/* Menu de Abas (Dias) */
.abas-dias {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-dia {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(11, 30, 54, 0.02);
}

.btn-dia .txt-dia-num {
    font-size: 20px;
    font-weight: 800;
    color: #0b2545;
    font-family: 'Montserrat', sans-serif;
}

.btn-dia .txt-dia-semana {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
    font-weight: 500;
}

.btn-dia:hover {
    border-color: #0d4b81;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(13, 75, 129, 0.08);
}

.btn-dia.ativo {
    background-color: #0d4b81;
    border-color: #0d4b81;
    box-shadow: 0 8px 20px rgba(13, 75, 129, 0.25);
}

.btn-dia.ativo .txt-dia-num { color: #ffffff; }
.btn-dia.ativo .txt-dia-semana { color: #f7be33; }

/* Painéis de Conteúdo */
.painel-programacao {
    display: none;
    animation: fadeInPainel 0.4s ease forwards;
}

.painel-programacao.ativo {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
}

.coluna-cards-programacao {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards do Cronograma */
.card-cronograma {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(11, 30, 54, 0.03);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-cronograma:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(11, 30, 54, 0.06);
}

.horario-evento {
    background-color: #0b2545;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 160px;
    text-align: center;
    border-right: 4px solid #f7be33;
}

.detalhes-evento {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.detalhes-evento h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #0b2545;
    font-weight: 700;
    line-height: 1.4;
}

.detalhes-evento p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Tags de Categorias */
.tag-categoria {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.tag-categoria.minicurso { background-color: #e0f2fe; color: #0369a1; }
.tag-categoria.palestra { background-color: #fef3c7; color: #b45309; }
.tag-categoria.submissao { background-color: #dcfce7; color: #15803d; }

/* Coluna Lateral Mídia */
.coluna-midia-programacao {
    flex: 0.7;
    position: sticky;
    top: 100px;
}

.wrapper-midia-conteudo {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(11, 30, 54, 0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box-preview-foto {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f1f5f9;
    border: 1px dashed #cbd5e1;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-preview-cronograma {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-download-cronograma {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #0d4b81;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(13, 75, 129, 0.15);
}

.btn-download-cronograma:hover {
    background-color: #f7be33;
    color: #0b1e36;
    box-shadow: 0 6px 16px rgba(247, 190, 51, 0.3);
    transform: translateY(-2px);
}

/* Container de Caixas Clássico/Originais */
.container-caixas {
    max-width: 1150px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 15px;
}

.caixa-flutuante {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #0d4b81;
    box-shadow: 0 10px 25px rgba(13, 75, 129, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caixa-flutuante:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(13, 75, 129, 0.25);
}

.caixa-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
    border-bottom: 2px solid #0d4b81;
}

.caixa-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.caixa-flutuante:hover .caixa-imagem img {
    transform: scale(1.04);
}

.caixa-conteudo {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.caixa-conteudo h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0d4b81;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.caixa-conteudo p {
    color: #4a5a6a;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-caixa {
    font-family: 'Montserrat', sans-serif;
    display: block;
    text-align: center;
    background-color: #0d4b81;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #0d4b81;
    margin-top: auto;
    transition: all 0.25s ease;
}

.btn-caixa:hover {
    background-color: transparent;
    color: #0d4b81;
}

/* Grade de Cards de Modelos Alternativos */
.grade-cards-originais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.card-modelo-original {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(11, 30, 54, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modelo-original:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(11, 30, 54, 0.12);
}

.topo-imagem-card {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.img-banner-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corpo-texto-card {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-modelo-original h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #0d4b81;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.card-modelo-original p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.rodape-btn-card {
    padding: 0 24px 24px 24px;
}

.btn-visualizar-download {
    display: block;
    width: 100%;
    background-color: #0d4b81;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-visualizar-download:hover {
    background-color: #0b2545;
}

/* Editais */
.secao-normas {
    width: 100%;
    padding: 100px 5% 120px 5%;
    background-color: #fbc206;
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
        linear-gradient(120deg, transparent 50%, rgba(230, 142, 4, 0.25) 50%),
        linear-gradient(60deg, rgba(230, 142, 4, 0.15) 50%, transparent 50%),
        linear-gradient(120deg, transparent 40%, rgba(245, 171, 11, 0.2) 40%),
        linear-gradient(60deg, rgba(245, 171, 11, 0.25) 60%, transparent 60%);
    background-size: 100% 100%, 320px 100%, 320px 100%, 480px 100%, 480px 100%;
    background-position: 0 0, 0 0, 0 0, 80px 0, 80px 0;
    background-repeat: repeat-x;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.normas-subtitulo {
    font-size: 18px;
    color: #0d4b81;
    text-align: center;
    max-width: 650px;
    margin: -15px auto 45px auto;
    line-height: 1.6;
}

.container-normas-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1150px;
    flex-wrap: nowrap;
    margin-bottom: 50px;
}

.card-norma {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    width: 50%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.04);
    border: 1px solid #0d4b81;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card-norma:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 37, 69, 0.08);
    border-color: rgba(247, 190, 51, 0.4);
}

.norma-icone-wrapper {
    width: 55px;
    height: 55px;
    background-color: rgba(11, 37, 69, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.card-norma:hover .norma-icone-wrapper {
    background-color: #f7be33;
}

.norma-svg-icon {
    width: 24px;
    height: 24px;
    fill: #0b2545;
}

.card-norma h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0b2545;
    margin-bottom: 10px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-norma p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-card-download {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: rgba(11, 37, 69, 0.05);
    color: #0b2545;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.card-norma:hover .btn-card-download {
    background-color: #0b2545;
    color: #ffffff;
}

.btn-card-download:hover {
    background-color: #133965 !important;
}

/* Banner Edital Horizontal */
.bloco-edital-destaque {
    width: 100%;
    max-width: 1190px;
    background: linear-gradient(135deg, #0b2545 0%, #133965 100%);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.15);
    gap: 30px;
}

.edital-texto-info {
    text-align: left;
}

.bloco-edital-destaque h3 {
    font-family: 'Montserrat', sans-serif;
    color: #f7be33;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bloco-edital-destaque p {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
    max-width: 750px;
}

.btn-edital-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: #f7be33;
    color: #0b2545;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-edital-download:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-svg-download {
    width: 18px;
    height: 18px;
    fill: #0b2545;
}

/* Inscrições */
.secao-inscricoes {
    width: 100%;
    padding: 85px 5% 100px 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitulo-inscricoes {
    font-size: 18px;
    color: #4a5a6a;
    text-align: center;
    max-width: 700px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.container-inscricoes {
    max-width: 1150px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.card-inscricao-info {
    background: #fdfdfd;
    border: 2px solid #e1e8ed;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-inscricao-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0d4b81;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.linha-info-lote {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 20px 0;    
    border-bottom: 1px dashed #ced8e0;
    gap: 15px;          
}

.detalhes-lote {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;            
}

.badge-lote {
    background-color: #0d4b81;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    white-space: nowrap; 
    display: inline-block;
}

.detalhes-lote p {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.preco-lote {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0d4b81;
    text-align: right;
    white-space: nowrap; 
}

.alerta-prazos {
    background-color: #fff9e6;
    border-left: 4px solid #f7be33;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.alerta-prazos ul { list-style: none; }

.alerta-prazos li {
    font-size: 14.5px;
    color: #5c6b73;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.alerta-prazos li::before {
    content: "•";
    color: #f7be33;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-inscricao-acoes {
    background: linear-gradient(145deg, #0d4b81 0%, #0b1e36 100%);
    border-radius: 16px;
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-shadow: 0 12px 35px rgba(11, 30, 54, 0.15);
}

.bloco-acao-card {
    text-align: center;
    padding: 10px 0;
}

.icone-acao { color: #ffe81d; margin-bottom: 12px; }
.icone-acao.acao-secundaria { color: #ffffff; }

.bloco-acao-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bloco-acao-card p {
    font-size: 14px;
    color: #ced8e0;
    margin-bottom: 18px;
    line-height: 1.5;
}

.divisor-interno-acoes {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    width: 80%;
    margin: 20px auto;
}

.btn-inscricao-principal, .btn-inscricao-secundario {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
    width: 100%;
    max-width: 280px;
}

.btn-inscricao-principal {
    background-color: #ffe81d;
    color: #0b1e36;
    padding: 14px 30px;
    box-shadow: 0 4px 15px rgba(255, 232, 29, 0.3);
}

.btn-inscricao-principal:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-inscricao-secundario {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-inscricao-secundario:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Downloads  */
.secao-downloads {
    width: 100%;
    padding: 90px 5% 100px 5%;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitulo-downloads {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #4a5a6a;
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.container-downloads-grid {
    max-width: 1150px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    align-items: start;
}

.coluna-downloads {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.titulo-categoria-download {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #0b1e36;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 14px;
}

.titulo-categoria-download svg { color: #0d4b81; }
.lista-links-downloads { display: flex; flex-direction: column; gap: 14px; }

.item-link-download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.item-link-download:hover {
    background-color: #ffffff;
    border-color: #0d4b81;
    box-shadow: 0 5px 15px rgba(13, 75, 129, 0.08);
    transform: translateX(3px);
}

.item-link-download.destaque-pdf {
    background-color: rgba(247, 190, 51, 0.04);
    border-left: 4px solid #f7be33;
}

.info-download-texto { display: flex; flex-direction: column; gap: 4px; }

.info-download-texto strong {
    font-family: 'Open Sans', sans-serif;
    font-size: 14.5px;
    color: #2d3748;
    font-weight: 600;
    transition: color 0.2s ease;
}

.item-link-download:hover .info-download-texto strong { color: #0d4b81; }
.info-download-texto span { font-size: 12px; color: #718096; }

.btn-item-download {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #0d4b81;
    background-color: #ffffff;
    border: 1px solid #cbd5e0;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.item-link-download:hover .btn-item-download {
    color: #ffffff;
    background-color: #0d4b81;
    border-color: #0d4b81;
}

/* Patrocinadores/Parceiros */
.secao-parceiros {
    padding: 70px 5%;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #fbc206;
    background-image: 
        linear-gradient(to right, rgba(251, 194, 6, 0) 0%, rgba(251, 194, 6, 0.4) 100%),
        linear-gradient(115deg, transparent 50%, rgba(243, 156, 18, 0.3) 50%),
        linear-gradient(65deg, rgba(243, 156, 18, 0.2) 50%, transparent 50%),
        linear-gradient(115deg, transparent 40%, rgba(245, 171, 11, 0.25) 40%),
        linear-gradient(65deg, rgba(245, 171, 11, 0.35) 60%, transparent 60%);
    background-size: 100% 100%, 280px 100%, 280px 100%, 420px 100%, 420px 100%;
    background-position: center top;
    background-repeat: repeat-x;
}

.container-parceiros {
    max-width: 1150px;
    margin: 0 auto;
}

.titulo-parceiros {
    font-size: 30px;
    font-weight: 800;
    color: #0b2545;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.linha-decorativa-parceiros {
    width: 60px;
    height: 4px;
    background-color: #0d4b81;
    margin: 0 auto 15px auto;
    border-radius: 2px;
}

.subtitulo-parceiros {
    font-size: 15px;
    color: #0b2545;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
    opacity: 0.9;
}

.grid-parceiros-estatico {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.card-parceiro-item {
    background: #ffffff;
    width: 240px;
    height: 110px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    box-shadow: 0 8px 20px rgba(11, 30, 54, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.card-parceiro-item:hover {
    transform: translateY(-10px); 
    box-shadow: 0 16px 30px rgba(11, 30, 54, 0.16); 
}

.logo-parceiro {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(20%); 
    transition: filter 0.3s ease;
}

.card-parceiro-item:hover .logo-parceiro {
    filter: grayscale(0%);
}

.nome-parceiro-texto {
    font-weight: 700;
    color: #0b2545;
    font-size: 15px;
    text-align: center;
}

.bloco-titulos-parceiros { text-align: center; margin-bottom: 45px; }

.titulo-parceiros {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0d4b81;
    text-transform: uppercase;
}

.linha-decorativa-parceiros {
    width: 60px;
    height: 4px;
    background-color: #0d4b81;
    margin: 12px auto 18px auto;
    border-radius: 2px;
}

.subtitulo-parceiros {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #1a2e40;
    max-width: 600px;
    line-height: 1.5;
}

.wrapper-carrossel-parceiros {
    width: 100%;
    max-width: 1150px;
    overflow: hidden;
    position: relative;
}

.wrapper-carrossel-parceiros::before,
.wrapper-carrossel-parceiros::after {
    content: "";
    height: 100%;
    width: 100px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.wrapper-carrossel-parceiros::before { left: 0; background: linear-gradient(to right, #f7be33, rgba(247, 190, 51, 0)); }
.wrapper-carrossel-parceiros::after { right: 0; background: linear-gradient(to left, #fbe192, rgba(251, 225, 146, 0)); }

.carrossel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: rolagemAutomatica 25s linear infinite;
}

.carrossel-track:hover { animation-play-state: paused; }

.card-parceiro {
    width: 240px;
    height: 130px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(11, 30, 54, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-parceiro:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11, 30, 54, 0.12);
}

.card-parceiro img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Rodapé */
.rodape-container {
    width: 100%;
    background-color: #0b1e36;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    padding: 70px 5% 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rodape-conteudo {
    max-width: 1150px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.rodape-coluna { display: flex; flex-direction: column; gap: 18px; }

.rodape-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f7be33;
    position: relative;
    padding-bottom: 8px;
}

.rodape-titulo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: #f7be33;
}

.rodape-institucional { font-size: 14px; line-height: 1.5; font-weight: 600; color: #e2e8f0; }
.rodape-detalhes, .rodape-links { display: flex; flex-direction: column; }
.rodape-detalhes { gap: 14px; }
.rodape-links { list-style: none; padding: 0; margin: 0; gap: 12px; }

.rodape-detalhes p {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rodape-detalhes svg { color: #f7be33; margin-top: 3px; flex-shrink: 0; }
.link-email, .rodape-links a { color: #cbd5e0; text-decoration: none; transition: all 0.2s ease; }
.link-email:hover { color: #ffffff; text-decoration: underline; }
.rodape-links a { font-size: 13.5px; display: inline-block; }
.rodape-links a:hover { color: #f7be33; transform: translateX(4px); }
.rodape-texto-midia { font-size: 13px; line-height: 1.5; color: #cbd5e0; }

/* Redes Sociais */
.rodape-redes-sociais { display: flex; gap: 14px; margin-top: 5px; }

.icone-rede {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icone-rede:hover { transform: translateY(-3px); }
.icone-rede svg { transition: transform 0.3s ease; }
.icone-rede:hover svg { transform: scale(1.1); }

.icone-rede.facebook:hover { background-color: #1877f2; border-color: #1877f2; box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4); }
.icone-rede.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4); }
.icone-rede.website:hover { background-color: #00a86b; border-color: #00a86b; box-shadow: 0 4px 15px rgba(0, 168, 107, 0.4); }

.rodape-inferior {
    width: 100%;
    max-width: 1150px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding: 24px 0;
    text-align: center;
}

.rodape-inferior p { font-size: 12px; color: #a0aec0; letter-spacing: 0.3px; }

/* Cards */
.card-padrao, .coluna-downloads, .card-normas, .card-programa {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(11, 30, 54, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-padrao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 30, 54, 0.08);
}

.btn-voltar-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background-color: #0d4b81;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(11, 30, 54, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.btn-voltar-topo:hover {
    background-color: #f7be33;
    color: #0b1e36;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(247, 190, 51, 0.4);
}

.btn-voltar-topo.mostrar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Media Queries */

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Trava a tela para impedir rolagem com o menu aberto */
body.menu-aberto {
    overflow: hidden !important;
}

@media (max-width: 1220px) {
    .container-normas-cards { max-width: 100%; }
    .card-norma { width: 100%; }
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

@media (max-width: 1024px) {
    .cabecalho-dinamico, .cabecalho-dinamico.fixado-com-fundo {
        flex-direction: row !important; 
        justify-content: space-between !important;
        align-items: center !important; 
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 85px !important; 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
        z-index: 1000 !important;
        background-color: #fbc206 !important;
        background-image: 
            linear-gradient(to right, rgba(251, 194, 6, 0) 0%, rgba(251, 194, 6, 0.4) 100%),
            linear-gradient(115deg, transparent 50%, rgba(243, 156, 18, 0.3) 50%),
            linear-gradient(65deg, rgba(243, 156, 18, 0.2) 50%, transparent 50%),
            linear-gradient(115deg, transparent 40%, rgba(245, 171, 11, 0.25) 40%),
            linear-gradient(65deg, rgba(245, 171, 11, 0.35) 60%, transparent 60%) !important;
        background-size: 100% 100%, 140px 95px, 140px 95px, 210px 95px, 210px 95px !important;
        background-position: 0 0, 0 0, 0 0, 40px 0, 40px 0 !important;
        background-repeat: repeat-x !important;
        padding: 12px 20px !important; 
        box-sizing: border-box !important;
    }

    .logo-container {
        display: flex !important;
        align-items: center !important;
        max-width: 190px !important; 
        width: 45% !important; 
    }

    .logo-img {
        width: 100% !important;
        height: auto !important;
        max-height: 60px !important; 
        object-fit: contain !important;
    }

    .btn-hamburguer {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important; 
        padding: 8px !important;
        z-index: 1001 !important;
        flex-shrink: 0 !important; 
        cursor: pointer;
    }
    
    .btn-hamburguer .linha { 
        background-color: #0b2545 !important; 
    }

    .menu-links {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; 
        width: 280px !important; 
        max-width: 80% !important; 
        height: 100vh !important;
        padding: 20px 24px 30px 24px !important; 
        gap: 15px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        transition: right 0.4s ease !important; 
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
        z-index: 999 !important;
        background-color: #f7be33 !important; 
        background-image: 
            linear-gradient(to bottom, transparent 40%, rgba(230, 126, 34, 0.08) 100%),
            linear-gradient(120deg, transparent 50%, rgba(243, 156, 18, 0.16) 50%),
            linear-gradient(60deg, rgba(243, 156, 18, 0.10) 50%, transparent 50%),
            linear-gradient(120deg, transparent 40%, rgba(211, 84, 0, 0.12) 40%),
            linear-gradient(60deg, rgba(211, 84, 0, 0.14) 60%, transparent 60%) !important;
        background-size: 100% 100%, 260px 100%, 260px 100%, 400px 100%, 400px 100% !important;
        background-position: center top !important;
        background-repeat: repeat-x !important;
    }

    .menu-links.ativo { right: 0 !important; }

    .menu-links li.container-fechar {
        display: flex !important;
        justify-content: flex-end !important;
        width: 100% !important;
        margin-bottom: 5px !important;
    }

    .fechar-menu {
        display: inline-block !important;
        background: transparent !important;
        border: none !important;
        color: #0b2545 !important; 
        font-size: 45px !important; 
        line-height: 0.7 !important;
        cursor: pointer !important;
        font-weight: bold !important;
        padding: 8px !important;
        transition: transform 0.2s ease !important;
    }

    .fechar-menu:hover {
        transform: scale(1.15) !important;
        color: #0d4b81 !important;
    }

    .menu-links li { width: 100% !important; text-align: center !important; }

    .menu-links li a, .menu-links a {
        display: block !important;
        width: 100% !important;
        font-size: 16px !important; 
        padding: 14px 0 !important;
        border-radius: 50px !important; 
        font-weight: 800 !important; 
        border: 1px solid rgba(11, 37, 69, 0.15) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    }
    
    .menu-links li a:hover {
        background-color: #0b2545 !important; 
        color: #ffc400 !important;                  
    }

    .menu-links li a:not(.btn-menu-destaque) {
        background-color: #0d4b81 !important;
        color: #ffe70a !important;
    }

    .menu-links li a.btn-menu-destaque {
        background-color: #fbc206 !important; 
        color: #0d4b81 !important;                  
        border: 1px solid rgba(13, 75, 129, 0.2) !important;
    }
    
    .menu-links li a.btn-menu-destaque:hover {
        background-color: #0d4b81 !important; 
        color: #ffffff !important;                  
    }

    .secao-banner-topo {
        height: auto !important;     
        min-height: 0 !important;    
        margin-top: 85px !important; 
    }

    .foto-fundo-hero {
        height: auto !important;     
        object-fit: contain !important; 
    }
    
    .secao-banner-topo .wrapper-bolhas-decorativas { display: none !important; }
    .container-caixas { grid-template-columns: repeat(2, 1fr) !important; }
    .container-normas-cards { flex-wrap: wrap; justify-content: center; }
    .card-norma { width: 46%; }
    .container-inscricoes { grid-template-columns: 1fr; gap: 30px; }
    .card-boas-vindas { padding: 30px 20px; }
    .welcome-title { font-size: 24px; }
    .welcome-text { font-size: 15px; text-align: left; line-height: 1.6; }
    .card-inscricao-info { padding: 25px; }
    .linha-info-lote { flex-direction: column; align-items: flex-start; gap: 8px; }
    .preco-lote { align-self: flex-end; }
}

@media (max-width: 992px) {
    .container-downloads-grid, .grade-cards-originais { 
        grid-template-columns: 1fr !important; 
        gap: 25px !important;
        width: 100% !important; 
    }
    .rodape-conteudo { 
        grid-template-columns: 1fr 1fr; gap: 40px; 
    }

    .coluna-downloads {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .painel-programacao.ativo { 
        flex-direction: column;
         gap: 25px; 
    }
    .coluna-cards-programacao, .coluna-midia-programacao { 
        width: 100%; 
        flex: none; 
    }
    .coluna-midia-programacao { 
        position: static; 
    }
}

@media (max-width: 900px) {
    .bloco-edital-destaque { flex-direction: column; text-align: center; padding: 30px 25px; }
    .edital-texto-info { text-align: center; }
    .btn-edital-download { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {


    .grid-parceiros-estatico {
        gap: 15px;
    }

    .card-parceiro-item {
        width: calc(50% - 10px); 
        max-width: 220px;
        height: 95px;
    }

    .social-sidebar { display: none !important; }

    .secao-downloads, .secao-parceiros { 
        padding: 50px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .titulo-parceiros { 
        font-size: 26px; 
    }

    .carrossel-track { 
        animation-duration: 18s;
    }

    .abas-dias { 
        gap: 10px; 
    }

    .btn-dia { 
        min-width: calc(50% - 8px); padding: 10px; 
    }

    .card-cronograma { 
        flex-direction: column; 
    }

    .coluna-downloads .item-download, 
    .card-download {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 18px !important;
    }

    btn-download-item, 
    .coluna-downloads a, 
    .coluna-downloads span {
        align-self: flex-start !important;
    }

    .horario-evento {
        min-width: 100%;
        padding: 12px 12px 12px 24px;
        border-right: none;
        border-bottom: 3px solid #f7be33;
        justify-content: flex-start;
    }
    .detalhes-evento { 
        padding: 20px; 
    }

    .grade-cards-originais { 
        grid-template-columns: 1fr !important; 
        gap: 20px;    
    }
}

@media (max-width: 650px) {
    .card-norma { width: 100% !important; max-width: 450px; }
}

@media (max-width: 600px) {
    .container-caixas { grid-template-columns: 1fr !important; max-width: 450px; }
}

@media (max-width: 576px) {
    .rodape-container { padding: 50px 6% 0 6%; }
    .rodape-conteudo { grid-template-columns: 1fr; gap: 35px; }
    .rodape-inferior { margin-top: 40px; }
}

@media (max-width: 480px) {
    .btn-dia { min-width: 100% !important; } 
    .card-boas-vindas { padding: 20px 15px !important; }
    .bloco-edital-destaque { padding: 20px 15px !important; }
    .card-parceiro-item {
        width: 100%; 
        max-width: 280px;
        height: 100px;
    }
    .btn-voltar-topo {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}