/* Estilo inicial do cabeçalho */

body {
    padding-top: 96px;
    /* Ajuste conforme a altura do menu fixo */
}

/* Ajuste global para as seções */
section {
    margin: 0;
    /* Remove margens externas */
    padding: 5rem 1rem;
    /* Espaçamento interno consistente */
    scroll-margin-top: 100px;
    /* Compensa a altura do menu fixo */
}

/* Estilo da logo */
#logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Negrito para destaque */
    font-size: 32px;
    max-width: 550px; /* Tamanho inicial da logo */
    color: #006400; /* Fonte verde escuro */
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#logo a {
    text-decoration: none;
    /* Remove sublinhado */
    display: inline-block;
    /* Garante que o link envolva a imagem */
}

#header.scrolled #logo {
    font-size: 20px;
    max-width: 300px; /* Tamanho reduzido da logo */
    margin-right: auto;
}

/* Estilo dos links do menu */
.navbar-dark .nav-link {
    font-family: 'Oswald', sans-serif;
    /* Fonte Oswald */
    font-weight: 400;
    /* Peso regular */
    color: #006400;
    /* Fonte verde escuro */
    text-transform: uppercase;
    /* Texto em maiúsculo */
    transition: all 0.3s ease-in-out;
    /* Suaviza a transição */
    padding: 0.5rem 1rem;
    /* Espaçamento interno para o efeito de fundo */
    border-radius: 5px;
    /* Bordas arredondadas para o fundo */
}

.navbar-dark .nav-link:hover {
    background-color: #006400;
    /* Fundo verde escuro */
    color: #ffffff !important;
    /* Texto branco */
    transition: all 0.3s ease-in-out;
    /* Suaviza a transição */
}

/* Ajuste para o botão do menu em dispositivos móveis */
.navbar-toggler {
    border: none;
    background-color: #006400;
    /* Fundo verde escuro */
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    /* Ícone branco */
}

.navbar-collapse {
    background-color: #ffffff;
    /* Fundo branco para o menu colapsado */
    /* padding: 1rem; */
    /* border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* Sombra */
}

/* Ajuste para o cabeçalho fixo */
#header {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    /* Fundo branco */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
    transition: all 0.3s ease-in-out;
}

#header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#header.scrolled .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

#logo {
    font-size: 32px;
    max-width: 550px;
    /* Tamanho inicial da logo */
    color: #006400;
    /* Fonte verde escuro */
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#header.scrolled #logo {
    font-size: 20px;
    max-width: 300px;
    /* Tamanho reduzido da logo */
    margin-right: auto;
}

.navbar {
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#header.scrolled .navbar-nav {
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar-dark .nav-link {
    color: #006400;
    /* Fonte verde escuro */
    transition: color 0.5s ease-in-out;
}

.navbar-dark .nav-link:hover {
    color: #004d00;
    /* Verde mais escuro ao passar o mouse */
}



/* Estilo do bloco "Apresentação" */
#apresentacao {
    scroll-margin-top: 100px;
    /* Compensa a altura do menu fixo ao rolar */
    background-color: #f8f9fa;
    /* Fundo claro */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#apresentacao h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #006400;
    /* Verde escuro */
}

#apresentacao p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    /* Cinza escuro */
}

/* Estilo para as imagens das comissões */
#apresentacao img {
    width: 150px;
    /* Largura fixa */
    height: 150px;
    /* Altura fixa */
    object-fit: cover;
    /* Garante que a imagem preencha o espaço sem distorção */
    border-radius: 50%;
    /* Imagens circulares */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
    transition: transform 0.3s ease-in-out;
    /* Transição suave */
}

#apresentacao img:hover {
    transform: scale(1.05);
    /* Aumenta levemente ao passar o mouse */
}

/* Estilo do separador */
.separador {
    border: 0;
    height: 2px;
    background-color: #006400;
    /* Verde escuro */
    width: 50%;
    /* Largura do separador */
}

/* ...existing code... */
#full-banner {
    margin-top: 80px;
    min-height: 500px;
    height: 80vh;
    background: #075b49;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0;
}

@media (max-width: 767.98px) {
    #full-banner {
        margin-top: 58px;
        height: 10vh !important;
        min-height: 300px;
        background: #075b49;
    }
    #apresentacao {
        margin-top: 0px;
    }
}

/* ...existing code... */
/* Adicionar margem superior ao primeiro bloco (banner) */


#full-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    /* Sobreposição escura */
    z-index: 1;
}

#full-banner .container {
    position: relative;
    z-index: 2;
    /* Garante que o texto fique acima da sobreposição */
}



/* Estilo do bloco de Palestrantes */
#palestrantes {
    background: linear-gradient(135deg, #f0f9f4, #e8f5e9);
    /* Degradê em tons claros */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#palestrantes h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #006400;
    /* Verde escuro */
}

#palestrantes img {
    width: 150px;
    /* Largura fixa para as fotos */
    height: 150px;
    /* Altura fixa para as fotos */
    object-fit: cover;
    /* Garante que a imagem preencha o espaço */
    border: 4px solid #a8d5ba;
    /* Borda verde suave */
    border-radius: 50%;
    /* Imagem redonda */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#palestrantes h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #333;
    /* Cinza escuro */
    margin-top: 1rem;
}

#palestrantes p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    /* Cinza claro */
}

/* Estilo do bloco de Programação */
#programacao {
    background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
    /* Degradê azul claro para verde claro */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#programacao h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #006400;
    /* Verde escuro */
}

#programacao p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    /* Cinza escuro */
}

#programacao ul {
    list-style-type: none;
    /* Remove marcadores */
    padding-left: 0;
}

#programacao ul li {
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    /* Cinza escuro */
}

#programacao a.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #ffffff;
    /* Texto branco */
    background-color: #006400;
    /* Verde escuro */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#programacao a.btn:hover {
    background-color: #004d00;
    /* Verde mais escuro ao passar o mouse */
    text-decoration: none;
    /* Remove sublinhado */
}

/* Estilo do bloco de Temas Livres */
#temas-livres {
    background-color: #343a40;
    /* Fundo escuro */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#temas-livres h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #ffffff;
    /* Texto branco */
}

#temas-livres p,
#temas-livres ul {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #dcdcdc;
    /* Cinza claro */
}

#temas-livres ul {
    list-style-type: disc;
    /* Marcadores padrão */
    padding-left: 1.5rem;
    /* Espaçamento à esquerda */
}

#temas-livres ul li {
    margin-bottom: 0.8rem;
    /* Espaçamento entre itens */
}

#temas-livres a.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #343a40;
    /* Texto escuro */
    background-color: #ffffff;
    /* Fundo branco */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#temas-livres a.btn:hover {
    background-color: #e9ecef;
    /* Fundo mais claro ao passar o mouse */
    text-decoration: none;
    /* Remove sublinhado */
}

/* Estilo do bloco de Inscrições */
#inscricoes {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    /* Degradê claro */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#inscricoes h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #006400;
    /* Verde escuro */
}

#inscricoes table {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    /* Cinza escuro */
}

#inscricoes table th {
    background-color: #d4edda;
    /* Verde claro */
    color: #006400;
    /* Verde escuro */
    font-weight: 600;
    /* Negrito */
}

#inscricoes table td {
    vertical-align: middle;
}

#inscricoes button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #ffffff;
    /* Texto branco */
    background-color: #006400;
    /* Verde escuro */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#inscricoes button:hover {
    background-color: #004d00;
    /* Verde mais escuro ao passar o mouse */
}

#inscricoes a.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #ffffff;
    /* Texto branco */
    background-color: #006400;
    /* Verde escuro */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#inscricoes a.btn:hover {
    background-color: #004d00;
    /* Verde mais escuro ao passar o mouse */
    text-decoration: none;
    /* Remove sublinhado */
}

/* Estilo do botão para Mostrar/Regras */
#toggle-regras {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #006400;
    /* Verde escuro */
    background-color: transparent;
    /* Fundo transparente */
    border: 2px solid #006400;
    /* Borda verde escuro */
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

#toggle-regras:hover {
    background-color: #006400;
    /* Fundo verde escuro ao passar o mouse */
    color: #ffffff;
    /* Texto branco */
    border-color: #004d00;
    /* Borda mais escura */
}

#local {
    background: linear-gradient(135deg, rgba(162, 217, 255, 0.6), rgba(212, 241, 249, 0.6)),
        url('assets/wave-texture.jpg');
    /* Degradê azul com textura */
    background-size: cover;
    /* Faz a textura preencher o bloco */
    background-blend-mode: overlay;
    /* Combina o degradê com a textura */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
    color: #ffffff;
    /* Texto branco */
    opacity: 0.95;
    /* Torna o bloco um pouco opaco */
}

#local h2,
#local h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #004d80;
    /* Azul escuro */
}

#local p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #00334d;
    /* Azul mais escuro */
}

#local img {
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}
/* Estilo do botão para o link do mapa */
#local a.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #ffffff;
    /* Texto branco */
    background-color: #006400;
    /* Verde escuro */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    /* Remove sublinhado */
}

#local a.btn:hover {
    background-color: #004d00;
    /* Verde mais escuro ao passar o mouse */
    text-decoration: none;
    /* Remove sublinhado */
}

/* Estilo do bloco Fale Conosco */
#fale-conosco {
    background: linear-gradient(135deg, #f0f4f8, #d9e8f5);
    /* Degradê suave em tons de cinza e azul claro */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#fale-conosco h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #004085;
    /* Azul escuro */
}

#fale-conosco h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #004085;
    /* Azul escuro */
}

#fale-conosco p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    /* Cinza escuro */
}

#fale-conosco .form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* Seminegrito */
    color: #333;
    /* Cinza escuro */
}

#fale-conosco .form-control {
    border-radius: 5px;
    /* Bordas arredondadas */
    border: 1px solid #ced4da;
    /* Borda cinza clara */
    box-shadow: none;
    /* Remove sombra padrão */
}

#fale-conosco .form-control:focus {
    border-color: #004085;
    /* Borda azul escuro ao focar */
    box-shadow: 0 0 5px rgba(0, 64, 133, 0.25);
    /* Sombra azul clara */
}

#fale-conosco button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #ffffff;
    /* Texto branco */
    background-color: #004085;
    /* Azul escuro */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#fale-conosco button:hover {
    background-color: #002752;
    /* Azul mais escuro ao passar o mouse */
}

/* Estilo do bloco Patrocinadores */
#patrocinadores {
    background: linear-gradient(135deg, #e8f5e9, #f0f9f4);
    /* Degradê verde claro */
    padding: 3rem 1rem;
    /* Espaçamento interno */
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
}

#patrocinadores h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #006400;
    /* Verde escuro */
}

#patrocinadores h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #006400;
    /* Verde escuro */
}

#patrocinadores p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    /* Cinza escuro */
}

#patrocinadores a.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Negrito */
    color: #ffffff;
    /* Texto branco */
    background-color: #006400;
    /* Verde escuro */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    /* Remove sublinhado */
}

#patrocinadores a.btn:hover {
    background-color: #004d00;
    /* Verde mais escuro ao passar o mouse */
    text-decoration: none;
    /* Remove sublinhado */
} 

/* Centralizar as logos no bloco de Logos dos Patrocinadores */
#logos-patrocinadores .row {
    justify-content: center;
    /* Centraliza as colunas no grid */
}

.patrocinador-logo {
    display: block;
    /* Garante que a imagem seja tratada como um bloco */
    margin: 0 auto;
    /* Centraliza horizontalmente */
    /* filter: grayscale(100%); */
    /* Preto e branco */
    transition: filter 0.3s ease-in-out;
    /* Transição suave */
}

.patrocinador-logo:hover {
    filter: grayscale(0%);
    /* Colorido ao passar o mouse */
}

/* Ajustes locais para manter o cabeçalho compacto como no vídeo de referência. */
html {
    scroll-behavior: smooth;
}

body {
    padding-top: 78px;
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

#header .container,
#header.scrolled .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 0.45rem 0;
}

#logo,
#header.scrolled #logo {
    flex: 0 0 auto;
    max-width: 240px;
    margin-right: 1.25rem;
}

#logo img {
    display: block;
    width: 100%;
    height: auto;
}

.navbar {
    flex: 1 1 auto;
    justify-content: flex-end;
    padding: 0;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav,
#header.scrolled .navbar-nav {
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.navbar-dark .nav-link {
    font-size: 0.86rem;
    padding: 0.35rem 0.5rem;
}

#full-banner {
    margin-top: 0;
    height: 640px;
    min-height: 640px;
}

section {
    scroll-margin-top: 88px;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 72px;
    }

    #header .container,
    #header.scrolled .container {
        min-height: 72px;
        padding: 0.45rem 1rem;
    }

    #logo,
    #header.scrolled #logo {
        max-width: 210px;
        margin-right: 0.5rem;
    }

    .navbar {
        flex: 0 0 auto;
    }

    .navbar-collapse {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 0.75rem 1rem 1rem;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav,
    #header.scrolled .navbar-nav {
        align-items: stretch;
        gap: 0.2rem;
    }
}

@media (max-width: 767.98px) {
    #full-banner {
        margin-top: 0;
        height: 300px !important;
        min-height: 300px;
        background: #075b49;
    }
}

/* Modernização visual local */
:root {
    --brand: #00785f;
    --brand-dark: #075b49;
    --sea: #1598a2;
    --coral: #d9644a;
    --ink: #1d2d2a;
    --muted: #63736f;
    --paper: #fbfdfc;
    --soft-green: #eef8f2;
    --soft-sea: #e9f7f8;
    --line: #dce8e3;
    --shadow-soft: 0 10px 28px rgba(13, 80, 67, 0.10);
    --shadow-lift: 0 16px 34px rgba(13, 80, 67, 0.16);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 88px;
    overflow-x: hidden;
}

body {
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0, var(--paper) 520px),
        linear-gradient(90deg, rgba(21, 152, 162, 0.07), rgba(217, 100, 74, 0.04));
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

body::selection {
    background: rgba(21, 152, 162, 0.24);
}

a {
    color: var(--brand);
}

a:hover {
    color: var(--brand-dark);
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--sea), var(--coral));
}

#header {
    border-bottom: 1px solid rgba(220, 232, 227, 0.9);
    box-shadow: 0 8px 24px rgba(18, 54, 49, 0.08);
}

#header.scrolled {
    box-shadow: 0 10px 30px rgba(18, 54, 49, 0.14);
}

#header .container,
#header.scrolled .container {
    max-width: 1320px;
}

#logo,
#header.scrolled #logo {
    max-width: 520px;
}

#logo a {
    display: block;
}

.event-mark {
    width: min(520px, 100%);
    min-height: 70px;
    display: grid;
    grid-template-columns: minmax(176px, 1.02fr) 1px minmax(230px, 1.48fr);
    gap: 0.95rem;
    align-items: center;
    padding: 0;
    border-radius: 0;
    color: var(--brand);
    background: transparent;
    box-shadow: none;
}

.event-mark-sbot strong,
.event-mark-main strong,
.event-mark-main span,
.event-mark-sbot small,
.event-mark-main small {
    display: block;
    letter-spacing: 0;
    line-height: 1.05;
}

.event-mark-sbot strong {
    font-size: 1.55rem;
    font-weight: 800;
}

.event-mark-sbot small {
    margin-top: 0.24rem;
    font-size: 0.45rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-mark-sbot small span {
    display: block;
}

#header .event-mark-sbot small span:not(:last-child) {
    color: #1f1f1f;
}

#header .event-mark-sbot small span:last-child {
    color: var(--brand);
}

.event-mark-divider {
    width: 1px;
    height: 58px;
    background: rgba(7, 91, 73, 0.28);
}

.event-mark-main strong {
    font-size: 1.15rem;
    font-weight: 800;
}

.event-mark-main span {
    margin-top: 0.1rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.event-mark-main small {
    margin-top: 0.25rem;
    color: #47746b;
    font-size: 0.63rem;
    font-weight: 700;
}

#header.scrolled #logo {
    max-width: 360px;
}

#header.scrolled .event-mark {
    width: min(360px, 100%);
    min-height: 54px;
    grid-template-columns: minmax(124px, 0.95fr) 1px minmax(178px, 1.42fr);
    gap: 0.55rem;
}

#header.scrolled .event-mark-sbot strong {
    font-size: 1.1rem;
}

#header.scrolled .event-mark-sbot small {
    font-size: 0.34rem;
}

#header.scrolled .event-mark-main strong {
    font-size: 0.86rem;
}

#header.scrolled .event-mark-main span {
    font-size: 0.78rem;
}

#header.scrolled .event-mark-main small {
    display: none;
}

#header.scrolled .event-mark-divider {
    height: 44px;
}

.navbar-dark .nav-link {
    position: relative;
    color: var(--brand-dark);
    border-radius: 6px;
    letter-spacing: 0;
    line-height: 1.1;
    overflow-wrap: normal;
    white-space: nowrap;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.navbar-collapse {
    min-width: 0;
}

.navbar-nav,
#header.scrolled .navbar-nav {
    flex-wrap: nowrap;
    gap: clamp(0.25rem, 0.5vw, 0.55rem);
}

.navbar-nav .nav-item {
    flex: 0 0 auto;
}

.navbar-toggler {
    background: var(--brand);
}

.navbar-dark .nav-link::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    bottom: 0.2rem;
    left: 0.5rem;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    background: rgba(0, 120, 95, 0.08);
    color: var(--brand-dark) !important;
}

.navbar-dark .nav-link:hover::after,
.navbar-dark .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-dark .nav-link[href="#inscricoes"] {
    background: var(--brand);
    color: #ffffff !important;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.navbar-dark .nav-link[href="#inscricoes"]::after {
    display: none;
}

.navbar-dark .nav-link[href="#inscricoes"]:hover,
.navbar-dark .nav-link[href="#inscricoes"].active {
    background: var(--brand-dark);
    color: #ffffff !important;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    #header .container,
    #header.scrolled .container {
        max-width: 1140px;
    }

    #logo,
    #header.scrolled #logo {
        max-width: 380px;
    }

    .event-mark,
    #header.scrolled .event-mark {
        width: min(380px, 100%);
        min-height: 58px;
        grid-template-columns: minmax(118px, 0.9fr) 1px minmax(190px, 1.42fr);
        gap: 0.6rem;
    }

    .event-mark-sbot strong,
    #header.scrolled .event-mark-sbot strong {
        font-size: 1.18rem;
    }

    .event-mark-sbot small,
    #header.scrolled .event-mark-sbot small {
        font-size: 0.35rem;
    }

    .event-mark-main strong,
    #header.scrolled .event-mark-main strong {
        font-size: 0.92rem;
    }

    .event-mark-main span,
    #header.scrolled .event-mark-main span {
        font-size: 0.84rem;
    }

    .event-mark-main small,
    #header.scrolled .event-mark-main small {
        display: none;
    }

    .navbar-dark .nav-link {
        font-size: 0.74rem;
        padding-right: 0.34rem;
        padding-left: 0.34rem;
    }
}

#full-banner {
    border-bottom: 1px solid var(--line);
    background-position: center center;
}

section {
    padding: 76px 1rem;
}

section > .container {
    max-width: 1120px;
}

#apresentacao,
#palestrantes,
#programacao,
#inscricoes,
#local,
#fale-conosco,
#patrocinadores,
#logos-patrocinadores {
    border-radius: 0;
    box-shadow: none;
}

#apresentacao,
#inscricoes,
#logos-patrocinadores {
    background: #ffffff;
}

#palestrantes,
#patrocinadores {
    background: linear-gradient(135deg, var(--soft-green), #ffffff 58%, rgba(217, 100, 74, 0.06));
}

#programacao,
#fale-conosco {
    background: linear-gradient(135deg, var(--soft-sea), #ffffff 62%);
}

#temas-livres {
    background: linear-gradient(135deg, #123f36, #075b49);
    border-radius: 0;
    box-shadow: none;
}

#local {
    background:
        linear-gradient(135deg, rgba(233, 247, 248, 0.90), rgba(238, 248, 242, 0.86)),
        url('assets/wave-texture.jpg');
    background-size: cover;
    background-position: center;
    color: var(--ink);
}

#apresentacao h2,
#palestrantes h2,
#programacao h2,
#inscricoes h2,
#local h2,
#fale-conosco h2,
#patrocinadores h2,
#logos-patrocinadores h2 {
    color: var(--brand);
    margin-bottom: 1rem !important;
}

#temas-livres h2 {
    color: #ffffff;
    margin-bottom: 1rem !important;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 2.4rem;
    color: var(--muted);
    line-height: 1.75;
}

.section-intro-light {
    color: rgba(255, 255, 255, 0.82);
}

.separador {
    width: min(520px, 64%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    opacity: 1;
}

#apresentacao p,
#programacao p,
#inscricoes p,
#local p,
#fale-conosco p,
#patrocinadores p {
    color: var(--muted);
}

#apresentacao .row > [class*="col-"],
#palestrantes .row > [class*="col-"] {
    margin-bottom: 1.5rem !important;
}

#apresentacao .row > [class*="col-"],
#palestrantes .row > [class*="col-"],
.card,
.table-responsive,
#form-contato,
.sponsor-callout,
#local .row,
.modal-content {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

#apresentacao .row > [class*="col-"],
#palestrantes .row > [class*="col-"] {
    padding: 1.5rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#apresentacao .row > [class*="col-"]:hover,
#palestrantes .row > [class*="col-"]:hover,
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

#apresentacao img,
#palestrantes img {
    width: 132px;
    height: 132px;
    border: 4px solid rgba(21, 152, 162, 0.22);
    box-shadow: none;
}

#palestrantes a,
#apresentacao a {
    font-weight: 600;
}

#programacao .row .row {
    gap: 1rem 0;
}

#programacao .col-md-4 {
    margin-bottom: 1rem;
}

.card {
    overflow: hidden;
    min-height: 150px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card::before {
    content: 'PDF';
    display: block;
    width: fit-content;
    margin: 1.15rem auto 0;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    color: #ffffff;
    background: var(--coral);
    font-size: 0.78rem;
    font-weight: 600;
}

.card-body {
    padding: 1rem 1.1rem 1.35rem;
}

.card-title {
    color: var(--brand-dark);
    font-weight: 600;
}

.card-text {
    margin-bottom: 0;
    color: var(--muted);
}

#temas-livres .col-md-12 {
    max-width: 980px;
    margin: 0 auto;
    column-count: 2;
    column-gap: 3rem;
}

#temas-livres p,
#temas-livres li {
    color: rgba(255, 255, 255, 0.84);
}

#temas-livres ul,
#temas-livres ol {
    break-inside: avoid;
}

#inscricoes .table-responsive {
    overflow: hidden;
}

#inscricoes table {
    margin: 0;
}

#inscricoes table th {
    background: var(--soft-green);
    color: var(--brand-dark);
    border-color: var(--line);
}

#inscricoes table td {
    border-color: var(--line);
    padding: 0.95rem;
}

#inscricoes table tbody tr:nth-child(even) {
    background: rgba(233, 247, 248, 0.42);
}

#toggle-regras {
    border-radius: 8px;
    border-color: var(--brand);
    color: var(--brand);
    background: #ffffff;
}

#toggle-regras:hover,
#toggle-regras[aria-expanded="true"] {
    color: #ffffff;
    background: var(--brand);
}

#regras-inscricao {
    max-width: 980px;
    margin: 1.5rem auto 0;
    padding: 1.5rem;
    border-left: 4px solid var(--sea);
    background: rgba(233, 247, 248, 0.66);
}

#local .row {
    padding: 1.4rem;
}

#local h5,
#local p {
    color: var(--ink) !important;
}

#local img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    border: 0 !important;
    box-shadow: none !important;
    display: block;
}

#form-contato {
    padding: 1.4rem;
}

.form-control {
    border-radius: 8px;
    border-color: var(--line);
    min-height: 48px;
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus {
    border-color: var(--sea);
    box-shadow: 0 0 0 0.2rem rgba(21, 152, 162, 0.18);
}

.contact-list {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
}

.sponsor-callout {
    max-width: 820px;
    margin: 0 auto 1.75rem;
    padding: 1.5rem;
    text-align: center;
}

.sponsor-callout h3 {
    margin-bottom: 0.65rem;
    color: var(--brand-dark);
}

.sponsor-callout p {
    margin-bottom: 0;
    color: var(--muted);
}

#logos-patrocinadores .row {
    gap: 1rem;
    margin-right: 0;
    margin-left: 0;
}

#logos-patrocinadores .row > h2 {
    width: 100%;
    margin: 1.5rem 0 0.75rem !important;
}

#logos-patrocinadores .row > [class*="col-"] {
    width: auto;
    flex: 0 1 170px;
    max-width: 190px;
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 1rem;
    margin-bottom: 0 !important;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(13, 80, 67, 0.08);
}

.patrocinador-logo {
    max-height: 76px;
    width: auto;
    object-fit: contain;
}

#logos-patrocinadores .separador {
    margin-top: 2rem !important;
}

.btn,
button,
.navbar-toggler {
    border-radius: 8px !important;
}

.btn-success,
#programacao a.btn,
#inscricoes a.btn,
#local a.btn,
#patrocinadores a.btn {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
}

.btn-success:hover,
#programacao a.btn:hover,
#inscricoes a.btn:hover,
#local a.btn:hover,
#patrocinadores a.btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #ffffff;
}

.btn-primary,
#fale-conosco button {
    background: var(--sea);
    border-color: var(--sea);
}

.btn-primary:hover,
#fale-conosco button:hover {
    background: #0d7d85;
    border-color: #0d7d85;
}

.site-footer {
    padding: 2.5rem 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-dark), #123f36);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 1120px;
}

.footer-mark {
    width: min(430px, 100%);
    box-shadow: none;
}

.site-footer h2 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.site-footer p {
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
    color: #ffffff;
}

.footer-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-actions .btn-outline-success {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.footer-actions .btn-outline-success:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--brand-dark);
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: var(--brand);
    box-shadow: var(--shadow-lift);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.d-none {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
p,
li,
a {
    overflow-wrap: break-word;
}

@media (max-width: 991.98px) {
    #header .container,
    #header.scrolled .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.75rem;
    }

    #logo,
    #header.scrolled #logo {
        max-width: 390px;
        min-width: 0;
    }

    .event-mark {
        min-height: 58px;
        grid-template-columns: minmax(126px, 0.9fr) 1px minmax(178px, 1.42fr);
        gap: 0.65rem;
        padding: 0.3rem 0.35rem;
    }

    .event-mark-sbot strong {
        font-size: 1.2rem;
    }

    .event-mark-main strong {
        font-size: 0.92rem;
    }

    .event-mark-main span {
        font-size: 0.86rem;
    }

    .event-mark-sbot small,
    .event-mark-main small {
        font-size: 0.46rem;
    }

    .event-mark-divider {
        height: 50px;
    }

    .navbar {
        justify-self: end;
        min-width: 0;
    }

    .navbar-toggler {
        width: 44px;
        height: 40px;
        display: grid;
        place-items: center;
        padding: 0 !important;
    }

    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }

    .navbar-dark .nav-link::after {
        display: none;
    }

    #temas-livres .col-md-12 {
        column-count: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }

    .container,
    section > .container,
    #header .container,
    #header.scrolled .container {
        max-width: 360px;
    }

    section {
        padding: 58px 1rem;
    }

    #logo,
    #header.scrolled #logo {
        max-width: 270px;
    }

    .event-mark {
        min-height: 50px;
        grid-template-columns: minmax(92px, 0.95fr) 1px minmax(126px, 1.35fr);
        gap: 0.35rem;
        padding: 0.25rem 0.3rem;
    }

    .event-mark-sbot strong {
        font-size: 0.95rem;
    }

    .event-mark-sbot small {
        font-size: 0.32rem;
    }

    .event-mark-main strong {
        font-size: 0.76rem;
    }

    .event-mark-main span {
        font-size: 0.7rem;
    }

    .event-mark-divider {
        height: 42px;
    }

    .event-mark-main small {
        display: none;
    }

    #apresentacao h2,
    #palestrantes h2,
    #programacao h2,
    #temas-livres h2,
    #inscricoes h2,
    #local h2,
    #fale-conosco h2,
    #patrocinadores h2,
    #logos-patrocinadores h2 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    #apresentacao img,
    #palestrantes img {
        width: 118px;
        height: 118px;
    }

    #logos-patrocinadores .row > [class*="col-"] {
        flex-basis: calc(50% - 0.75rem);
        min-height: 104px;
    }

    .patrocinador-logo {
        max-height: 64px;
    }
}

/* Banner com imagens rotativas solicitadas */
#full-banner {
    isolation: isolate;
    overflow: hidden;
    background: #075b49;
    border-bottom: 0;
    margin-bottom: 0;
}

#full-banner::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 47, 39, 0.50), rgba(4, 47, 39, 0.18) 48%, rgba(4, 47, 39, 0.10)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
}

.banner-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #075b49;
    overflow: hidden;
}

.banner-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.10), transparent 54%),
        linear-gradient(90deg, rgba(7, 91, 73, 0.22), transparent 22%, transparent 78%, rgba(7, 91, 73, 0.22));
}

.banner-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.25) contrast(1.08) brightness(0.92);
}

#full-banner .container {
    z-index: 2;
}

.banner-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #ffffff;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.42);
}

.banner-content span {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.banner-content h1 {
    margin: 0;
    font-size: 5.4rem;
    line-height: 0.95;
    letter-spacing: 0;
}

.banner-content p {
    margin: 1.5rem 0 1.25rem;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 700;
    text-transform: uppercase;
}

.banner-meta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-meta strong {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(4px);
}

@media (max-width: 767.98px) {
    #full-banner {
        height: 360px !important;
        min-height: 360px;
        background: #075b49;
    }

    .banner-content {
        padding: 1.5rem 0;
    }

    .banner-content span {
        font-size: 1.55rem;
    }

    .banner-content h1 {
        font-size: 2.75rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .banner-meta {
        gap: 0.6rem;
    }

    .banner-meta strong {
        padding: 0.55rem 0.7rem;
        font-size: 0.85rem;
    }
}

/* Header sobre o video principal */
body {
    padding-top: 0;
}

#header,
#header.scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background:
        linear-gradient(180deg, rgba(0, 39, 33, 0.82), rgba(0, 39, 33, 0.42) 64%, rgba(0, 39, 33, 0));
    box-shadow: none;
    border: 0;
}

#header.scrolled {
    background: rgba(0, 71, 59, 0.86);
    backdrop-filter: blur(10px);
}

#header .container,
#header.scrolled .container {
    min-height: 104px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.72rem 1rem;
}

#logo,
#header.scrolled #logo {
    max-width: 520px;
    margin: 0;
}

.event-mark,
#header.scrolled .event-mark {
    color: #ffffff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.event-mark-sbot strong,
#header.scrolled .event-mark-sbot strong,
.event-mark-main strong,
#header.scrolled .event-mark-main strong,
.event-mark-main span,
#header.scrolled .event-mark-main span {
    color: #ffffff;
}

.event-mark-sbot small,
#header.scrolled .event-mark-sbot small,
.event-mark-main small,
#header.scrolled .event-mark-main small,
#header .event-mark-sbot small span:not(:last-child),
#header .event-mark-sbot small span:last-child {
    color: rgba(255, 255, 255, 0.88);
}

.event-mark-divider,
#header.scrolled .event-mark-divider {
    background: rgba(255, 255, 255, 0.38);
}

#header .navbar-collapse,
#header.scrolled .navbar-collapse {
    background: transparent;
}

.navbar-dark .nav-link,
#header.scrolled .navbar-dark .nav-link {
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active,
#header.scrolled .navbar-dark .nav-link:hover,
#header.scrolled .navbar-dark .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16);
}

.navbar-dark .nav-link[href="#inscricoes"],
.navbar-dark .nav-link[href="#inscricoes"]:hover,
.navbar-dark .nav-link[href="#inscricoes"].active {
    background: rgba(0, 120, 95, 0.92);
    color: #ffffff !important;
}

#full-banner {
    margin-top: 0;
    min-height: 100vh;
    height: 100vh;
}

#full-banner::before {
    background:
        linear-gradient(180deg, rgba(0, 33, 28, 0.52), rgba(0, 33, 28, 0.12) 35%, rgba(0, 0, 0, 0.25)),
        linear-gradient(90deg, rgba(4, 47, 39, 0.48), rgba(4, 47, 39, 0.16) 52%, rgba(4, 47, 39, 0.20));
}

@media (max-width: 991.98px) {
    #header .container,
    #header.scrolled .container {
        min-height: 76px;
        align-items: flex-start;
    }

    #header .navbar-collapse.show,
    #header.scrolled .navbar-collapse.show {
        margin-top: 0.8rem;
        padding: 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        background: rgba(0, 61, 51, 0.94);
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 767.98px) {
    #full-banner {
        height: 100vh !important;
        min-height: 620px;
    }
}

/* Fundo especial da Comissão Organizadora */
.committee-showcase {
    position: relative;
    width: 100vw;
    margin: 3rem 0 0 50%;
    padding: clamp(2.4rem, 5vw, 4.8rem) clamp(1rem, 4vw, 3.5rem);
    overflow: hidden;
    transform: translateX(-50%);
    border-radius: 0;
    background:
        radial-gradient(ellipse at 78% 24%, rgba(35, 201, 146, 0.38), transparent 48%),
        linear-gradient(130deg, #17252d 0%, #173535 45%, #006f55 100%);
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 55, 46, 0.26);
}

.committee-showcase::before,
.committee-showcase::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.committee-showcase::before {
    inset: -18% -8% -8% 34%;
    opacity: 0.32;
    background:
        repeating-radial-gradient(ellipse at 68% 42%,
            rgba(255, 255, 255, 0.22) 0 2px,
            transparent 2px 34px);
    filter: blur(0.2px);
}

.committee-showcase::after {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(0, 0, 0, 0.14));
}

.committee-showcase > * {
    position: relative;
    z-index: 1;
}

.committee-showcase > h3,
.committee-showcase > .row {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
}

.committee-showcase h3 {
    color: #ffffff !important;
    margin-bottom: 2.2rem !important;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.committee-showcase .row {
    gap: 1rem 0;
}

#apresentacao .committee-showcase .row > [class*="col-"] {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

#apresentacao .committee-showcase .row > [class*="col-"]:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

#apresentacao .committee-showcase img {
    width: 126px;
    height: 126px;
    border: 3px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.committee-showcase h5 {
    color: #ffffff;
    font-weight: 700;
}

.committee-showcase p,
#apresentacao .committee-showcase p.text-muted {
    color: rgba(255, 255, 255, 0.82) !important;
}

@media (max-width: 767.98px) {
    .committee-showcase {
        width: 100vw;
        margin-top: 2rem;
        padding: 2rem 0.85rem;
    }

    .committee-showcase h3 {
        font-size: 1.85rem;
    }
}

/* Mesmo fundo aplicado aos Palestrantes Confirmados */
#palestrantes {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 78% 24%, rgba(35, 201, 146, 0.34), transparent 48%),
        linear-gradient(130deg, #17252d 0%, #173535 45%, #006f55 100%);
    color: #ffffff;
}

#palestrantes::before,
#palestrantes::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

#palestrantes::before {
    inset: -18% -8% -8% 34%;
    opacity: 0.30;
    background:
        repeating-radial-gradient(ellipse at 68% 42%,
            rgba(255, 255, 255, 0.22) 0 2px,
            transparent 2px 34px);
}

#palestrantes::after {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(0, 0, 0, 0.14));
}

#palestrantes > .container {
    position: relative;
    z-index: 1;
}

#palestrantes h2 {
    color: #ffffff !important;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

#palestrantes .section-intro {
    color: rgba(255, 255, 255, 0.82);
}

#palestrantes .row > [class*="col-"] {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

#palestrantes .row > [class*="col-"]:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

#palestrantes img {
    border: 3px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

#palestrantes h5 {
    color: #ffffff;
    font-weight: 700;
}

#palestrantes p,
#palestrantes p.text-muted {
    color: rgba(255, 255, 255, 0.82) !important;
}

#palestrantes a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Sistema visual verde moderno para as principais seções */
#programacao,
#temas-livres,
#inscricoes,
#local {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

#programacao::before,
#programacao::after,
#temas-livres::before,
#temas-livres::after,
#inscricoes::before,
#inscricoes::after,
#local::before,
#local::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

#programacao > .container,
#temas-livres > .container,
#inscricoes > .container,
#local > .container {
    position: relative;
    z-index: 1;
}

#programacao::before,
#temas-livres::before,
#inscricoes::before,
#local::before {
    inset: -20% -12%;
    opacity: 0.22;
    background:
        repeating-radial-gradient(ellipse at 74% 34%,
            rgba(255, 255, 255, 0.42) 0 2px,
            transparent 2px 34px);
}

#programacao::after,
#temas-livres::after,
#inscricoes::after,
#local::after {
    inset: 0;
    opacity: 0.46;
    background:
        linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.16) 44% 45%, transparent 45% 100%),
        linear-gradient(38deg, transparent 0 62%, rgba(255, 255, 255, 0.10) 62% 63%, transparent 63% 100%);
}

#programacao {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(106, 190, 143, 0.34), transparent 36%),
        radial-gradient(ellipse at 86% 74%, rgba(9, 109, 89, 0.22), transparent 42%),
        linear-gradient(135deg, #eef9f1 0%, #d9f0df 46%, #b8dfc2 100%);
}

#programacao h2,
#programacao .section-intro {
    color: #0b5f4c !important;
}

#programacao .card {
    border: 1px solid rgba(7, 120, 95, 0.18);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(7, 91, 73, 0.13);
    backdrop-filter: blur(8px);
}

#programacao .card::before {
    color: #ffffff;
    background: linear-gradient(135deg, #00785f, #18aa3e);
}

#programacao .card-title {
    color: #064d3d;
}

#temas-livres {
    background:
        radial-gradient(ellipse at 82% 18%, rgba(30, 190, 132, 0.32), transparent 40%),
        radial-gradient(ellipse at 10% 80%, rgba(85, 155, 101, 0.22), transparent 44%),
        linear-gradient(135deg, #10272d 0%, #0d3d37 48%, #087052 100%);
}

#temas-livres .container {
    position: relative;
    z-index: 1;
}

#temas-livres .col-md-12 {
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

#temas-livres h2 {
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

#temas-livres p,
#temas-livres li {
    color: rgba(255, 255, 255, 0.88);
}

#inscricoes {
    background:
        radial-gradient(ellipse at 18% 24%, rgba(0, 120, 95, 0.15), transparent 38%),
        radial-gradient(ellipse at 82% 72%, rgba(24, 170, 62, 0.18), transparent 42%),
        linear-gradient(135deg, #f6fff9 0%, #e1f5e8 48%, #c5e9d1 100%);
}

#inscricoes h2,
#inscricoes .section-intro,
#inscricoes h5 {
    color: #006f55 !important;
}

#inscricoes .table-responsive,
#regras-inscricao,
#inscricoes .mt-4 {
    border: 1px solid rgba(0, 120, 95, 0.16);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 48px rgba(7, 91, 73, 0.12);
    backdrop-filter: blur(8px);
}

#inscricoes .table-success th,
#inscricoes table th {
    color: #ffffff;
    background: linear-gradient(135deg, #006f55, #18aa3e);
}

#inscricoes table tbody tr:nth-child(even) {
    background: rgba(225, 245, 232, 0.68);
}

#toggle-regras {
    border-color: #00785f;
    color: #00785f;
    background: rgba(255, 255, 255, 0.82);
}

#toggle-regras:hover,
#toggle-regras[aria-expanded="true"] {
    color: #ffffff;
    background: #00785f;
}

#local {
    background:
        linear-gradient(135deg, rgba(230, 249, 242, 0.92), rgba(198, 235, 220, 0.88)),
        url('assets/wave-texture.jpg');
    background-size: cover;
    background-position: center;
}

#local::before {
    opacity: 0.18;
    background:
        repeating-radial-gradient(ellipse at 20% 52%,
            rgba(0, 120, 95, 0.38) 0 2px,
            transparent 2px 36px);
}

#local h2,
#local h5 {
    color: #006f55 !important;
}

#local .section-intro,
#local p {
    color: #203d36 !important;
}

#local .row {
    border: 1px solid rgba(0, 120, 95, 0.18);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 54px rgba(7, 91, 73, 0.14);
    backdrop-filter: blur(9px);
}

#local img {
    border: 1px solid rgba(0, 120, 95, 0.18);
    filter: saturate(1.08) contrast(1.04);
}

.committee-organizing {
    background:
        radial-gradient(ellipse at 78% 24%, rgba(35, 201, 146, 0.38), transparent 48%),
        radial-gradient(ellipse at 12% 80%, rgba(49, 134, 96, 0.18), transparent 42%),
        linear-gradient(130deg, #17252d 0%, #173535 45%, #006f55 100%);
}

.committee-scientific {
    background:
        radial-gradient(ellipse at 20% 22%, rgba(118, 211, 144, 0.24), transparent 44%),
        radial-gradient(ellipse at 82% 74%, rgba(0, 184, 134, 0.32), transparent 44%),
        linear-gradient(130deg, #102f31 0%, #0d4a40 50%, #15945d 100%);
}

#palestrantes {
    background:
        radial-gradient(ellipse at 82% 18%, rgba(48, 203, 150, 0.30), transparent 42%),
        radial-gradient(ellipse at 15% 84%, rgba(96, 152, 86, 0.18), transparent 42%),
        linear-gradient(135deg, #13282d 0%, #0f463d 48%, #087052 100%);
}

@media (max-width: 767.98px) {
    #temas-livres .col-md-12 {
        column-count: 1;
    }

    #programacao,
    #temas-livres,
    #inscricoes,
    #local {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Renovacao visual geral do site - preserva o video do banner */
:root {
    --brand: #00785f;
    --brand-dark: #043d34;
    --brand-deep: #092b2f;
    --green-700: #0b6d55;
    --green-500: #1aa36f;
    --green-300: #a6dec2;
    --mint-100: #eefaf3;
    --mint-200: #d7f0e2;
    --aqua: #149ba3;
    --leaf: #77b255;
    --gold: #d5a94d;
    --ink: #162521;
    --muted: #5f706b;
    --paper: #f7fbf8;
    --line: rgba(8, 98, 78, 0.16);
    --shadow-soft: 0 18px 44px rgba(6, 68, 57, 0.10);
    --shadow-lift: 0 24px 60px rgba(6, 68, 57, 0.18);
}

html {
    scroll-padding-top: 96px;
}

body {
    color: var(--ink);
    background:
        linear-gradient(180deg, #f9fffb 0%, #eef8f2 36%, #f7fbf8 100%);
}

main {
    background:
        linear-gradient(180deg, transparent 0 100vh, rgba(247, 251, 248, 0.96) 100vh),
        linear-gradient(135deg, rgba(0, 120, 95, 0.05), rgba(119, 178, 85, 0.05));
}

section {
    position: relative;
    padding: 92px 1rem;
}

section > .container {
    max-width: 1180px;
}

#apresentacao,
#programacao,
#temas-livres,
#inscricoes,
#local,
#fale-conosco,
#patrocinadores,
#logos-patrocinadores {
    overflow: hidden;
}

#apresentacao h2,
#palestrantes h2,
#programacao h2,
#temas-livres h2,
#inscricoes h2,
#local h2,
#fale-conosco h2,
#patrocinadores h2,
#logos-patrocinadores h2,
.committee-showcase h3 {
    margin-bottom: 1rem !important;
    color: var(--brand-dark) !important;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

#palestrantes h2,
#temas-livres h2,
.committee-showcase h3 {
    color: #ffffff !important;
}

.section-intro {
    max-width: 780px;
    margin-bottom: 2.5rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-intro-light {
    color: rgba(255, 255, 255, 0.82);
}

.separador {
    width: min(500px, 70%);
    height: 2px;
    border: 0;
    background:
        linear-gradient(90deg, transparent, rgba(0, 120, 95, 0.20), var(--green-500), rgba(0, 120, 95, 0.20), transparent);
    opacity: 1;
}

.btn,
button,
.navbar-toggler {
    min-height: 42px;
    border-radius: 8px !important;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
button:hover {
    transform: translateY(-1px);
}

.btn-success,
#programacao a.btn,
#inscricoes a.btn,
#local a.btn,
#patrocinadores a.btn {
    border-color: var(--green-700);
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    box-shadow: 0 12px 26px rgba(0, 120, 95, 0.22);
    color: #ffffff;
}

.btn-success:hover,
#programacao a.btn:hover,
#inscricoes a.btn:hover,
#local a.btn:hover,
#patrocinadores a.btn:hover {
    border-color: var(--brand-dark);
    background: linear-gradient(135deg, var(--brand-dark), var(--green-700));
    color: #ffffff;
}

.btn-primary,
#fale-conosco button {
    border-color: var(--aqua);
    background: linear-gradient(135deg, var(--aqua), var(--green-500));
    box-shadow: 0 12px 26px rgba(20, 155, 163, 0.18);
}

.btn-primary:hover,
#fale-conosco button:hover {
    border-color: var(--green-700);
    background: linear-gradient(135deg, var(--green-700), var(--aqua));
}

#apresentacao {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 250, 243, 0.90)),
        repeating-linear-gradient(135deg, rgba(0, 120, 95, 0.04) 0 1px, transparent 1px 24px);
}

#apresentacao > .container > h2,
#apresentacao > .container > .separador:first-of-type,
#apresentacao > .container > p {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

#apresentacao > .container > p {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.15rem;
    border-left: 3px solid rgba(26, 163, 111, 0.24);
    color: #31413d;
    font-size: 1.05rem;
    line-height: 1.85;
}

.committee-showcase {
    width: 100vw;
    margin: 4rem 0 0 50%;
    padding: 76px 1rem;
    transform: translateX(-50%);
    box-shadow: none;
}

.committee-showcase::before {
    inset: -14% -10%;
    opacity: 0.26;
    background:
        repeating-radial-gradient(ellipse at 72% 34%,
            rgba(255, 255, 255, 0.30) 0 2px,
            transparent 2px 30px);
}

.committee-showcase::after {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.10), transparent 42%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24));
}

.committee-organizing {
    background:
        linear-gradient(135deg, rgba(7, 25, 29, 0.98), rgba(8, 76, 63, 0.96) 52%, rgba(0, 120, 95, 0.96)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px);
}

.committee-scientific {
    margin-top: 0;
    background:
        linear-gradient(135deg, rgba(8, 47, 49, 0.98), rgba(8, 100, 78, 0.96) 52%, rgba(24, 147, 89, 0.96)),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 30px);
}

.committee-showcase > h3,
.committee-showcase > .row {
    max-width: 1120px;
}

.committee-showcase > h3 {
    font-size: 2.45rem;
}

.committee-showcase .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto 1rem;
}

#apresentacao .committee-showcase .row > [class*="col-"] {
    width: 100%;
    min-height: 270px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 1.65rem 1rem;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

#apresentacao .committee-showcase .row > [class*="col-"]:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

#apresentacao .committee-showcase img {
    width: 132px;
    height: 132px;
    border: 3px solid rgba(255, 255, 255, 0.50);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.committee-showcase h5 {
    color: #ffffff;
    font-weight: 800;
}

.committee-showcase p,
#apresentacao .committee-showcase p.text-muted {
    color: rgba(255, 255, 255, 0.80) !important;
}

#palestrantes {
    background:
        linear-gradient(135deg, rgba(8, 30, 34, 0.98), rgba(8, 83, 70, 0.98) 50%, rgba(0, 120, 95, 0.96)),
        repeating-radial-gradient(ellipse at 84% 28%, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 34px);
}

#palestrantes::after {
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.10), transparent 38%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.20));
}

#palestrantes .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
    gap: 1rem;
    margin: 0;
}

#palestrantes .row > [class*="col-"] {
    width: 100%;
    min-height: 292px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 1.6rem 1rem;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

#palestrantes .row > [class*="col-"]:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

#palestrantes img {
    width: 132px;
    height: 132px;
    border: 3px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

#palestrantes .speaker-card-empty {
    width: 132px;
    height: 132px;
    border: 2px dashed rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.20) 0 18%, transparent 19%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04), 0 14px 30px rgba(0, 0, 0, 0.18);
}

#palestrantes h5 {
    color: #ffffff;
    font-weight: 800;
}

#palestrantes p,
#palestrantes p.text-muted {
    color: rgba(255, 255, 255, 0.78) !important;
}

#palestrantes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 0.25rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.10);
}

#palestrantes a:hover {
    background: rgba(255, 255, 255, 0.18);
}

#programacao {
    background:
        linear-gradient(135deg, #f3fff7 0%, #dff4e6 48%, #bfe7ce 100%),
        repeating-linear-gradient(135deg, rgba(0, 120, 95, 0.08) 0 1px, transparent 1px 26px);
}

#programacao .container.mt-4 {
    max-width: 100%;
    padding: 0;
}

#programacao .row .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin: 0;
}

#programacao .col-md-4 {
    width: 100%;
    margin: 0;
}

#programacao .card {
    min-height: 178px;
    border: 1px solid rgba(0, 120, 95, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.72));
    box-shadow: 0 18px 44px rgba(7, 91, 73, 0.12);
    backdrop-filter: blur(8px);
}

#programacao .card::before {
    content: 'PDF';
    margin-top: 1.25rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand-dark), var(--green-500));
}

#programacao .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 54px rgba(7, 91, 73, 0.18);
}

#programacao .card-title {
    color: var(--brand-dark);
    font-weight: 900;
}

#temas-livres {
    background:
        linear-gradient(135deg, #0b2529 0%, #0b5146 52%, #07805c 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
}

#temas-livres .col-md-12 {
    max-width: 1060px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.22);
    column-gap: 3.2rem;
    backdrop-filter: blur(8px);
}

#temas-livres p,
#temas-livres li {
    color: rgba(255, 255, 255, 0.86);
}

#temas-livres ul,
#temas-livres ol {
    padding-left: 1.1rem;
}

#temas-livres li::marker {
    color: #9de0b7;
}

#inscricoes {
    background:
        linear-gradient(135deg, #ffffff 0%, #eaf8ef 50%, #d3eedc 100%),
        repeating-linear-gradient(45deg, rgba(0, 120, 95, 0.06) 0 1px, transparent 1px 28px);
}

#inscricoes .table-responsive,
#regras-inscricao {
    border: 1px solid rgba(0, 120, 95, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

#inscricoes .inscricao-cta-wrap {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

#inscricoes .inscricao-cta-wrap .btn {
    min-width: min(100%, 280px);
}

#inscricoes .table-responsive {
    overflow: hidden;
}

#inscricoes table {
    margin: 0;
}

#inscricoes table th {
    padding: 1rem;
    border-color: rgba(255, 255, 255, 0.20);
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-dark), var(--green-700));
}

#inscricoes table td {
    padding: 1rem;
    border-color: rgba(0, 120, 95, 0.12);
    color: #263733;
}

#inscricoes table tbody tr:nth-child(even) {
    background: rgba(215, 240, 226, 0.45);
}

#inscricoes table tbody tr:hover {
    background: rgba(166, 222, 194, 0.28);
}

#toggle-regras {
    border: 1px solid rgba(0, 120, 95, 0.30);
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
}

#toggle-regras:hover,
#toggle-regras[aria-expanded="true"] {
    border-color: var(--green-700);
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
}

#regras-inscricao {
    padding: 1.5rem;
    border-left: 5px solid var(--green-500);
}

#local {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 224, 172, 0.30) 0%, transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.18) 0%, transparent 18%),
        linear-gradient(180deg, rgba(7, 52, 62, 0.96) 0%, rgba(8, 106, 122, 0.88) 28%, rgba(32, 177, 190, 0.76) 58%, rgba(241, 235, 214, 0.90) 100%);
    background-position: center;
    background-size: cover;
}

#local .row {
    padding: 1.5rem;
    border: 1px solid rgba(0, 120, 95, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 72px rgba(6, 52, 67, 0.20);
    backdrop-filter: blur(8px);
}

#local h5 {
    color: var(--brand-dark) !important;
    font-weight: 800;
}

#local img {
    border-radius: 8px;
    filter: saturate(1.10) contrast(1.04);
}

#fale-conosco {
    background:
        linear-gradient(135deg, #eaf8f0 0%, #f8fdf9 48%, #d6efe2 100%),
        repeating-linear-gradient(-45deg, rgba(20, 155, 163, 0.06) 0 1px, transparent 1px 28px);
}

#fale-conosco .row {
    align-items: stretch !important;
}

#form-contato,
#fale-conosco .col-md-6:last-child {
    height: 100%;
    border: 1px solid rgba(0, 120, 95, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

#form-contato {
    padding: 1.5rem;
}

#fale-conosco .col-md-6:last-child {
    padding: 1.6rem;
}

#fale-conosco h5 {
    color: var(--brand-dark) !important;
    font-weight: 900;
}

.form-control {
    min-height: 50px;
    border: 1px solid rgba(0, 120, 95, 0.16);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 0.18rem rgba(26, 163, 111, 0.18);
}

.contact-list li {
    border-color: rgba(0, 120, 95, 0.14);
    color: var(--ink);
}

.contact-list a {
    color: var(--brand-dark);
    font-weight: 700;
}

#patrocinadores {
    background:
        linear-gradient(135deg, #0d302f 0%, #0b5f4c 52%, #168b58 100%);
}

#patrocinadores::before {
    content: '';
    position: absolute;
    inset: -10% -8%;
    pointer-events: none;
    opacity: 0.22;
    background:
        repeating-radial-gradient(ellipse at 75% 35%, rgba(255, 255, 255, 0.30) 0 2px, transparent 2px 34px);
}

#patrocinadores > .container {
    position: relative;
    z-index: 1;
}

#patrocinadores h2,
#patrocinadores h3 {
    color: #ffffff !important;
}

#patrocinadores p {
    color: rgba(255, 255, 255, 0.84);
}

#patrocinadores a {
    color: #ffffff;
    font-weight: 700;
}

.sponsor-callout {
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(8px);
}

.sponsor-callout h3,
.sponsor-callout p {
    color: #ffffff !important;
}

#logos-patrocinadores {
    background:
        linear-gradient(135deg, #f9fffb 0%, #eef8f2 55%, #dff3e7 100%),
        repeating-linear-gradient(135deg, rgba(0, 120, 95, 0.05) 0 1px, transparent 1px 26px);
}

#logos-patrocinadores .row {
    gap: 1rem;
    margin-right: 0;
    margin-left: 0;
}

#logos-patrocinadores .row > h2 {
    width: 100%;
    margin-top: 2rem !important;
}

#logos-patrocinadores .row > [class*="col-"] {
    flex: 0 1 172px;
    max-width: 190px;
    min-height: 122px;
    display: grid;
    place-items: center;
    padding: 1rem;
    margin-bottom: 0 !important;
    border: 1px solid rgba(0, 120, 95, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 14px 32px rgba(7, 91, 73, 0.10);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#logos-patrocinadores .row > [class*="col-"]:hover {
    border-color: rgba(0, 120, 95, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(7, 91, 73, 0.16);
}

.patrocinador-logo {
    max-height: 74px;
    width: auto;
    object-fit: contain;
    filter: saturate(1.04) contrast(1.03);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 3rem 1rem;
    background:
        linear-gradient(135deg, #071e22 0%, #073d36 48%, #0b7055 100%);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: -20% -10%;
    opacity: 0.16;
    pointer-events: none;
    background:
        repeating-radial-gradient(ellipse at 82% 20%, rgba(255, 255, 255, 0.36) 0 2px, transparent 2px 32px);
}

.footer-grid {
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.footer-actions .btn-outline-success {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
}

.footer-actions .btn-outline-success:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--brand-dark);
}

.modal-content {
    border: 1px solid rgba(0, 120, 95, 0.15);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(7, 43, 47, 0.26);
}

.modal-header {
    border-bottom-color: rgba(0, 120, 95, 0.14);
}

.back-to-top {
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand-dark), var(--green-500));
    box-shadow: 0 16px 32px rgba(0, 120, 95, 0.24);
}

@media (max-width: 991.98px) {
    section {
        padding: 74px 1rem;
    }

    .committee-showcase {
        padding: 64px 1rem;
    }

    .committee-showcase .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #temas-livres .col-md-12 {
        column-count: 1;
    }

    #fale-conosco .col-md-6:last-child {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 1rem;
    }

    #apresentacao > .container > p {
        padding-left: 0.85rem;
        font-size: 1rem;
    }

    .committee-showcase {
        padding: 52px 1rem;
    }

    .committee-showcase > h3 {
        font-size: 1.75rem;
    }

    .committee-showcase .row,
    #palestrantes .row,
    #programacao .row .row {
        grid-template-columns: 1fr;
    }

    #apresentacao .committee-showcase .row > [class*="col-"],
    #palestrantes .row > [class*="col-"] {
        min-height: auto;
    }

    #temas-livres .col-md-12,
    #local .row,
    #form-contato,
    #fale-conosco .col-md-6:last-child {
        padding: 1rem;
    }

#logos-patrocinadores .row > [class*="col-"] {
    flex-basis: calc(50% - 0.75rem);
    min-height: 108px;
}
}

/* Linha branca fina entre Comissão Organizadora e Palestrantes */
#apresentacao.py-5 {
    padding-bottom: 10px !important;
}

/* Compatibilidade mobile Android/iOS */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

img,
video,
iframe,
canvas {
    max-width: 100%;
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }

    #header .container,
    #header.scrolled .container {
        width: 100%;
        max-width: 100%;
        min-height: 70px;
        grid-template-columns: minmax(0, 1fr) 44px;
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    #logo,
    #header.scrolled #logo {
        width: min(270px, calc(100vw - 92px));
        max-width: calc(100vw - 92px);
        margin-right: 0;
    }

    #logo a,
    .event-mark,
    #header.scrolled .event-mark {
        width: 100%;
        min-width: 0;
    }

    .navbar {
        justify-self: end;
    }

    .navbar-collapse {
        top: 70px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-nav,
    #header.scrolled .navbar-nav {
        align-items: stretch;
        gap: 0.35rem;
    }

    .navbar-dark .nav-link {
        width: 100%;
        padding: 0.68rem 0.85rem;
        white-space: normal;
        text-align: left;
    }

    #full-banner {
        height: calc(100svh - 70px) !important;
        min-height: 520px;
    }

    .banner-content {
        padding: 1.25rem 0.5rem;
    }

    .banner-content h1 {
        font-size: 2.45rem;
        line-height: 1.05;
    }

    .banner-content p {
        font-size: 1.05rem;
    }

    .banner-meta {
        grid-template-columns: 1fr;
        width: min(100%, 330px);
        gap: 0.7rem;
    }

    .banner-meta strong {
        min-height: 50px;
        padding: 0.7rem;
    }

    #apresentacao,
    #palestrantes,
    #programacao,
    #temas-livres,
    #inscricoes,
    #local,
    #fale-conosco,
    #patrocinadores,
    #logos-patrocinadores {
        overflow-x: clip;
        scroll-margin-top: 78px;
    }

    .container,
    section > .container {
        width: 100%;
        max-width: 100%;
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .committee-showcase {
        width: 100vw;
        margin-left: 50%;
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    #apresentacao .committee-showcase .row > [class*="col-"],
    #palestrantes .row > [class*="col-"] {
        width: 100%;
        min-height: 210px;
        padding: 1.35rem 0.9rem;
    }

    #programacao .card,
    #inscricoes .card,
    #local .row,
    #form-contato,
    #fale-conosco .col-md-6:last-child {
        width: 100%;
        max-width: 100%;
    }
}

/* Simbolo branco ao lado de SBOT */
.sbot-title-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sbot-symbol-white {
    flex: 0 0 24px;
    width: 24px;
    height: 38px;
    display: block;
    overflow: visible;
    color: #ffffff;
    fill: currentColor;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

@media (min-width: 992px) {
    #header .sbot-title-line {
        gap: 0.85rem;
    }

    #header .event-mark {
        min-height: 96px;
        grid-template-columns: minmax(184px, 0.98fr) 1px minmax(230px, 1.48fr);
    }

    #header .sbot-symbol-white {
        flex-basis: 54px;
        width: 54px;
        height: 85px;
    }
}

.sbot-symbol-white path {
    fill: currentColor;
}

#header.scrolled .sbot-title-line {
    gap: 0.38rem;
}

#header.scrolled .sbot-symbol-white {
    flex-basis: 18px;
    width: 18px;
    height: 29px;
}

#local img.local-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    object-position: center;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent;
}

@media (max-width: 767.98px) {
    .sbot-title-line {
        gap: 0.3rem;
    }

    .sbot-symbol-white,
    #header.scrolled .sbot-symbol-white {
        flex-basis: 14px;
        width: 14px;
        height: 23px;
    }
}

/* Camada final Android/iOS */
@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 74px;
    }

    body {
        padding-top: 0;
        background: #f5fbf8;
    }

    #header,
    #header.scrolled {
        min-height: 74px;
        background: linear-gradient(180deg, rgba(0, 55, 46, 0.92), rgba(0, 55, 46, 0.64));
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 24px rgba(0, 35, 30, 0.22);
        backdrop-filter: blur(10px);
    }

    #header .container,
    #header.scrolled .container {
        min-height: 74px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        align-items: center;
        gap: 0.65rem;
        padding: 0.5rem 0.85rem;
    }

    #logo,
    #header.scrolled #logo {
        width: 100%;
        max-width: none;
        min-width: 0;
        font-size: 1rem;
    }

    .event-mark,
    #header.scrolled .event-mark {
        width: min(100%, 300px);
        min-height: 52px;
        grid-template-columns: minmax(104px, 0.9fr) 1px minmax(132px, 1.15fr);
        gap: 0.48rem;
    }

    .event-mark-sbot strong,
    #header.scrolled .event-mark-sbot strong {
        font-size: 1rem;
    }

    .event-mark-sbot small,
    #header.scrolled .event-mark-sbot small {
        font-size: 0.32rem;
        line-height: 1.08;
    }

    .event-mark-main strong,
    #header.scrolled .event-mark-main strong {
        font-size: 0.78rem;
    }

    .event-mark-main span,
    #header.scrolled .event-mark-main span {
        font-size: 0.7rem;
    }

    .event-mark-main small,
    #header.scrolled .event-mark-main small {
        display: block;
        max-width: 130px;
        font-size: 0.38rem;
        line-height: 1.15;
    }

    .event-mark-divider,
    #header.scrolled .event-mark-divider {
        height: 42px;
    }

    .navbar {
        width: 44px;
        min-width: 44px;
        justify-content: center;
    }

    .navbar-toggler {
        width: 44px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.14);
    }

    #header .navbar-collapse,
    #header.scrolled .navbar-collapse {
        position: fixed;
        top: 74px;
        right: 0.85rem;
        left: 0.85rem;
        max-height: calc(100svh - 92px);
        padding: 0.75rem;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        background: rgba(0, 61, 51, 0.97);
        box-shadow: 0 18px 36px rgba(0, 20, 18, 0.28);
        backdrop-filter: blur(12px);
    }

    .navbar-nav,
    #header.scrolled .navbar-nav {
        display: grid;
        gap: 0.35rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-dark .nav-link,
    #header.scrolled .navbar-dark .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.72rem 0.85rem;
        border-radius: 8px;
        color: #ffffff !important;
        font-size: 0.96rem;
        line-height: 1.2;
        text-align: left;
        text-shadow: none;
        white-space: normal;
    }

    .navbar-dark .nav-link::after {
        display: none;
    }

    #full-banner {
        min-height: 600px;
        height: 100svh !important;
        padding: 0 0.85rem;
    }

    .banner-video video {
        object-position: center;
    }

    #full-banner::before {
        background:
            linear-gradient(180deg, rgba(0, 32, 27, 0.68), rgba(0, 32, 27, 0.26) 45%, rgba(0, 32, 27, 0.58)),
            linear-gradient(90deg, rgba(0, 55, 46, 0.44), rgba(0, 55, 46, 0.18));
    }

    .banner-content {
        width: min(100%, 360px);
        margin: 0 auto;
        padding-top: 5.5rem;
    }

    .banner-content h1 {
        margin-bottom: 0.85rem;
        font-size: 2.35rem;
        line-height: 1.05;
    }

    .banner-content p {
        margin-bottom: 1.2rem;
        font-size: 1.05rem;
    }

    .banner-meta {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .banner-meta strong {
        border-radius: 8px;
        font-size: 0.95rem;
    }

    section {
        padding: 3.2rem 0.85rem;
        scroll-margin-top: 84px;
    }

    #apresentacao,
    #palestrantes,
    #programacao,
    #temas-livres,
    #inscricoes,
    #local,
    #fale-conosco,
    #patrocinadores,
    #logos-patrocinadores {
        border-radius: 0;
    }

    #apresentacao h2,
    #programacao h2,
    #temas-livres h2,
    #inscricoes h2,
    #local h2,
    #fale-conosco h2,
    #patrocinadores h2,
    #logos-patrocinadores h2,
    .committee-showcase h3 {
        font-size: 1.65rem;
        line-height: 1.18;
    }

    #apresentacao p,
    #programacao p,
    #temas-livres p,
    #inscricoes p,
    #local p,
    #fale-conosco p,
    #patrocinadores p {
        font-size: 0.98rem !important;
        line-height: 1.68 !important;
    }

    .separador {
        width: 72%;
    }

    .committee-showcase {
        width: 100vw;
        margin-right: -0.85rem;
        margin-left: calc(50% - 50vw);
        padding: 2.4rem 0.85rem;
        transform: none;
    }

    .committee-showcase > h3,
    .committee-showcase > .row {
        width: 100%;
        max-width: 420px;
        margin-right: auto;
        margin-left: auto;
    }

    .committee-showcase .row,
    #palestrantes .row,
    #programacao .row .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #apresentacao .committee-showcase .row > [class*="col-"],
    #palestrantes .row > [class*="col-"],
    #programacao .col-md-4,
    #logos-patrocinadores .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    #apresentacao .committee-showcase .row > [class*="col-"],
    #palestrantes .row > [class*="col-"] {
        min-height: 0;
        padding: 1.15rem;
        border-radius: 8px;
    }

    #apresentacao .committee-showcase img,
    #palestrantes img {
        width: 112px;
        height: 112px;
    }

    #programacao .card,
    #inscricoes .table-responsive,
    #regras-inscricao,
    #local .row,
    #form-contato,
    #fale-conosco .col-md-6:last-child {
        border-radius: 8px;
    }

    #programacao .card {
        min-height: 0;
        padding: 1.15rem;
    }

    #programacao a.btn,
    #inscricoes a.btn,
    #inscricoes button,
    #local a.btn,
    #patrocinadores a.btn,
    #fale-conosco button {
        width: 100%;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        line-height: 1.2;
    }

    #inscricoes .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #inscricoes table {
        min-width: 760px;
    }

    #regras-inscricao {
        max-height: 520px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #local .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1rem;
    }

    #local img.local-photo {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    #logos-patrocinadores .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    #logos-patrocinadores .row > h2,
    #logos-patrocinadores .row > h3,
    #logos-patrocinadores .row > h4 {
        width: 100%;
    }

    #logos-patrocinadores .row > [class*="col-"] {
        min-height: 116px;
        border-radius: 8px;
    }

    .patrocinador-logo {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
    }

    #fale-conosco .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #form-contato input,
    #form-contato textarea {
        min-height: 46px;
        font-size: 1rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.4rem;
        text-align: left;
    }

    .footer-mark {
        width: min(100%, 330px);
    }

    .footer-actions {
        display: grid;
        gap: 0.75rem;
    }

    .footer-actions .btn {
        width: 100%;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 380px) {
    .event-mark,
    #header.scrolled .event-mark {
        width: min(100%, 268px);
        grid-template-columns: minmax(92px, 0.9fr) 1px minmax(116px, 1.15fr);
        gap: 0.38rem;
    }

    .event-mark-main small,
    #header.scrolled .event-mark-main small {
        display: none;
    }

    .banner-content h1 {
        font-size: 2.05rem;
    }
}

.event-mark-sbot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.event-mark-sbot-image {
    display: block;
    width: 172px;
    max-width: 100%;
    height: auto;
}

#header.scrolled .event-mark-sbot-image {
    width: 118px;
}

@media (max-width: 1199px) {
    .event-mark-sbot-image,
    #header.scrolled .event-mark-sbot-image {
        width: 124px;
    }
}

@media (max-width: 767px) {
    .event-mark-sbot-image,
    #header.scrolled .event-mark-sbot-image {
        width: 102px;
    }
}

#logos-patrocinadores .row > .sponsor-feature-card {
    flex: 0 1 min(100%, 760px);
    max-width: 760px;
    min-height: 190px;
    padding: 2rem;
}

#logos-patrocinadores .sponsor-feature-card .patrocinador-logo-destaque {
    width: 100%;
    max-width: 700px;
    max-height: 150px;
}

@media (max-width: 576px) {
    #logos-patrocinadores .row > .sponsor-feature-card {
        min-height: 140px;
        padding: 1.25rem;
    }

    #logos-patrocinadores .sponsor-feature-card .patrocinador-logo-destaque {
        max-height: 112px;
    }
}

#logo,
#header.scrolled #logo {
    max-width: 590px;
}

.event-mark {
    width: min(590px, 100%);
    min-height: 78px;
    grid-template-columns: minmax(186px, 1fr) 1px minmax(286px, 1.6fr);
    gap: 1rem;
}

.event-mark-sbot-image {
    width: 182px;
}

.event-mark-divider {
    height: 64px;
}

.event-mark-main strong {
    font-size: 1.42rem;
}

.event-mark-main span {
    font-size: 1.18rem;
}

.event-mark-main small {
    font-size: 0.7rem;
    color: #4e6f68;
}

#header.scrolled #logo {
    max-width: 420px;
}

#header.scrolled .event-mark {
    width: min(420px, 100%);
    min-height: 58px;
    grid-template-columns: minmax(134px, 0.95fr) 1px minmax(212px, 1.45fr);
}

#header.scrolled .event-mark-sbot-image {
    width: 132px;
}

#header.scrolled .event-mark-main strong {
    font-size: 0.98rem;
}

#header.scrolled .event-mark-main span {
    font-size: 0.86rem;
}

@media (max-width: 991px) {
    .event-mark {
        width: min(500px, 100%);
        grid-template-columns: minmax(144px, 0.95fr) 1px minmax(236px, 1.45fr);
    }

    .event-mark-sbot-image {
        width: 142px;
    }

    .event-mark-main strong {
        font-size: 1.14rem;
    }

    .event-mark-main span {
        font-size: 0.98rem;
    }

    .event-mark-main small {
        font-size: 0.56rem;
    }
}

@media (max-width: 767px) {
    .event-mark,
    #header.scrolled .event-mark {
        width: min(100%, 332px);
        grid-template-columns: minmax(108px, 0.92fr) 1px minmax(154px, 1.22fr);
        gap: 0.6rem;
    }

    .event-mark-sbot-image,
    #header.scrolled .event-mark-sbot-image {
        width: 110px;
    }

    .event-mark-divider,
    #header.scrolled .event-mark-divider {
        height: 44px;
    }

    .event-mark-main strong,
    #header.scrolled .event-mark-main strong {
        font-size: 0.9rem;
    }

    .event-mark-main span,
    #header.scrolled .event-mark-main span {
        font-size: 0.78rem;
    }

    .event-mark-main small,
    #header.scrolled .event-mark-main small {
        display: block;
        font-size: 0.42rem;
    }
}
/* Ajustes finais: programação por páginas dedicadas */
.navbar .dropdown-toggle {
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    text-transform: uppercase;
}

.navbar .dropdown-toggle::after {
    background: transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid;
    content: "";
    display: inline-block;
    height: 0;
    inset: auto;
    margin-left: 0.4rem;
    position: static;
    transform: none;
    transition: none;
    vertical-align: 0.14em;
    width: 0;
}

.navbar .dropdown-toggle:hover::after,
.navbar .dropdown-toggle.active::after {
    transform: none;
}

.programacao-dropdown {
    min-width: 320px;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(1, 77, 66, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.programacao-dropdown .dropdown-item {
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    padding: 0.72rem 0.85rem;
    text-transform: uppercase;
    white-space: normal;
}

.programacao-dropdown .dropdown-item:hover,
.programacao-dropdown .dropdown-item:focus {
    background: rgba(17, 166, 121, 0.95);
    color: #ffffff;
}

.banner-content .banner-subline {
    font-size: 1.45rem !important;
    font-weight: 700;
    line-height: 1.18;
    margin: 0.35rem auto 1.2rem;
    max-width: 980px;
}

@media (max-width: 767.98px) {
    .banner-content .banner-subline {
        font-size: 1rem !important;
    }
}

.programacao-page {
    min-height: 100vh;
    padding-top: 0;
    background:
        radial-gradient(circle at top right, rgba(17, 166, 121, 0.16), transparent 34rem),
        linear-gradient(135deg, #edf8f4 0%, #ffffff 56%, #e8f5f0 100%);
    color: #0d2b3c;
    font-family: 'Poppins', sans-serif;
}

.programacao-page-header {
    background:
        linear-gradient(135deg, rgba(4, 69, 61, 0.96), rgba(0, 126, 104, 0.92)),
        url('assets/wave-texture.jpg') center / cover;
    color: #ffffff;
    padding: 2rem 0;
}

.programacao-page-brand {
    align-items: center;
    display: flex;
    gap: 1.4rem;
}

.programacao-page-brand img {
    max-width: 210px;
    width: 34vw;
}

.programacao-page-brand h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.7rem, 4vw, 3rem);
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

.programacao-page-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 121, 96, 0.18);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(13, 43, 60, 0.14);
    margin: 2rem auto;
    overflow: hidden;
}

.programacao-page-toolbar {
    align-items: center;
    border-bottom: 1px solid rgba(13, 43, 60, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.25rem;
}

.programacao-page-toolbar h2 {
    color: #007a68;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    text-transform: uppercase;
}

.programacao-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.programacao-pdf-frame {
    border: 0;
    display: block;
    height: min(78vh, 920px);
    min-height: 620px;
    width: 100%;
}

#palestrantes[hidden] {
    display: none !important;
}

.programacao-empty-state {
    align-items: center;
    background: linear-gradient(145deg, rgba(230, 249, 241, 0.9), rgba(255, 255, 255, 0.96));
    color: #123142;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    padding: clamp(2rem, 6vw, 5rem);
    text-align: center;
}

.programacao-empty-badge {
    background: #007a68;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
}

.programacao-empty-state h3 {
    color: #007a68;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    text-transform: uppercase;
}

.programacao-empty-state p {
    font-size: 1.05rem;
    margin: 0.75rem auto 0;
    max-width: 720px;
}

@media (max-width: 991.98px) {
    .programacao-dropdown {
        background: rgba(1, 77, 66, 0.72);
        box-shadow: none;
        margin-top: 0.35rem;
        min-width: 100%;
    }

    .navbar .dropdown-toggle {
        width: 100%;
        text-align: left;
    }
}

/* Padronização final do menu principal */
#header .navbar-nav,
#header.scrolled .navbar-nav {
    align-items: center;
    gap: 0.35rem;
}

#header .navbar-dark .nav-link,
#header.scrolled .navbar-dark .nav-link,
#header .navbar .dropdown-toggle,
#header.scrolled .navbar .dropdown-toggle {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff !important;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.82rem, 1vw, 0.96rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 0.48rem 0.62rem;
    text-align: center;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.36);
    text-transform: uppercase;
    white-space: nowrap;
}

#header .navbar .dropdown-toggle {
    cursor: pointer;
}

#header .navbar-dark .nav-link:hover,
#header .navbar-dark .nav-link.active,
#header .navbar .dropdown-toggle:hover,
#header .navbar .dropdown-toggle.show,
#header.scrolled .navbar-dark .nav-link:hover,
#header.scrolled .navbar-dark .nav-link.active,
#header.scrolled .navbar .dropdown-toggle:hover,
#header.scrolled .navbar .dropdown-toggle.show {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
}

#header .navbar-dark .nav-link[href="#inscricoes"],
#header .navbar-dark .nav-link[href="#inscricoes"]:hover,
#header .navbar-dark .nav-link[href="#inscricoes"].active {
    background: rgba(0, 120, 95, 0.92);
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    #header .navbar-nav,
    #header.scrolled .navbar-nav {
        align-items: stretch;
        gap: 0.35rem;
    }

    #header .navbar-dark .nav-link,
    #header.scrolled .navbar-dark .nav-link,
    #header .navbar .dropdown-toggle,
    #header.scrolled .navbar .dropdown-toggle {
        justify-content: flex-start;
        width: 100%;
        min-height: 44px;
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 767.98px) {
    .programacao-page-brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .programacao-page-brand img {
        width: 240px;
    }

    .programacao-page-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .programacao-page-actions .btn {
        width: 100%;
    }

    .programacao-pdf-frame {
        min-height: 520px;
    }
}

/* Redesign visual 2026 */
:root {
    --cotece-ink: #10262f;
    --cotece-muted: #60727a;
    --cotece-soft: #f4f8f7;
    --cotece-panel: #ffffff;
    --cotece-line: rgba(16, 38, 47, 0.12);
    --cotece-brand: #007a68;
    --cotece-brand-dark: #064c43;
    --cotece-brand-soft: #e7f4ef;
    --cotece-accent: #c86b3c;
    --cotece-blue: #2f7ea6;
    --cotece-shadow: 0 20px 60px rgba(16, 38, 47, 0.12);
}

html {
    scroll-behavior: smooth;
}

body.site-home {
    padding-top: 0;
    background: var(--cotece-soft);
    color: var(--cotece-ink);
    font-family: 'Poppins', Arial, sans-serif;
}

.site-home main {
    overflow: clip;
}

.site-home section {
    padding: clamp(4rem, 7vw, 6.5rem) 1rem;
    scroll-margin-top: 92px;
}

#header {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(16, 38, 47, 0.08) !important;
    backdrop-filter: blur(16px);
}

#header .scroll-progress {
    background: linear-gradient(90deg, var(--cotece-accent), var(--cotece-brand));
    height: 3px;
}

#header .container,
#header.scrolled .container {
    width: min(1320px, calc(100% - 32px));
    max-width: none;
    min-height: 82px;
    display: flex;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.2rem;
    padding: 0.75rem 0 !important;
}

#logo,
#header.scrolled #logo {
    max-width: 430px !important;
    margin: 0 !important;
}

#header .event-mark,
#header.scrolled .event-mark {
    width: min(430px, 40vw) !important;
    min-height: 58px;
    grid-template-columns: minmax(132px, 0.95fr) 1px minmax(196px, 1.45fr);
    gap: 0.75rem;
}

#header .event-mark-sbot-image,
#header.scrolled .event-mark-sbot-image {
    width: 132px;
}

#header .event-mark-main strong,
#header.scrolled .event-mark-main strong {
    color: var(--cotece-brand-dark);
    font-size: 1rem;
}

#header .event-mark-main span,
#header.scrolled .event-mark-main span {
    color: var(--cotece-brand);
    font-size: 0.88rem;
}

#header .event-mark-main small,
#header.scrolled .event-mark-main small {
    display: block;
    color: var(--cotece-muted);
    font-size: 0.52rem;
}

#header .event-mark-divider,
#header.scrolled .event-mark-divider {
    height: 48px;
    background: rgba(0, 122, 104, 0.22);
}

#header .navbar {
    flex: 1 1 auto;
    justify-content: flex-end;
    padding: 0;
}

#header .navbar-collapse {
    background: transparent !important;
}

#header .navbar-nav,
#header.scrolled .navbar-nav {
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

#header .navbar-dark .nav-link,
#header.scrolled .navbar-dark .nav-link,
#header .navbar .dropdown-toggle,
#header.scrolled .navbar .dropdown-toggle {
    min-height: 38px;
    border-radius: 999px;
    color: var(--cotece-brand-dark) !important;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: clamp(0.68rem, 0.72vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 0.58rem 0.72rem;
    text-shadow: none;
}

#header .navbar-dark .nav-link:hover,
#header .navbar-dark .nav-link.active,
#header .navbar .dropdown-toggle:hover,
#header .navbar .dropdown-toggle.show,
#header.scrolled .navbar-dark .nav-link:hover,
#header.scrolled .navbar-dark .nav-link.active,
#header.scrolled .navbar .dropdown-toggle:hover,
#header.scrolled .navbar .dropdown-toggle.show {
    background: var(--cotece-brand-dark);
    color: #ffffff !important;
}

#header .navbar-dark .nav-link[href="#inscricoes"],
#header .navbar-dark .nav-link[href="#inscricoes"]:hover,
#header .navbar-dark .nav-link[href="#inscricoes"].active {
    background: var(--cotece-accent);
    color: #ffffff !important;
}

#header .navbar-toggler {
    min-height: 42px;
    background: var(--cotece-brand-dark) !important;
    border-radius: 999px !important;
    box-shadow: none;
}

.programacao-dropdown {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(6, 76, 67, 0.98);
    padding: 0.45rem;
}

#full-banner {
    min-height: min(820px, calc(100svh - 28px)) !important;
    height: auto !important;
    margin-top: 0 !important;
    padding: clamp(8rem, 14vw, 11rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    border-bottom: 0;
    isolation: isolate;
}

#full-banner::before {
    background:
        linear-gradient(180deg, rgba(3, 29, 31, 0.54), rgba(3, 29, 31, 0.18) 42%, rgba(3, 29, 31, 0.7)),
        linear-gradient(90deg, rgba(4, 76, 67, 0.72), rgba(4, 76, 67, 0.18) 58%, rgba(200, 107, 60, 0.38)) !important;
}

.banner-video,
.banner-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-video video {
    object-fit: cover;
}

.banner-content {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 0;
    color: #ffffff;
    text-align: center;
}

.banner-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 1rem;
    padding: 0.42rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.banner-content h1 {
    margin: 0;
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.92;
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
}

.banner-content .banner-event-line,
.banner-content .banner-subline {
    color: rgba(255, 255, 255, 0.94);
    font-family: 'Poppins', Arial, sans-serif;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.banner-content .banner-event-line {
    margin: 0.9rem 0 0;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
}

.banner-content .banner-subline {
    max-width: 860px;
    margin: 0.45rem auto 1.4rem;
    font-size: clamp(1rem, 2vw, 1.45rem) !important;
    letter-spacing: 0.04em;
}

.banner-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 auto 1.6rem;
}

.banner-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.62rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(3, 29, 31, 0.36);
    color: #ffffff;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.hero-actions .btn,
.site-home .btn {
    border-radius: 999px !important;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0.82rem 1.25rem;
}

.hero-actions .btn-success,
.site-home .btn-success {
    background: var(--cotece-accent);
    border-color: var(--cotece-accent);
}

.hero-actions .btn-success:hover,
.hero-actions .btn-success:focus-visible,
.site-home .btn-success:hover,
.site-home .btn-success:focus-visible {
    background: #a9532c;
    border-color: #a9532c;
}

.hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    width: min(900px, 100%);
    margin: 0 auto;
}

.hero-highlights > div {
    min-height: 118px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    text-align: left;
    backdrop-filter: blur(8px);
}

.hero-highlights strong,
.hero-highlights span {
    display: block;
}

.hero-highlights strong {
    margin-bottom: 0.45rem;
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.hero-highlights span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.45;
}

.section-heading {
    width: min(860px, 100%);
    margin: 0 auto clamp(2rem, 4vw, 3.2rem);
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.78rem;
    border-radius: 999px;
    background: rgba(0, 122, 104, 0.1);
    color: var(--cotece-brand);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section-heading h2,
#apresentacao h2,
#inscricoes h2,
#local h2,
#fale-conosco h2,
#patrocinadores h2,
#logos-patrocinadores h2 {
    margin-bottom: 0.8rem !important;
    color: var(--cotece-brand-dark) !important;
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.5rem);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading p {
    margin: 0 auto;
    color: var(--cotece-muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.section-heading-light .section-kicker {
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

.section-heading-light h2 {
    color: #ffffff !important;
}

.section-heading-light p {
    color: rgba(255, 255, 255, 0.82);
}

#apresentacao,
#inscricoes,
#local,
#fale-conosco,
#logos-patrocinadores {
    background: #ffffff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

#apresentacao {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%) !important;
}

.presentation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: start;
}

.presentation-copy {
    display: grid;
    gap: 1rem;
}

.presentation-copy p,
#local .venue-copy p,
.contact-card p,
#patrocinadores p {
    color: var(--cotece-muted) !important;
    font-size: 1.03rem !important;
    line-height: 1.82 !important;
}

.presentation-copy p:first-child {
    color: var(--cotece-ink) !important;
    font-size: 1.15rem !important;
    font-weight: 600;
}

.event-summary-card {
    position: sticky;
    top: 112px;
    padding: 1.5rem;
    border: 1px solid var(--cotece-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(231, 244, 239, 0.95), rgba(255, 255, 255, 0.98)),
        url('assets/wave-texture.jpg') center / cover;
    box-shadow: var(--cotece-shadow);
}

.event-summary-card .summary-label {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--cotece-accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.event-summary-card h3 {
    margin: 0 0 0.6rem;
    color: var(--cotece-brand-dark);
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 2.1rem;
    line-height: 1;
    text-transform: uppercase;
}

.event-summary-card p {
    color: var(--cotece-muted);
    line-height: 1.65;
}

.summary-list {
    display: grid;
    gap: 0.55rem;
    margin: 1.25rem 0;
}

.summary-list span {
    display: flex;
    gap: 0.55rem;
    color: var(--cotece-ink);
    font-weight: 700;
}

.summary-list span::before {
    content: '';
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: var(--cotece-accent);
}

.separador {
    width: min(160px, 38vw);
    height: 3px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cotece-accent), var(--cotece-brand)) !important;
    opacity: 1;
}

.committee-showcase {
    margin-top: clamp(2.5rem, 5vw, 4rem) !important;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid var(--cotece-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 50px rgba(16, 38, 47, 0.08);
}

.committee-showcase h3 {
    color: var(--cotece-brand-dark) !important;
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-transform: uppercase;
}

#apresentacao .committee-showcase .row {
    gap: 1rem 0;
}

#apresentacao .committee-showcase .row > [class*="col-"] {
    display: flex;
    min-height: 255px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.2rem 0.8rem;
    border: 1px solid rgba(0, 122, 104, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(16, 38, 47, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#apresentacao .committee-showcase .row > [class*="col-"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 38, 47, 0.12);
}

#apresentacao .committee-showcase img {
    width: 124px !important;
    height: 124px !important;
    border: 4px solid #ffffff;
    outline: 1px solid rgba(0, 122, 104, 0.18);
    box-shadow: 0 12px 28px rgba(16, 38, 47, 0.16) !important;
}

#apresentacao .committee-showcase h5 {
    color: var(--cotece-ink);
    font-weight: 800;
}

#apresentacao .committee-showcase p {
    color: var(--cotece-muted) !important;
    font-size: 0.9rem;
    line-height: 1.45;
}

#temas-livres {
    position: relative;
    background:
        linear-gradient(135deg, rgba(6, 76, 67, 0.98), rgba(16, 38, 47, 0.96)),
        url('assets/wave-texture.jpg') center / cover !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.submission-overview {
    display: grid;
    grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.submission-deadline,
.submission-cta,
.rule-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.submission-deadline {
    display: grid;
    align-content: center;
    padding: 1.35rem;
}

.submission-deadline span,
.submission-deadline small {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.submission-deadline strong {
    margin: 0.25rem 0;
    color: #ffffff;
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}

.submission-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem;
}

.submission-cta p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rule-card {
    padding: 1.25rem;
    color: #ffffff;
}

.rule-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(200, 107, 60, 0.22);
    color: #ffd8c5;
    font-size: 1.25rem;
}

.rule-card h3 {
    margin: 0 0 0.8rem;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
}

.rule-card ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rule-card li,
.rule-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
}

.rule-card li {
    position: relative;
    padding-left: 1rem;
}

.rule-card li::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cotece-accent);
}

.rule-card-highlight {
    background: rgba(200, 107, 60, 0.18);
}

#inscricoes {
    background: linear-gradient(180deg, #ffffff, #f6faf9) !important;
}

#inscricoes .table-responsive {
    border: 1px solid var(--cotece-line) !important;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--cotece-shadow);
}

#inscricoes table {
    min-width: 760px;
    margin: 0;
    color: var(--cotece-ink);
}

#inscricoes table th {
    padding: 1rem;
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: var(--cotece-brand-dark) !important;
    color: #ffffff !important;
    font-size: 0.92rem;
    text-transform: uppercase;
}

#inscricoes table td {
    padding: 1rem !important;
    border-color: var(--cotece-line) !important;
    color: var(--cotece-ink);
    font-weight: 600;
}

#inscricoes table tbody tr:nth-child(even) {
    background: rgba(231, 244, 239, 0.55) !important;
}

#inscricoes table tbody td:first-child {
    color: var(--cotece-brand-dark);
    font-weight: 800;
    text-align: left;
}

.pricing-note {
    margin: -0.65rem 0 1.35rem;
    color: var(--cotece-muted);
    font-size: 0.92rem;
    text-align: center;
}

#toggle-regras {
    max-width: 720px;
    border-color: rgba(0, 122, 104, 0.28);
    color: var(--cotece-brand-dark);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(16, 38, 47, 0.06);
}

#toggle-regras:hover,
#toggle-regras:focus-visible {
    background: var(--cotece-brand-dark);
    color: #ffffff;
}

#regras-inscricao {
    max-width: 980px;
    margin: 0 auto 1rem;
    padding: 1.4rem;
    border: 1px solid var(--cotece-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(16, 38, 47, 0.08);
}

#regras-inscricao p,
#regras-inscricao li {
    color: var(--cotece-muted) !important;
    line-height: 1.72;
}

.inscricao-cta-wrap .btn {
    min-width: min(100%, 280px);
}

.venue-card,
.contact-layout,
.sponsor-layout {
    border: 1px solid var(--cotece-line) !important;
    border-radius: 8px !important;
    background: #ffffff;
    box-shadow: var(--cotece-shadow) !important;
    overflow: hidden;
}

.venue-card {
    padding: 0 !important;
}

.venue-copy,
.contact-card,
#form-contato,
.sponsor-layout .col-md-12 {
    padding: clamp(1.25rem, 3vw, 2.25rem) !important;
}

#local .venue-copy h5,
.contact-card h5 {
    color: var(--cotece-brand-dark) !important;
    font-size: 1.35rem;
    font-weight: 800;
}

.venue-address {
    display: flex;
    gap: 0.55rem;
    margin-top: 1.2rem;
    padding: 0.9rem;
    border-radius: 8px;
    background: var(--cotece-brand-soft);
}

#local img.local-photo {
    height: 100%;
    min-height: 360px;
    border-radius: 0 !important;
}

#local a.btn {
    margin-top: 0.25rem;
}

#fale-conosco {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%) !important;
}

.contact-layout {
    align-items: stretch !important;
}

#form-contato {
    height: 100%;
    border: 0 !important;
    border-right: 1px solid var(--cotece-line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

#form-contato .form-control {
    min-height: 52px;
    border: 1px solid rgba(16, 38, 47, 0.14);
    border-radius: 8px;
    color: var(--cotece-ink);
    font-weight: 600;
}

#form-contato textarea.form-control {
    min-height: 150px;
    padding-top: 0.9rem;
}

#form-contato .form-control:focus {
    border-color: var(--cotece-brand);
    box-shadow: 0 0 0 0.25rem rgba(0, 122, 104, 0.12);
}

#fale-conosco button.btn-primary {
    background: var(--cotece-brand-dark);
    border-color: var(--cotece-brand-dark);
}

.contact-list {
    display: grid;
    gap: 0.75rem;
}

.contact-list li {
    padding: 0.85rem 0;
    border-top: 1px solid var(--cotece-line);
    color: var(--cotece-ink);
}

#patrocinadores {
    background:
        linear-gradient(135deg, rgba(231, 244, 239, 0.88), rgba(255, 255, 255, 0.95) 54%, rgba(47, 126, 166, 0.08)),
        url('assets/wave-texture.jpg') center / cover !important;
}

.sponsor-layout {
    max-width: 980px;
    margin: 0 auto;
}

.sponsor-callout {
    max-width: none;
    margin: 0 0 1.3rem;
    padding: 1.2rem;
    border: 1px solid rgba(200, 107, 60, 0.24) !important;
    background: rgba(200, 107, 60, 0.08);
    box-shadow: none !important;
}

.sponsor-callout h3 {
    color: var(--cotece-brand-dark);
    font-size: 1.35rem;
}

#patrocinadores a {
    color: var(--cotece-brand-dark);
    font-weight: 800;
}

#logos-patrocinadores .container > .separador {
    display: none;
}

#logos-patrocinadores .container > h2 + .row,
#logos-patrocinadores .container > .row {
    margin-bottom: 2rem;
}

#logos-patrocinadores .container > h2 {
    display: block;
    margin: 2rem 0 1rem !important;
    color: var(--cotece-brand-dark) !important;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
}

#logos-patrocinadores .row {
    gap: 1rem !important;
}

#logos-patrocinadores .row > [class*="col-"] {
    min-height: 132px;
    border: 1px solid var(--cotece-line) !important;
    border-radius: 8px !important;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(16, 38, 47, 0.07) !important;
}

.patrocinador-logo {
    max-width: 100%;
    max-height: 82px;
    filter: none !important;
}

.site-footer {
    background: var(--cotece-ink);
    color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer-grid {
    gap: 2rem;
}

.site-footer h2,
.site-footer a {
    color: #ffffff;
}

.footer-mark .event-mark-main strong,
.footer-mark .event-mark-main span,
.footer-mark .event-mark-main small {
    color: #ffffff !important;
}

.footer-mark .event-mark-divider {
    background: rgba(255, 255, 255, 0.28);
}

.back-to-top {
    background: var(--cotece-accent);
    border-radius: 999px;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(16, 38, 47, 0.2);
}

.programacao-page {
    background:
        linear-gradient(180deg, #f4f8f7, #ffffff 48%, #eef6f3);
}

.programacao-page-header {
    background:
        linear-gradient(135deg, rgba(6, 76, 67, 0.96), rgba(47, 126, 166, 0.74)),
        url('assets/wave-texture.jpg') center / cover;
}

.programacao-page-card {
    border-radius: 8px;
    box-shadow: var(--cotece-shadow);
}

.programacao-empty-badge {
    background: var(--cotece-accent);
}

@media (max-width: 1199.98px) {
    #header .container,
    #header.scrolled .container {
        flex-wrap: wrap;
        min-height: 78px;
    }

    #header .navbar {
        flex: 1 1 100%;
    }

    #header .navbar-nav,
    #header.scrolled .navbar-nav {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    #header .container,
    #header.scrolled .container {
        width: min(100% - 24px, 720px);
        flex-wrap: nowrap;
    }

    #header .event-mark,
    #header.scrolled .event-mark {
        width: min(420px, 72vw) !important;
    }

    #header .navbar {
        flex: 0 0 auto;
    }

    #header .navbar-collapse {
        position: absolute;
        top: calc(100% - 1px);
        right: 12px;
        left: 12px;
        padding: 0.75rem;
        border: 1px solid var(--cotece-line);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: var(--cotece-shadow);
    }

    #header .navbar-nav,
    #header.scrolled .navbar-nav {
        align-items: stretch;
    }

    #header .navbar-dark .nav-link,
    #header.scrolled .navbar-dark .nav-link,
    #header .navbar .dropdown-toggle,
    #header.scrolled .navbar .dropdown-toggle {
        justify-content: flex-start;
        min-height: 44px;
        white-space: normal;
    }

    .programacao-dropdown {
        background: rgba(6, 76, 67, 0.95);
    }

    .presentation-grid,
    .submission-overview {
        grid-template-columns: 1fr;
    }

    .event-summary-card {
        position: static;
    }

    .rules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .site-home section {
        padding: 3.4rem 0.85rem;
        scroll-margin-top: 82px;
    }

    #header .container,
    #header.scrolled .container {
        min-height: 70px;
        padding: 0.55rem 0 !important;
    }

    #header .event-mark,
    #header.scrolled .event-mark {
        width: min(100%, 330px) !important;
        min-height: 50px;
        grid-template-columns: minmax(102px, 0.9fr) 1px minmax(142px, 1.2fr);
        gap: 0.5rem;
    }

    #header .event-mark-sbot-image,
    #header.scrolled .event-mark-sbot-image {
        width: 104px;
    }

    #header .event-mark-main strong,
    #header.scrolled .event-mark-main strong {
        font-size: 0.8rem;
    }

    #header .event-mark-main span,
    #header.scrolled .event-mark-main span {
        font-size: 0.7rem;
    }

    #header .event-mark-main small,
    #header.scrolled .event-mark-main small {
        font-size: 0.38rem;
        line-height: 1.15;
    }

    #full-banner {
        min-height: 760px !important;
        padding: 6.5rem 0.85rem 2.5rem;
    }

    .banner-content h1 {
        font-size: clamp(3.2rem, 18vw, 5.2rem);
    }

    .banner-content .banner-subline {
        letter-spacing: 0;
    }

    .banner-meta,
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 360px);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        width: min(100%, 360px);
    }

    .hero-highlights > div {
        min-height: 0;
        text-align: center;
    }

    .section-heading {
        margin-bottom: 1.7rem;
    }

    .section-heading h2,
    #apresentacao h2,
    #inscricoes h2,
    #local h2,
    #fale-conosco h2,
    #patrocinadores h2,
    #logos-patrocinadores h2 {
        font-size: clamp(1.85rem, 11vw, 2.4rem);
        line-height: 1.05;
    }

    .committee-showcase {
        padding: 1rem;
    }

    #apresentacao .committee-showcase .row {
        display: grid;
        grid-template-columns: 1fr;
    }

    #apresentacao .committee-showcase .row > [class*="col-"] {
        width: 100%;
        min-height: 0;
    }

    .submission-cta {
        display: grid;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    #inscricoes .table-responsive {
        overflow-x: auto;
    }

    .venue-card,
    .contact-layout,
    .sponsor-layout {
        margin-right: 0;
        margin-left: 0;
    }

    #local img.local-photo {
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }

    #form-contato {
        border-right: 0 !important;
        border-bottom: 1px solid var(--cotece-line) !important;
    }

    #logos-patrocinadores .row {
        grid-template-columns: 1fr;
    }

    #logos-patrocinadores .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        min-height: 118px;
    }
}

@media (max-width: 380px) {
    #header .event-mark,
    #header.scrolled .event-mark {
        grid-template-columns: minmax(92px, 0.9fr) 1px minmax(118px, 1.12fr);
    }

    #header .event-mark-main small,
    #header.scrolled .event-mark-main small {
        display: none;
    }
}

/* Ajustes de contenção do hero sobre regras legadas */
#full-banner .banner-content .banner-kicker {
    width: auto !important;
    max-width: min(100%, 520px) !important;
    min-height: 34px !important;
    margin: 0 auto 1rem !important;
    padding: 0.42rem 0.9rem !important;
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    white-space: normal !important;
}

#full-banner .banner-content .banner-event-line {
    font-size: clamp(1.45rem, 3vw, 2.35rem) !important;
    line-height: 1.08 !important;
    white-space: normal !important;
}

#full-banner .banner-content .banner-subline {
    width: min(100%, 860px) !important;
    font-size: clamp(1rem, 2vw, 1.45rem) !important;
    line-height: 1.22 !important;
    white-space: normal !important;
    overflow-wrap: break-word;
}

#full-banner .banner-meta span {
    width: auto !important;
    max-width: min(100%, 380px) !important;
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.25 !important;
    text-align: left;
    text-transform: none !important;
    white-space: normal !important;
}

#full-banner .banner-meta i {
    font-size: 1.1rem !important;
    line-height: 1 !important;
}

#full-banner .hero-highlights strong,
#full-banner .hero-highlights span {
    white-space: normal !important;
    overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
    html,
    body.site-home {
        max-width: 100%;
        overflow-x: hidden;
    }

    #full-banner {
        overflow: hidden;
    }

    #full-banner .container {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    #full-banner .banner-content .banner-kicker {
        max-width: 340px !important;
        font-size: 0.72rem !important;
    }

    #full-banner .banner-content h1 {
        width: min(100%, 350px) !important;
        max-width: 350px !important;
        margin-right: auto !important;
        margin-left: auto !important;
        font-size: clamp(2.75rem, 13vw, 3.2rem) !important;
        line-height: 0.95 !important;
        white-space: normal !important;
        overflow-wrap: break-word;
    }

    #full-banner .banner-content .banner-event-line {
        font-size: 1.45rem !important;
    }

    #full-banner .banner-content .banner-subline {
        max-width: 340px !important;
        font-size: 0.94rem !important;
    }

    #full-banner .banner-meta span {
        justify-content: center;
        max-width: 100% !important;
        font-size: 0.95rem !important;
        text-align: center;
    }

    #full-banner .hero-highlights span {
        font-size: 0.82rem !important;
    }

    .section-heading,
    .section-heading h2,
    #apresentacao h2,
    #inscricoes h2,
    #local h2,
    #fale-conosco h2,
    #patrocinadores h2,
    #logos-patrocinadores h2 {
        max-width: 100%;
        white-space: normal !important;
        overflow-wrap: break-word;
    }
}

/* Final layout polish - COTECE public site */
:root {
    --ui-ink: #12252b;
    --ui-muted: #5e7078;
    --ui-soft: #f3f7f6;
    --ui-panel: #ffffff;
    --ui-line: rgba(18, 37, 43, 0.12);
    --ui-brand: #007a68;
    --ui-brand-dark: #064b43;
    --ui-brand-soft: #e7f4ef;
    --ui-blue: #2f7ea6;
    --ui-copper: #c86b3c;
    --ui-shadow: 0 18px 46px rgba(18, 37, 43, 0.11);
    --ui-shadow-light: 0 10px 28px rgba(18, 37, 43, 0.08);
}

html {
    scroll-padding-top: 92px;
}

body.site-home {
    color: var(--ui-ink);
    background:
        linear-gradient(180deg, #f7fbfa 0%, #ffffff 38%, #f2f7f6 100%);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

.site-home main {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0 88vh, rgba(255, 255, 255, 0.94) 88vh),
        linear-gradient(135deg, rgba(0, 122, 104, 0.045), rgba(47, 126, 166, 0.035) 52%, rgba(200, 107, 60, 0.04));
}

.site-home section {
    padding: clamp(4.4rem, 7vw, 6.6rem) 1rem;
}

.site-home section > .container,
.programacao-page main.container {
    width: min(1160px, calc(100% - 32px));
    max-width: 1160px;
    padding-right: 0;
    padding-left: 0;
}

#header,
#header.scrolled {
    border-bottom: 1px solid rgba(18, 37, 43, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 32px rgba(18, 37, 43, 0.08);
    backdrop-filter: blur(14px);
}

#header .container,
#header.scrolled .container {
    width: min(1240px, calc(100% - 28px));
    max-width: 1240px;
    min-height: 82px;
    padding: 0.55rem 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

#logo,
#header.scrolled #logo {
    flex: 0 1 470px;
    max-width: 470px;
    margin: 0;
}

#header .event-mark,
#header.scrolled .event-mark {
    grid-template-columns: minmax(132px, 0.82fr) 1px minmax(220px, 1.18fr);
    gap: 0.82rem;
}

#header .event-mark-sbot-image,
#header.scrolled .event-mark-sbot-image {
    width: 132px;
}

#header .event-mark-main strong,
#header.scrolled .event-mark-main strong {
    color: var(--ui-brand-dark);
    font-size: 1.08rem;
}

#header .event-mark-main span,
#header.scrolled .event-mark-main span {
    color: var(--ui-brand);
    font-size: 0.94rem;
}

#header .event-mark-main small,
#header.scrolled .event-mark-main small {
    color: var(--ui-muted);
    font-size: 0.5rem;
}

#header .navbar-nav,
#header.scrolled .navbar-nav {
    gap: 0.18rem;
}

#header .navbar-dark .nav-link,
#header.scrolled .navbar-dark .nav-link,
#header .navbar .dropdown-toggle,
#header.scrolled .navbar .dropdown-toggle {
    min-height: 38px;
    border-radius: 8px;
    color: var(--ui-brand-dark) !important;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 0.58rem 0.68rem;
}

#header .navbar-dark .nav-link:hover,
#header .navbar-dark .nav-link.active,
#header .navbar .dropdown-toggle:hover,
#header .navbar .dropdown-toggle.show {
    background: var(--ui-brand-dark);
    color: #ffffff !important;
}

#header .navbar-dark .nav-link[href="#inscricoes"] {
    background: var(--ui-copper);
    color: #ffffff !important;
}

.programacao-dropdown {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(6, 75, 67, 0.97);
    box-shadow: 0 18px 40px rgba(18, 37, 43, 0.2);
}

.programacao-dropdown .dropdown-item {
    border-radius: 8px;
}

#full-banner {
    min-height: min(760px, 88svh) !important;
    padding: clamp(7.6rem, 12vw, 10rem) 1rem clamp(2.6rem, 5vw, 4.5rem) !important;
}

#full-banner::before {
    background:
        linear-gradient(180deg, rgba(7, 31, 35, 0.64), rgba(7, 31, 35, 0.2) 44%, rgba(7, 31, 35, 0.72)),
        linear-gradient(100deg, rgba(6, 75, 67, 0.78), rgba(47, 126, 166, 0.28) 58%, rgba(200, 107, 60, 0.42)) !important;
}

.banner-content {
    width: min(940px, 100%);
}

.banner-kicker,
#full-banner .banner-content .banner-kicker {
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.14);
}

.banner-content h1 {
    font-size: clamp(3.8rem, 9vw, 7.8rem);
    line-height: 0.94;
}

.banner-content .banner-event-line {
    font-size: clamp(1.35rem, 2.7vw, 2.2rem) !important;
}

.banner-meta span,
#full-banner .banner-meta span,
.hero-highlights > div {
    border-radius: 8px;
    background: rgba(7, 31, 35, 0.38);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero-actions .btn,
.site-home .btn {
    border-radius: 8px !important;
    box-shadow: var(--ui-shadow-light);
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus-visible {
    background: #ffffff;
    color: var(--ui-brand-dark);
}

.section-heading {
    width: min(820px, 100%);
}

.section-kicker {
    border-radius: 8px;
    background: rgba(0, 122, 104, 0.1);
    color: var(--ui-brand-dark);
}

.section-heading h2,
#apresentacao h2,
#inscricoes h2,
#local h2,
#fale-conosco h2,
#patrocinadores h2,
#logos-patrocinadores h2 {
    color: var(--ui-brand-dark) !important;
    font-size: clamp(2rem, 4.2vw, 3.15rem);
}

.section-heading p,
.presentation-copy p,
#local .venue-copy p,
.contact-card p,
#patrocinadores p,
.pricing-note {
    color: var(--ui-muted) !important;
}

#apresentacao {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8f7 100%) !important;
}

.presentation-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
    gap: clamp(1.5rem, 4vw, 3.2rem);
}

.presentation-copy {
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--ui-line);
    border-radius: 8px;
    background: var(--ui-panel);
    box-shadow: var(--ui-shadow-light);
}

.event-summary-card,
#inscricoes .table-responsive,
#regras-inscricao,
.venue-card,
#form-contato,
.contact-card,
.sponsor-callout,
#logos-patrocinadores .row > [class*="col-"],
.programacao-page-card {
    border: 1px solid var(--ui-line) !important;
    border-radius: 8px !important;
    background: var(--ui-panel) !important;
    box-shadow: var(--ui-shadow-light) !important;
}

.event-summary-card {
    overflow: hidden;
    background:
        linear-gradient(135deg, #ffffff 0%, var(--ui-brand-soft) 100%) !important;
}

.summary-list span,
.contact-list li {
    border-radius: 8px;
    background: #f6faf9;
}

.committee-showcase {
    padding: clamp(3.5rem, 7vw, 5rem) 1rem;
}

#apresentacao .committee-showcase .row > [class*="col-"],
#palestrantes .row > [class*="col-"],
.rule-card {
    border-radius: 8px;
}

#temas-livres {
    background:
        linear-gradient(135deg, rgba(6, 40, 46, 0.98), rgba(6, 75, 67, 0.96) 52%, rgba(47, 126, 166, 0.9)),
        url('assets/wave-texture.jpg') center / cover fixed !important;
}

.submission-overview {
    gap: 1rem;
}

.submission-deadline,
.submission-cta,
.rule-card {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.rule-card {
    min-height: 100%;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.rule-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

#inscricoes {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%) !important;
}

#inscricoes table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

#inscricoes table th {
    background: var(--ui-brand-dark) !important;
    color: #ffffff !important;
    font-size: 0.84rem;
    letter-spacing: 0;
}

#inscricoes table td {
    vertical-align: middle;
    color: var(--ui-ink);
    font-weight: 600;
}

#inscricoes table tbody tr:hover td {
    background: #f3f8f7;
}

#toggle-regras,
#patrocinadores a.btn,
#local a.btn,
#fale-conosco button {
    border-radius: 8px !important;
}

#local {
    background:
        linear-gradient(135deg, #f7fbfa 0%, #ffffff 58%, #eef5f4 100%) !important;
}

.venue-card,
.contact-layout,
.sponsor-layout {
    overflow: hidden;
}

#local img.local-photo {
    height: 100%;
    min-height: 360px;
    border-radius: 8px !important;
    object-fit: cover;
}

#fale-conosco {
    background:
        linear-gradient(135deg, rgba(47, 126, 166, 0.1), rgba(255, 255, 255, 0.9) 44%, rgba(0, 122, 104, 0.08)) !important;
}

#form-contato {
    padding: clamp(1.1rem, 3vw, 1.6rem);
}

#form-contato .form-control {
    min-height: 50px;
    border: 1px solid var(--ui-line);
    border-radius: 8px;
    background: #fbfefd;
    color: var(--ui-ink);
    font-weight: 600;
}

#form-contato textarea.form-control {
    min-height: 140px;
}

#form-contato .form-control:focus {
    border-color: var(--ui-brand);
    box-shadow: 0 0 0 0.25rem rgba(0, 122, 104, 0.12);
}

.contact-card {
    padding: clamp(1.2rem, 3vw, 1.8rem);
}

#patrocinadores {
    background:
        linear-gradient(135deg, #fffaf6 0%, #ffffff 56%, #f4f8f7 100%) !important;
}

.sponsor-callout {
    padding: clamp(1.35rem, 4vw, 2.2rem);
    background:
        linear-gradient(135deg, rgba(200, 107, 60, 0.12), rgba(0, 122, 104, 0.08)) !important;
}

#logos-patrocinadores {
    background: #ffffff !important;
}

#logos-patrocinadores .row {
    gap: 1rem;
}

.patrocinador-logo {
    max-height: 118px;
    filter: saturate(0.94) contrast(1.02);
}

.patrocinador-logo:hover {
    filter: none;
}

.site-footer {
    background:
        linear-gradient(135deg, #10262f, #064b43 64%, #123842) !important;
}

.footer-grid {
    align-items: center;
}

.back-to-top {
    border-radius: 8px !important;
    background: var(--ui-copper) !important;
}

.programacao-page {
    background:
        linear-gradient(135deg, rgba(47, 126, 166, 0.1), rgba(0, 122, 104, 0.08)),
        #f5f8f7;
}

.programacao-page-header {
    background:
        linear-gradient(135deg, rgba(6, 75, 67, 0.97), rgba(47, 126, 166, 0.76)),
        url('assets/wave-texture.jpg') center / cover !important;
}

.programacao-page-card {
    margin: clamp(1.4rem, 4vw, 3rem) auto;
    overflow: hidden;
}

.programacao-empty-state {
    border-radius: 8px;
    background: #f6faf9;
}

@media (max-width: 1199.98px) {
    #header .container,
    #header.scrolled .container {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        gap: 0.65rem;
    }

    #logo,
    #header.scrolled #logo {
        flex-basis: auto;
        max-width: min(540px, 100%);
    }

    #header .navbar {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    #header .container,
    #header.scrolled .container {
        flex-direction: row;
        align-items: center;
    }

    #header .navbar {
        width: auto;
        flex: 0 0 auto;
    }

    #header .navbar-collapse,
    #header.scrolled .navbar-collapse {
        position: fixed;
        top: 78px;
        right: 14px;
        left: 14px;
        max-height: calc(100svh - 96px);
        overflow: auto;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: rgba(6, 75, 67, 0.98) !important;
        box-shadow: 0 18px 46px rgba(18, 37, 43, 0.24);
    }

    #header .navbar-nav,
    #header.scrolled .navbar-nav {
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.75rem;
    }

    #header .navbar-dark .nav-link,
    #header.scrolled .navbar-dark .nav-link,
    #header .navbar .dropdown-toggle,
    #header.scrolled .navbar .dropdown-toggle {
        color: #ffffff !important;
        justify-content: flex-start;
        width: 100%;
    }

    .programacao-dropdown {
        background: rgba(255, 255, 255, 0.08);
    }

    .presentation-grid,
    .submission-overview {
        grid-template-columns: 1fr;
    }

    .event-summary-card {
        position: static;
    }

    .rules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 78px;
    }

    .site-home section {
        padding: 3.4rem 0.85rem;
    }

    .site-home section > .container,
    .programacao-page main.container {
        width: min(100%, calc(100vw - 24px));
    }

    #header .container,
    #header.scrolled .container {
        width: calc(100% - 24px);
        min-height: 70px;
    }

    #header .event-mark,
    #header.scrolled .event-mark {
        grid-template-columns: minmax(102px, 0.9fr) 1px minmax(150px, 1.1fr);
        gap: 0.55rem;
    }

    #header .event-mark-sbot-image,
    #header.scrolled .event-mark-sbot-image {
        width: 102px;
    }

    #header .event-mark-main strong,
    #header.scrolled .event-mark-main strong {
        font-size: 0.82rem;
    }

    #header .event-mark-main span,
    #header.scrolled .event-mark-main span {
        font-size: 0.72rem;
    }

    #header .event-mark-main small,
    #header.scrolled .event-mark-main small {
        font-size: 0.38rem;
    }

    #header .navbar-collapse,
    #header.scrolled .navbar-collapse {
        top: 74px;
    }

    #full-banner {
        min-height: 86svh !important;
        padding: 6.8rem 0.85rem 2.4rem !important;
    }

    .banner-content h1,
    #full-banner .banner-content h1 {
        font-size: clamp(2.8rem, 16vw, 4.2rem) !important;
    }

    .banner-meta,
    .hero-actions,
    .hero-highlights {
        width: min(100%, 360px);
    }

    .hero-highlights,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .presentation-copy,
    .event-summary-card,
    .contact-card,
    #form-contato {
        padding: 1rem;
    }

    #local img.local-photo {
        min-height: 240px;
    }

    .footer-grid {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 390px) {
    #header .event-mark-main small,
    #header.scrolled .event-mark-main small {
        display: none;
    }
}

/* Orthopedic congress refinement layer */
:root {
    --ortho-navy: #0b2730;
    --ortho-blue: #146c86;
    --ortho-teal: #087c72;
    --ortho-green: #11815f;
    --ortho-mint: #eaf7f4;
    --ortho-gold: #c58a2a;
    --ortho-ink: #16272d;
    --ortho-muted: #5b6d73;
    --ortho-line: rgba(11, 39, 48, 0.12);
    --ortho-shadow: 0 24px 70px rgba(11, 39, 48, 0.14);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 9999;
    transform: translateY(-150%);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background: #ffffff;
    color: var(--ortho-navy);
    box-shadow: var(--ortho-shadow);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

body.site-home {
    color: var(--ortho-ink);
    background:
        linear-gradient(180deg, #f6fbfa 0%, #ffffff 28%, #eef8f5 100%);
}

#header,
#header.scrolled {
    background: rgba(8, 40, 48, 0.84) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

#header .scroll-progress {
    background: linear-gradient(90deg, var(--ortho-gold), #78d0bd);
}

#header .event-mark,
#header.scrolled .event-mark {
    border-radius: 8px;
    padding: 0.34rem 0.45rem;
}

#header .navbar-dark .nav-link,
#header.scrolled .navbar-dark .nav-link,
#header .navbar .dropdown-toggle,
#header.scrolled .navbar .dropdown-toggle {
    font-weight: 700;
    letter-spacing: 0;
}

#header .navbar-dark .nav-link[href="#inscricoes"],
#header .navbar-dark .nav-link[href="#inscricoes"]:hover,
#header .navbar-dark .nav-link[href="#inscricoes"].active {
    background: linear-gradient(135deg, var(--ortho-green), var(--ortho-teal)) !important;
    box-shadow: 0 14px 32px rgba(8, 124, 114, 0.24);
}

#full-banner {
    min-height: 92svh !important;
    overflow: hidden;
}

#full-banner::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(197, 138, 42, 0.22), transparent 28%),
        linear-gradient(120deg, rgba(6, 29, 36, 0.86), rgba(8, 78, 86, 0.64) 48%, rgba(9, 58, 67, 0.88)) !important;
}

.banner-content {
    max-width: 1060px;
}

.banner-kicker,
#full-banner .banner-content .banner-kicker {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: #dff8f2 !important;
}

.banner-content h1 {
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.banner-content .banner-subline {
    color: #d9fff6;
}

.banner-meta span,
#full-banner .banner-meta span,
.hero-highlights > div {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 30, 36, 0.42);
    backdrop-filter: blur(12px);
}

.hero-actions .btn,
.site-home .btn {
    border-radius: 8px !important;
}

.hero-actions .btn-success,
.site-home .btn-success {
    border: 0 !important;
    background: linear-gradient(135deg, var(--ortho-green), var(--ortho-teal)) !important;
}

.hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.58) !important;
}

.section-heading {
    max-width: 860px;
}

.section-kicker {
    color: var(--ortho-blue);
    background: rgba(20, 108, 134, 0.08);
}

.section-heading h2,
#apresentacao h2,
#inscricoes h2,
#local h2,
#fale-conosco h2,
#patrocinadores h2,
#logos-patrocinadores h2 {
    color: var(--ortho-navy) !important;
}

.presentation-copy,
.event-summary-card,
#inscricoes .table-responsive,
#regras-inscricao,
.venue-card,
#form-contato,
.contact-card,
.sponsor-callout,
#logos-patrocinadores .row > [class*="col-"],
.programacao-page-card {
    border: 1px solid var(--ortho-line);
    border-radius: 8px;
    box-shadow: var(--ortho-shadow);
}

.presentation-copy {
    border-left: 4px solid var(--ortho-teal);
}

.event-summary-card {
    background:
        linear-gradient(150deg, var(--ortho-navy), #0d5963 62%, #0b755f);
    color: #ffffff;
}

.event-summary-card .summary-label {
    color: #e6c57e;
}

.event-summary-card p,
.event-summary-card .summary-list span {
    color: rgba(255, 255, 255, 0.84);
}

.clinical-track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 0;
}

.clinical-track {
    border: 1px solid var(--ortho-line);
    border-radius: 8px;
    padding: 1.2rem;
    background: #ffffff;
    box-shadow: 0 16px 46px rgba(11, 39, 48, 0.09);
}

.clinical-track span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 0.85rem;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(20, 108, 134, 0.12), rgba(17, 129, 95, 0.12));
    color: var(--ortho-teal);
    font-size: 1.2rem;
}

.clinical-track h3 {
    margin: 0 0 0.5rem;
    color: var(--ortho-navy);
    font-size: 1.02rem;
    font-weight: 800;
}

.clinical-track p {
    margin: 0;
    color: var(--ortho-muted);
    line-height: 1.65;
}

#temas-livres {
    background:
        linear-gradient(135deg, rgba(9, 43, 52, 0.96), rgba(9, 103, 94, 0.92)),
        url("assets/wave-texture.jpg") center/cover;
}

.submission-deadline,
.submission-cta,
.rule-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.rule-card {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.13);
}

#inscricoes table th {
    background: var(--ortho-navy) !important;
}

#inscricoes table tbody td:first-child {
    color: var(--ortho-navy);
}

#toggle-regras,
#patrocinadores a.btn,
#local a.btn,
#fale-conosco button {
    border-radius: 8px !important;
}

#local .venue-copy h5,
.contact-card h5,
.sponsor-callout h3 {
    color: var(--ortho-navy) !important;
}

#local img.local-photo {
    border-radius: 8px;
    filter: saturate(1.04) contrast(1.03);
}

#form-contato .form-control {
    border-radius: 8px;
    border-color: rgba(11, 39, 48, 0.14);
    min-height: 48px;
}

#form-contato .form-control:focus {
    border-color: var(--ortho-teal);
    box-shadow: 0 0 0 0.22rem rgba(8, 124, 114, 0.14);
}

#fale-conosco button.btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--ortho-blue), var(--ortho-teal));
}

.contact-list li {
    border-radius: 8px;
}

.sponsor-callout {
    background:
        linear-gradient(135deg, rgba(11, 39, 48, 0.94), rgba(20, 108, 134, 0.86));
}

.patrocinador-logo {
    max-height: 116px;
    object-fit: contain;
}

.site-footer {
    background: var(--ortho-navy);
}

.back-to-top {
    border-radius: 8px;
    background: var(--ortho-teal);
}

.programacao-page {
    background:
        linear-gradient(180deg, #eff8f5, #ffffff);
}

.programacao-page-header {
    background: linear-gradient(135deg, var(--ortho-navy), var(--ortho-blue));
}

.programacao-empty-badge {
    color: var(--ortho-navy);
    background: #f5ddb0;
}

@media (max-width: 991.98px) {
    .clinical-track-grid {
        grid-template-columns: 1fr;
    }
}

/* Requested cleanup: remove framed callouts and improve header contrast */
#full-banner .hero-highlights,
#full-banner .banner-kicker,
.section-kicker,
.event-summary-card,
.submission-cta {
    display: none !important;
}

.presentation-grid {
    grid-template-columns: minmax(0, 1fr) !important;
}

.presentation-copy {
    max-width: 920px;
    margin-inline: auto;
}

.submission-overview {
    display: block !important;
}

#header,
#header.scrolled {
    background: rgba(4, 34, 40, 0.58) !important;
    border-bottom-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 10px 28px rgba(0, 20, 24, 0.18) !important;
}

#header .navbar-dark .nav-link,
#header.scrolled .navbar-dark .nav-link,
#header .navbar .dropdown-toggle,
#header.scrolled .navbar .dropdown-toggle {
    color: rgba(255, 255, 255, 0.96) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

#header .navbar-dark .nav-link:hover,
#header .navbar-dark .nav-link.active,
#header .navbar .dropdown-toggle:hover,
#header .navbar .dropdown-toggle.show,
#header.scrolled .navbar-dark .nav-link:hover,
#header.scrolled .navbar-dark .nav-link.active,
#header.scrolled .navbar .dropdown-toggle:hover,
#header.scrolled .navbar .dropdown-toggle.show {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

#header .event-mark-main strong,
#header.scrolled .event-mark-main strong,
#header .event-mark-main span,
#header.scrolled .event-mark-main span {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

#header .event-mark-main small,
#header.scrolled .event-mark-main small {
    color: rgba(255, 255, 255, 0.82) !important;
}

#header .event-mark-divider,
#header.scrolled .event-mark-divider {
    background: rgba(255, 255, 255, 0.32) !important;
}

@media (max-width: 991.98px) {
    #header .navbar-collapse,
    #header.scrolled .navbar-collapse {
        background: rgba(4, 34, 40, 0.86) !important;
        backdrop-filter: blur(16px);
    }
}

/* Contact, sponsors and footer requested adjustments */
.sponsor-callout {
    background:
        linear-gradient(135deg, rgba(5, 34, 41, 0.96), rgba(4, 104, 94, 0.9)) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

.sponsor-callout h3,
.sponsor-callout h3 strong,
.sponsor-callout p {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.sponsor-callout p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 10%, rgba(35, 150, 132, 0.36), transparent 30%),
        linear-gradient(135deg, #071f27 0%, #073f45 45%, #086b60 100%) !important;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
        radial-gradient(circle at 22% 60%, rgba(255, 255, 255, 0.08), transparent 28%);
    opacity: 0.42;
}

.site-footer .footer-grid {
    position: relative;
    z-index: 1;
}

.instagram-link {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-top: 0.9rem;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #e4405f, #f59e0b);
    color: #ffffff !important;
    font-size: 1.35rem;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.instagram-link:hover,
.instagram-link:focus-visible {
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Committee readability fix */
#apresentacao .committee-showcase .row > [class*="col-"] {
    min-height: 255px;
    justify-content: flex-start;
}

#apresentacao .committee-showcase h5,
#apresentacao .committee-showcase .row h5,
#apresentacao .committee-showcase .row > [class*="col-"] h5 {
    color: #10262f !important;
    text-shadow: none !important;
}

#apresentacao .committee-showcase p,
#apresentacao .committee-showcase p.text-muted,
#apresentacao .committee-showcase .row p,
#apresentacao .committee-showcase .row > [class*="col-"] p {
    display: block !important;
    margin-top: 0.35rem !important;
    color: #4f6670 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

/* More transparent video header */
#header,
#header.scrolled {
    background: rgba(4, 34, 40, 0.34) !important;
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 28px rgba(0, 20, 24, 0.08) !important;
    backdrop-filter: blur(10px);
}

#full-banner .hero-actions {
    display: none !important;
}

/* Sponsor, certificates and committee presentation refresh */
#logos-patrocinadores {
    background:
        linear-gradient(180deg, #ffffff 0%, #f5faf8 100%) !important;
    padding-block: clamp(4rem, 7vw, 6.5rem) !important;
}

#logos-patrocinadores .section-heading {
    max-width: 760px;
    margin: 0 auto 2.6rem;
}

#logos-patrocinadores .section-heading h2,
#logos-patrocinadores .container > h2 {
    color: var(--ortho-navy) !important;
    letter-spacing: 0 !important;
}

#logos-patrocinadores .container > .separador {
    display: none !important;
}

#logos-patrocinadores .container > h2:not(:first-child) {
    width: fit-content;
    margin: 2rem auto 1.1rem !important;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(8, 124, 114, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #07584f !important;
    font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
    box-shadow: 0 12px 28px rgba(11, 39, 48, 0.08);
}

#logos-patrocinadores .row {
    width: min(100%, 980px);
    margin-inline: auto !important;
    justify-content: center !important;
    gap: 1rem;
}

#logos-patrocinadores .row > [class*="col-"] {
    display: grid !important;
    flex: 0 1 260px !important;
    width: min(100%, 260px) !important;
    min-height: 164px !important;
    padding: 1.25rem !important;
    place-items: center;
    border: 1px solid rgba(11, 39, 48, 0.1) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 252, 0.98)) !important;
    box-shadow: 0 18px 40px rgba(11, 39, 48, 0.1) !important;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#logos-patrocinadores .row > [class*="col-"]:hover {
    transform: translateY(-3px);
    border-color: rgba(8, 124, 114, 0.28) !important;
    box-shadow: 0 22px 52px rgba(11, 39, 48, 0.15) !important;
}

#logos-patrocinadores .patrocinador-logo {
    width: 100%;
    max-width: 210px;
    max-height: 112px !important;
    object-fit: contain;
    filter: saturate(1.03) contrast(1.03);
}

#logos-patrocinadores .container > h2:nth-of-type(2) + .row > [class*="col-"] {
    flex-basis: 286px !important;
    width: min(100%, 286px) !important;
    min-height: 180px !important;
}

#logos-patrocinadores .container > h2:nth-of-type(2) + .row .patrocinador-logo {
    max-width: 230px;
    max-height: 124px !important;
}

.certificates-section {
    background:
        linear-gradient(135deg, rgba(7, 88, 79, 0.08), rgba(20, 108, 134, 0.06)),
        #ffffff;
    padding-block: clamp(3.5rem, 6vw, 5.5rem) !important;
}

.certificates-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 980px;
    margin-inline: auto;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid rgba(8, 124, 114, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(11, 39, 48, 0.09);
}

.section-kicker-static {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #087c72;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.certificates-placeholder h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.certificates-placeholder p {
    max-width: 560px;
    margin: 0;
    color: #526a73;
    font-weight: 600;
}

.certificates-mark {
    display: grid;
    width: clamp(76px, 10vw, 112px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #07584f, #0f9b87);
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 3.7rem);
    box-shadow: 0 18px 42px rgba(8, 124, 114, 0.24);
}

#apresentacao .committee-roundtable {
    max-width: 1180px;
    margin-inline: auto;
}

#apresentacao .committee-roundtable > h3 {
    color: var(--ortho-navy) !important;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0 !important;
}

.committee-orbit {
    position: relative;
    min-height: 690px;
    margin-inline: auto;
    isolation: isolate;
}

.committee-orbit::before {
    content: "";
    position: absolute;
    inset: 58px 12%;
    z-index: -1;
    border: 1px solid rgba(8, 124, 114, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(8, 124, 114, 0.08), transparent 42%),
        radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 62%);
}

.committee-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 210px;
    min-height: 150px;
    padding: 1.3rem;
    place-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(8, 124, 114, 0.22);
    border-radius: 8px;
    background: linear-gradient(135deg, #073f45, #087c72);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(11, 39, 48, 0.22);
}

.committee-center span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.82;
}

.committee-center strong {
    font-size: 1.55rem;
    line-height: 1.05;
}

#apresentacao .committee-card {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 216px;
    min-height: 236px;
    padding: 1.25rem 1rem;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(8, 124, 114, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(11, 39, 48, 0.11);
}

#apresentacao .committee-card:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(270deg) translateX(285px) rotate(-270deg);
}

#apresentacao .committee-card:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(315deg) translateX(285px) rotate(-315deg);
}

#apresentacao .committee-card:nth-of-type(4) {
    transform: translate(-50%, -50%) rotate(0deg) translateX(285px) rotate(0deg);
}

#apresentacao .committee-card:nth-of-type(5) {
    transform: translate(-50%, -50%) rotate(45deg) translateX(285px) rotate(-45deg);
}

#apresentacao .committee-card:nth-of-type(6) {
    transform: translate(-50%, -50%) rotate(90deg) translateX(285px) rotate(-90deg);
}

#apresentacao .committee-card:nth-of-type(7) {
    transform: translate(-50%, -50%) rotate(135deg) translateX(285px) rotate(-135deg);
}

#apresentacao .committee-card:nth-of-type(8) {
    transform: translate(-50%, -50%) rotate(180deg) translateX(285px) rotate(-180deg);
}

#apresentacao .committee-card:nth-of-type(9) {
    transform: translate(-50%, -50%) rotate(225deg) translateX(285px) rotate(-225deg);
}

#apresentacao .committee-card img {
    width: 96px !important;
    height: 96px !important;
    object-fit: cover;
    border: 4px solid #ffffff;
    outline: 1px solid rgba(8, 124, 114, 0.26);
    box-shadow: 0 12px 28px rgba(11, 39, 48, 0.14) !important;
}

#apresentacao .committee-card h5 {
    margin: 0.95rem 0 0.35rem !important;
    color: #10262f !important;
    font-size: 1rem;
    line-height: 1.2;
}

#apresentacao .committee-card p {
    margin: 0 !important;
    color: #526a73 !important;
    font-size: 0.82rem;
    line-height: 1.35;
}

@media (max-width: 1199.98px) {
    .committee-orbit {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .committee-orbit::before {
        inset: 7%;
        border-radius: 8px;
    }

    .committee-center,
    #apresentacao .committee-card {
        position: static;
        width: 100%;
        transform: none !important;
    }

    .committee-center {
        grid-column: 1 / -1;
        min-height: 118px;
    }
}

@media (max-width: 767.98px) {
    #logos-patrocinadores .row > [class*="col-"] {
        flex-basis: min(100%, 320px) !important;
        width: min(100%, 320px) !important;
    }

    .certificates-placeholder {
        align-items: flex-start;
        flex-direction: column;
    }

    .committee-orbit {
        grid-template-columns: 1fr;
    }

    #apresentacao .committee-card {
        min-height: 220px;
    }
}

/* ============================================================
   Comissão Organizadora — Orbit Redesign
   ============================================================ */

.committee-section {
    position: relative;
    width: 100vw;
    margin-top: 3.5rem;
    margin-left: 50%;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at 68% 28%, rgba(35, 201, 146, 0.2), transparent 52%),
        radial-gradient(ellipse at 18% 76%, rgba(49, 134, 96, 0.13), transparent 44%),
        linear-gradient(140deg, #0d1f1a 0%, #0c3a2d 46%, #0a4e3c 100%);
    padding: clamp(3rem, 5vw, 5rem) 1rem clamp(3.5rem, 5vw, 5.5rem);
    overflow: hidden;
}

.committee-section-heading {
    text-align: center;
    color: #ffffff !important;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    letter-spacing: -0.01em;
    margin-bottom: 3rem !important;
    position: relative;
    z-index: 1;
}

/* Orbit container */
#apresentacao .committee-section .committee-orbit {
    --orbit-r: 285px;
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: calc(var(--orbit-r) * 2 + 220px);
    margin-inline: auto;
    display: block;
    isolation: isolate;
}

/* Orbit ring visual */
#apresentacao .committee-section .committee-orbit::before {
    content: '';
    position: absolute;
    inset: unset;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: calc(var(--orbit-r) * 2 + 12px);
    height: calc(var(--orbit-r) * 2 + 12px);
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    background: none;
    filter: none;
    z-index: 0;
    pointer-events: none;
}

/* Center medallion */
#apresentacao .committee-section .committee-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255,255,255,0.12);
    z-index: 2;
    padding: 0.5rem;
}

#apresentacao .committee-section .committee-center span {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    opacity: 0.68;
    line-height: 1;
    display: block;
}

#apresentacao .committee-section .committee-center strong {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 800;
    display: block;
    margin-top: 0.2rem;
}

/* Card base (overrides old #apresentacao .committee-card) */
#apresentacao .committee-section .committee-card {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem 0.9rem;
    width: 130px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
    min-height: unset;
    z-index: 1;
}

#apresentacao .committee-section .committee-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
}

/* Card positions — 8 members at 45° intervals, starting at 12 o'clock */
#apresentacao .committee-section .committee-card:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-90deg) translateX(var(--orbit-r)) rotate(90deg);
}
#apresentacao .committee-section .committee-card:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg) translateX(var(--orbit-r)) rotate(45deg);
}
#apresentacao .committee-section .committee-card:nth-child(4) {
    transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-r)) rotate(0deg);
}
#apresentacao .committee-section .committee-card:nth-child(5) {
    transform: translate(-50%, -50%) rotate(45deg) translateX(var(--orbit-r)) rotate(-45deg);
}
#apresentacao .committee-section .committee-card:nth-child(6) {
    transform: translate(-50%, -50%) rotate(90deg) translateX(var(--orbit-r)) rotate(-90deg);
}
#apresentacao .committee-section .committee-card:nth-child(7) {
    transform: translate(-50%, -50%) rotate(135deg) translateX(var(--orbit-r)) rotate(-135deg);
}
#apresentacao .committee-section .committee-card:nth-child(8) {
    transform: translate(-50%, -50%) rotate(180deg) translateX(var(--orbit-r)) rotate(-180deg);
}
#apresentacao .committee-section .committee-card:nth-child(9) {
    transform: translate(-50%, -50%) rotate(225deg) translateX(var(--orbit-r)) rotate(-225deg);
}

/* Card photo */
#apresentacao .committee-section .committee-card img {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px;
    object-fit: cover;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32) !important;
    display: block;
}

/* Card name */
#apresentacao .committee-section .committee-card h5 {
    color: #ffffff !important;
    font-size: 0.78rem !important;
    font-weight: 700;
    margin: 0.65rem 0 0.2rem !important;
    line-height: 1.25;
}

/* Card role */
#apresentacao .committee-section .committee-card p {
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 0.69rem !important;
    margin: 0 !important;
    line-height: 1.3;
}

/* Responsive: medium desktop (1200–1440px) */
@media (max-width: 1399.98px) {
    #apresentacao .committee-section .committee-orbit {
        --orbit-r: 262px;
    }
}

/* Responsive: laptop / small desktop */
@media (max-width: 1199.98px) {
    #apresentacao .committee-section .committee-orbit {
        --orbit-r: 238px;
    }
}

/* Responsive: tablet landscape */
@media (max-width: 991.98px) {
    #apresentacao .committee-section .committee-orbit {
        --orbit-r: 200px;
        max-width: 680px;
    }

    #apresentacao .committee-section .committee-card {
        width: 118px;
        padding: 0.85rem 0.6rem 0.8rem;
    }

    #apresentacao .committee-section .committee-card img {
        width: 68px !important;
        height: 68px !important;
        min-width: 68px;
    }
}

/* Responsive: mobile — switch to equal 2-column grid */
@media (max-width: 767.98px) {
    #apresentacao .committee-section .committee-orbit {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
        min-height: auto;
        max-width: 480px;
    }

    #apresentacao .committee-section .committee-orbit::before {
        display: none;
    }

    #apresentacao .committee-section .committee-center {
        position: static;
        width: 100%;
        height: auto;
        min-height: 80px;
        border-radius: 12px;
        transform: none;
        grid-column: 1 / -1;
        padding: 0.85rem 1rem;
        flex-direction: row;
        gap: 0.6rem;
    }

    #apresentacao .committee-section .committee-card {
        position: static;
        transform: none !important;
        width: 100%;
        min-height: 160px;
    }
}

/* ============================================================
   Patrocinadores — Sponsor Tier Layout
   ============================================================ */

.sponsor-tier {
    margin-bottom: 3rem;
}

.sponsor-tier:last-child {
    margin-bottom: 0;
}

.sponsor-tier-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.sponsor-tier-header::before,
.sponsor-tier-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

.sponsor-tier-badge {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.42rem 1.45rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
}

.sponsor-tier-platinum .sponsor-tier-badge {
    background: linear-gradient(135deg, #1c1c2e, #2d2d4e);
    color: #d4b84a;
    border: 1px solid rgba(212, 184, 74, 0.28);
    box-shadow: 0 2px 10px rgba(212, 184, 74, 0.1);
}

.sponsor-tier-ouro .sponsor-tier-badge {
    background: linear-gradient(135deg, #b86e0a, #e0a018);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(184, 110, 10, 0.2);
}

.sponsor-tier-realizacao .sponsor-tier-badge {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 120, 95, 0.18);
}

.sponsor-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 3px 14px rgba(13, 80, 67, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    min-width: 180px;
    max-width: 240px;
    min-height: 110px;
    flex: 1 1 180px;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(13, 80, 67, 0.1);
    border-color: var(--brand);
}

.sponsor-card img {
    max-height: 68px;
    max-width: 170px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.sponsor-tier-platinum .sponsor-card {
    padding: 1.75rem 2.25rem;
    min-height: 130px;
}

.sponsor-tier-platinum .sponsor-card img {
    max-height: 88px;
    max-width: 200px;
}

@media (max-width: 575.98px) {
    .sponsor-card {
        min-width: 138px;
        max-width: 168px;
        padding: 1.1rem 1.25rem;
        min-height: 88px;
    }

    .sponsor-card img {
        max-height: 50px;
    }

    .sponsor-tier-platinum .sponsor-card {
        padding: 1.3rem 1.5rem;
        min-height: 104px;
    }

    .sponsor-tier-platinum .sponsor-card img {
        max-height: 62px;
    }
}

/* Final institutional pass: sponsors and organizing committee */
#logos-patrocinadores {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4faf8 100%) !important;
}

#logos-patrocinadores > .container {
    max-width: 1120px;
}

#logos-patrocinadores .section-heading {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

#logos-patrocinadores .section-heading h2 {
    color: var(--ortho-navy, #0b2730) !important;
    letter-spacing: 0 !important;
}

#logos-patrocinadores .sponsor-tier {
    max-width: 1040px;
    margin: 0 auto clamp(1.4rem, 3vw, 2rem);
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid rgba(8, 124, 114, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 252, 0.98));
    box-shadow: 0 20px 54px rgba(11, 39, 48, 0.08);
}

#logos-patrocinadores .sponsor-tier-platinum {
    border-color: rgba(8, 124, 114, 0.22);
    box-shadow: 0 24px 68px rgba(11, 39, 48, 0.12);
}

#logos-patrocinadores .sponsor-tier-header {
    justify-content: center;
    margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}

#logos-patrocinadores .sponsor-tier-header::before,
#logos-patrocinadores .sponsor-tier-header::after {
    max-width: 280px;
    background: rgba(8, 124, 114, 0.18);
}

#logos-patrocinadores .sponsor-tier-badge {
    min-width: 132px;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-align: center;
}

#logos-patrocinadores .sponsor-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
    align-items: stretch;
}

#logos-patrocinadores .sponsor-tier-platinum .sponsor-logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#logos-patrocinadores .sponsor-card {
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 160px;
    padding: clamp(1.4rem, 3vw, 2.1rem);
    border: 1px solid rgba(8, 124, 114, 0.16);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(11, 39, 48, 0.08);
}

#logos-patrocinadores .sponsor-tier-platinum .sponsor-card {
    min-height: 184px;
    padding: clamp(1.55rem, 3vw, 2.25rem);
}

#logos-patrocinadores .sponsor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(8, 124, 114, 0.34);
    box-shadow: 0 22px 48px rgba(11, 39, 48, 0.14);
}

#logos-patrocinadores .sponsor-card img {
    width: 100%;
    max-width: 235px;
    max-height: 104px;
    object-fit: contain;
}

#logos-patrocinadores .sponsor-tier-platinum .sponsor-card img {
    max-width: 260px;
    max-height: 118px;
}

#logos-patrocinadores .sponsor-tier-ouro,
#logos-patrocinadores .sponsor-tier-realizacao {
    max-width: 640px;
}

#logos-patrocinadores .sponsor-tier-ouro .sponsor-logos-grid,
#logos-patrocinadores .sponsor-tier-realizacao .sponsor-logos-grid {
    grid-template-columns: minmax(240px, 340px);
    justify-content: center;
}

#apresentacao .committee-section {
    max-width: 1120px;
    margin: clamp(3rem, 6vw, 4.5rem) auto 0;
    padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 50%, rgba(32, 137, 117, 0.2), transparent 34%),
        linear-gradient(135deg, #082f2a 0%, #0a4b3f 48%, #0b624d 100%);
}

#apresentacao .committee-section-heading {
    margin-bottom: clamp(2rem, 4vw, 3.2rem) !important;
    color: #ffffff !important;
    text-align: center;
    letter-spacing: 0 !important;
}

#apresentacao .committee-section .committee-orbit {
    --orbit-r: 330px;
    max-width: 1050px;
    min-height: 780px;
}

#apresentacao .committee-section .committee-orbit::before {
    width: calc(var(--orbit-r) * 2 + 28px);
    height: calc(var(--orbit-r) * 2 + 28px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 1px) center/48px 48px;
    opacity: 0.75;
}

#apresentacao .committee-section .committee-center {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

#apresentacao .committee-section .committee-center span {
    font-size: 0.72rem;
    letter-spacing: 0;
    opacity: 0.78;
}

#apresentacao .committee-section .committee-center strong {
    font-size: 1.2rem;
}

#apresentacao .committee-section .committee-card {
    width: 166px;
    min-height: 198px;
    padding: 1.1rem 0.95rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

#apresentacao .committee-section .committee-card:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-112.5deg) translateX(var(--orbit-r)) rotate(112.5deg);
}
#apresentacao .committee-section .committee-card:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-67.5deg) translateX(var(--orbit-r)) rotate(67.5deg);
}
#apresentacao .committee-section .committee-card:nth-child(4) {
    transform: translate(-50%, -50%) rotate(-22.5deg) translateX(var(--orbit-r)) rotate(22.5deg);
}
#apresentacao .committee-section .committee-card:nth-child(5) {
    transform: translate(-50%, -50%) rotate(22.5deg) translateX(var(--orbit-r)) rotate(-22.5deg);
}
#apresentacao .committee-section .committee-card:nth-child(6) {
    transform: translate(-50%, -50%) rotate(67.5deg) translateX(var(--orbit-r)) rotate(-67.5deg);
}
#apresentacao .committee-section .committee-card:nth-child(7) {
    transform: translate(-50%, -50%) rotate(112.5deg) translateX(var(--orbit-r)) rotate(-112.5deg);
}
#apresentacao .committee-section .committee-card:nth-child(8) {
    transform: translate(-50%, -50%) rotate(157.5deg) translateX(var(--orbit-r)) rotate(-157.5deg);
}
#apresentacao .committee-section .committee-card:nth-child(9) {
    transform: translate(-50%, -50%) rotate(202.5deg) translateX(var(--orbit-r)) rotate(-202.5deg);
}

#apresentacao .committee-section .committee-card img {
    width: 86px !important;
    height: 86px !important;
    min-width: 86px;
    border: 3px solid rgba(255, 255, 255, 0.72);
}

#apresentacao .committee-section .committee-card h5 {
    margin-top: 0.75rem !important;
    color: #ffffff !important;
    font-size: 0.92rem !important;
    line-height: 1.18;
}

#apresentacao .committee-section .committee-card p {
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 0.76rem !important;
    line-height: 1.28;
}

@media (max-width: 1199.98px) {
    #apresentacao .committee-section .committee-orbit {
        --orbit-r: 280px;
        max-width: 900px;
        min-height: 700px;
    }

    #apresentacao .committee-section .committee-card {
        width: 150px;
        min-height: 188px;
    }
}

@media (max-width: 991.98px) {
    #logos-patrocinadores .sponsor-tier-platinum .sponsor-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #apresentacao .committee-section .committee-orbit {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        max-width: 720px;
        min-height: auto;
    }

    #apresentacao .committee-section .committee-orbit::before {
        display: none;
    }

    #apresentacao .committee-section .committee-center,
    #apresentacao .committee-section .committee-card {
        position: static;
        width: 100%;
        transform: none !important;
    }

    #apresentacao .committee-section .committee-center {
        grid-column: 1 / -1;
        height: auto;
        min-height: 104px;
        border-radius: 8px;
    }
}

@media (max-width: 575.98px) {
    #logos-patrocinadores .sponsor-tier {
        padding: 1rem;
    }

    #logos-patrocinadores .sponsor-tier-platinum .sponsor-logos-grid,
    #logos-patrocinadores .sponsor-logos-grid,
    #apresentacao .committee-section .committee-orbit {
        grid-template-columns: 1fr;
    }

    #logos-patrocinadores .sponsor-card,
    #logos-patrocinadores .sponsor-tier-platinum .sponsor-card {
        min-height: 140px;
    }
}

/* Automatic committee carousel */
#apresentacao .committee-section {
    max-width: 1040px;
    margin: clamp(3rem, 6vw, 4.5rem) auto 0;
    padding: clamp(2.4rem, 5vw, 4.4rem) clamp(1rem, 4vw, 2.5rem);
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #082f2a 0%, #0a4b3f 50%, #0b624d 100%);
    box-shadow: 0 22px 68px rgba(11, 39, 48, 0.16);
}

#apresentacao .committee-section-heading {
    margin-bottom: clamp(1.8rem, 4vw, 3rem) !important;
    color: #ffffff !important;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    letter-spacing: 0 !important;
}

#apresentacao .committee-carousel {
    width: min(100%, 700px);
    margin-inline: auto;
}

#apresentacao .committee-carousel-stage {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    isolation: isolate;
}

#apresentacao .committee-carousel-stage::before {
    content: "";
    position: absolute;
    inset: 24px 8%;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 48%);
    pointer-events: none;
}

#apresentacao .committee-carousel-stage > .committee-card,
#apresentacao .committee-carousel-stage > .committee-card:nth-child(1),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(2),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(3),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(4),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(5),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(6),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(7),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(8),
#apresentacao .committee-carousel-stage > .committee-card:nth-child(9) {
    position: absolute !important;
    inset: 0;
    top: 50% !important;
    left: 50% !important;
    z-index: 1;
    display: flex;
    width: min(100%, 520px) !important;
    min-height: 340px !important;
    padding: clamp(1.6rem, 4vw, 2.4rem) !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(72%, -50%) !important;
    transition:
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 850ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 249, 0.98));
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#apresentacao .committee-carousel-stage > .committee-card.is-active,
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(1),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(2),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(3),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(4),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(5),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(6),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(7),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(8),
#apresentacao .committee-carousel-stage > .committee-card.is-active:nth-child(9) {
    z-index: 3;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) !important;
}

#apresentacao .committee-carousel-stage > .committee-card.is-exiting,
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(1),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(2),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(3),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(4),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(5),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(6),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(7),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(8),
#apresentacao .committee-carousel-stage > .committee-card.is-exiting:nth-child(9) {
    z-index: 2;
    opacity: 0;
    transform: translate(-172%, -50%) !important;
}

#apresentacao .committee-carousel-stage > .committee-card:hover {
    border-color: rgba(8, 124, 114, 0.25);
    box-shadow: 0 32px 82px rgba(0, 0, 0, 0.28);
}

#apresentacao .committee-carousel-stage > .committee-card img {
    width: clamp(132px, 20vw, 168px) !important;
    height: clamp(132px, 20vw, 168px) !important;
    min-width: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    outline: 1px solid rgba(8, 124, 114, 0.22);
    box-shadow: 0 18px 44px rgba(11, 39, 48, 0.18) !important;
}

#apresentacao .committee-carousel-stage > .committee-card h5 {
    margin: 1.25rem 0 0.4rem !important;
    color: #10262f !important;
    font-size: clamp(1.35rem, 3vw, 1.85rem) !important;
    font-weight: 800;
    line-height: 1.1;
}

#apresentacao .committee-carousel-stage > .committee-card p {
    max-width: 320px;
    margin: 0 !important;
    color: #526a73 !important;
    font-size: clamp(0.95rem, 2vw, 1.08rem) !important;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 767.98px) {
    #apresentacao .committee-section {
        padding: 2.25rem 0.9rem;
    }

    #apresentacao .committee-carousel {
        width: 100%;
    }

    #apresentacao .committee-carousel-stage {
        min-height: 390px;
    }

    #apresentacao .committee-carousel-stage > .committee-card,
    #apresentacao .committee-carousel-stage > .committee-card:nth-child(n) {
        width: min(100%, 340px) !important;
        min-height: 330px !important;
        padding: 1.35rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #apresentacao .committee-carousel-stage > .committee-card {
        transition: opacity 200ms ease;
    }
}

/* COTECE final institutional visual layer */
:root {
    --cotece-ink: #0b2730;
    --cotece-deep: #05262b;
    --cotece-green: #087c72;
    --cotece-green-2: #0b9a82;
    --cotece-gold: #d6a033;
    --cotece-mist: #f2faf7;
    --cotece-line: rgba(8, 124, 114, 0.16);
    --cotece-shadow: 0 22px 58px rgba(11, 39, 48, 0.12);
}

html {
    scroll-padding-top: 92px;
}

body.site-home {
    background:
        radial-gradient(circle at 16% 10%, rgba(8, 124, 114, 0.06), transparent 30%),
        linear-gradient(180deg, #f7fbfa 0%, #ffffff 34%, #eef8f5 100%) !important;
}

#header,
#header.scrolled {
    background: rgba(5, 38, 43, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 28px rgba(0, 22, 26, 0.16) !important;
    backdrop-filter: blur(10px) !important;
}

#header .container,
#header.scrolled .container {
    min-height: 68px !important;
}

#header .event-mark-main small {
    opacity: 0.84;
}

#header .navbar-nav,
#header.scrolled .navbar-nav {
    gap: 0.18rem !important;
}

#header .navbar-dark .nav-link,
#header.scrolled .navbar-dark .nav-link,
#header .navbar .dropdown-toggle,
#header.scrolled .navbar .dropdown-toggle {
    padding: 0.48rem 0.62rem !important;
    border-radius: 8px !important;
    font-size: 0.76rem !important;
    letter-spacing: 0 !important;
}

#full-banner {
    min-height: 94svh !important;
    position: relative;
    overflow: hidden;
}

#full-banner::before {
    background:
        radial-gradient(circle at 74% 26%, rgba(8, 124, 114, 0.36), transparent 28%),
        linear-gradient(115deg, rgba(3, 23, 28, 0.9), rgba(6, 67, 72, 0.72) 46%, rgba(3, 27, 32, 0.92)) !important;
}

#full-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 72% 46%, transparent 0 15%, rgba(255, 255, 255, 0.13) 15.3%, transparent 15.7%),
        radial-gradient(ellipse at 78% 42%, transparent 0 8%, rgba(255, 255, 255, 0.12) 8.3%, transparent 8.7%),
        linear-gradient(126deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48.1% 48.28%, transparent 48.38%),
        linear-gradient(38deg, transparent 0 56%, rgba(255, 255, 255, 0.08) 56.1% 56.28%, transparent 56.38%);
    opacity: 0.62;
}

#full-banner .container {
    position: relative;
    z-index: 2;
}

#full-banner .banner-content {
    max-width: 1080px;
    margin-inline: auto;
}

#full-banner .banner-kicker,
#full-banner .hero-highlights,
#full-banner .hero-actions {
    display: flex !important;
}

#full-banner .hero-highlights {
    display: grid !important;
}

#full-banner .banner-kicker {
    width: fit-content;
    margin: 0 auto 1rem;
    padding: 0.42rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

#full-banner .banner-content h1 {
    font-size: clamp(3.4rem, 9vw, 8rem);
    line-height: 0.92;
    text-shadow: 0 24px 52px rgba(0, 0, 0, 0.36);
}

#full-banner .banner-event-line {
    color: #e7fff8 !important;
    font-size: clamp(1.55rem, 4vw, 3.1rem);
    font-weight: 800;
}

#full-banner .banner-subline {
    max-width: 860px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: clamp(0.95rem, 2vw, 1.3rem);
}

#full-banner .banner-meta {
    gap: 0.75rem;
    justify-content: center;
}

#full-banner .banner-meta span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(3, 25, 30, 0.48);
    color: #ffffff;
}

#full-banner .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.45rem;
}

#full-banner .hero-actions .btn {
    min-width: 178px;
    border-radius: 8px !important;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

#full-banner .hero-actions .btn-success {
    background: linear-gradient(135deg, var(--cotece-green), var(--cotece-green-2)) !important;
}

.hero-deadline-panel {
    width: min(100%, 430px);
    margin: 1.25rem auto 0;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(4, 28, 34, 0.52);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-deadline-label {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
}

.countdown-grid span {
    display: grid;
    padding: 0.58rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.countdown-grid strong {
    font-size: 1.35rem;
    line-height: 1;
}

.countdown-grid small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

#full-banner .hero-highlights {
    width: min(100%, 980px);
    margin: 1.25rem auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

#full-banner .hero-highlights > div {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.event-intelligence-strip {
    position: relative;
    z-index: 3;
    margin-top: -2.6rem;
    padding: 0 0 2.8rem;
}

.event-intelligence-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.event-intelligence-grid article,
.registration-command-center article,
.registration-steps article,
.faq-grid details {
    border: 1px solid var(--cotece-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--cotece-shadow);
}

.event-intelligence-grid article {
    display: grid;
    min-height: 132px;
    padding: 1.05rem;
    align-content: start;
    gap: 0.35rem;
}

.event-intelligence-grid i {
    color: var(--cotece-green);
    font-size: 1.35rem;
}

.event-intelligence-grid span,
.registration-command-center span {
    color: #5b7078;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.event-intelligence-grid strong,
.registration-command-center strong {
    color: var(--cotece-ink);
    line-height: 1.25;
}

#apresentacao,
#inscricoes,
#logos-patrocinadores {
    position: relative;
    overflow: hidden;
}

#apresentacao::before,
#inscricoes::before,
#logos-patrocinadores::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 124, 114, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
        linear-gradient(0deg, rgba(8, 124, 114, 0.035) 1px, transparent 1px) 0 0 / 54px 54px;
    opacity: 0.55;
}

#apresentacao > .container,
#inscricoes > .container,
#logos-patrocinadores > .container {
    position: relative;
    z-index: 1;
}

.section-kicker {
    display: inline-block !important;
}

.event-summary-card,
.submission-cta {
    display: block !important;
}

.registration-command-center {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto 1.3rem;
}

.registration-command-center article {
    padding: 1.15rem;
}

.registration-command-center small {
    display: block;
    margin-top: 0.35rem;
    color: #63777f;
    font-weight: 700;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.2rem 0;
}

.registration-steps article {
    padding: 1.2rem;
}

.registration-steps span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 0.8rem;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cotece-green), var(--cotece-green-2));
    color: #ffffff;
    font-weight: 900;
}

.registration-steps h3 {
    color: var(--cotece-ink);
    font-size: 1.05rem;
}

.registration-steps p {
    margin: 0;
    color: #5a7078;
}

.inscricao-cta-wrap,
.inscricao-secondary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.inscricao-cta-wrap {
    margin: 1.4rem 0 1.8rem;
}

.inscricao-secondary-cta {
    margin: 0 0 1.5rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(8, 124, 114, 0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(11, 39, 48, 0.07);
}

.inscricao-secondary-cta span {
    color: var(--cotece-ink);
    font-weight: 800;
}

#inscricoes .table-responsive {
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--cotece-shadow);
}

#inscricoes table {
    min-width: 760px;
}

#inscricoes table th {
    background: var(--cotece-deep) !important;
}

#inscricoes table tbody td:first-child {
    color: var(--cotece-ink);
    font-weight: 900;
}

#apresentacao .committee-section {
    display: grid;
    width: min(calc(100vw - 2rem), 1320px);
    grid-template-columns: minmax(300px, 0.75fr) minmax(460px, 1.25fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    max-width: none;
    min-height: clamp(520px, 55vw, 660px);
    margin: 0 0 0 50%;
    padding: clamp(3rem, 5.8vw, 5.6rem);
    transform: translateX(-50%);
}

#apresentacao .committee-section-heading,
#apresentacao .committee-section-intro {
    grid-column: 1;
    text-align: left;
}

#apresentacao .committee-section-heading {
    margin: 0 0 0.75rem !important;
}

#apresentacao .committee-section-intro {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    line-height: 1.75;
}

#apresentacao .committee-carousel {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
}

#apresentacao .committee-carousel-stage {
    min-height: 430px;
}

#apresentacao .committee-carousel-stage > .committee-card,
#apresentacao .committee-carousel-stage > .committee-card:nth-child(n) {
    width: min(100%, 570px) !important;
    min-height: 370px !important;
}

.committee-carousel-progress {
    width: min(100%, 570px);
    height: 5px;
    margin: 0.85rem auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.committee-carousel-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    background: linear-gradient(90deg, var(--cotece-gold), #e6f7f3);
}

@keyframes committeeProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

#logos-patrocinadores .sponsor-card {
    min-height: 180px;
}

#logos-patrocinadores .sponsor-card img {
    max-height: 120px;
}

#logos-patrocinadores .sponsor-tier-platinum .sponsor-card img {
    max-height: 132px;
}

.certificates-section {
    background:
        linear-gradient(135deg, rgba(8, 124, 114, 0.08), rgba(214, 160, 51, 0.08)),
        #ffffff !important;
}

.certificates-placeholder {
    align-items: center;
}

.certificates-placeholder h2 {
    color: var(--cotece-ink) !important;
}

.certificates-mark {
    border-radius: 8px;
}

.faq-section {
    background: #f6fbfa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 980px;
    margin-inline: auto;
}

.faq-grid details {
    padding: 1rem 1.1rem;
}

.faq-grid summary {
    color: var(--cotece-ink);
    cursor: pointer;
    font-weight: 900;
}

.faq-grid p {
    margin: 0.75rem 0 0;
    color: #5a7078;
    line-height: 1.65;
}

.mobile-registration-cta {
    display: none;
}

@media (max-width: 991.98px) {
    #header .navbar-collapse,
    #header.scrolled .navbar-collapse {
        margin-top: 0.6rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(5, 38, 43, 0.96) !important;
    }

    #full-banner .hero-highlights,
    .event-intelligence-grid,
    .registration-command-center,
    .registration-steps,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #apresentacao .committee-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #apresentacao .committee-section-heading,
    #apresentacao .committee-section-intro,
    #apresentacao .committee-carousel {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
    }

    #apresentacao .committee-section-intro {
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    body.site-home {
        padding-bottom: 70px;
    }

    #full-banner {
        min-height: 100svh !important;
        padding-top: 88px;
    }

    #full-banner .banner-content h1 {
        font-size: clamp(3rem, 17vw, 4.8rem);
    }

    #full-banner .hero-actions .btn {
        width: min(100%, 320px);
    }

    #full-banner .hero-highlights,
    .event-intelligence-grid,
    .registration-command-center,
    .registration-steps,
    .faq-grid,
    #logos-patrocinadores .sponsor-tier-platinum .sponsor-logos-grid,
    #logos-patrocinadores .sponsor-logos-grid {
        grid-template-columns: 1fr;
    }

    .event-intelligence-strip {
        margin-top: 0;
        padding-top: 1rem;
    }

    #apresentacao .committee-carousel-stage {
        min-height: 370px;
    }

    #apresentacao .committee-carousel-stage > .committee-card,
    #apresentacao .committee-carousel-stage > .committee-card:nth-child(n) {
        width: min(100%, 330px) !important;
        min-height: 330px !important;
    }

    #inscricoes .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-registration-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 12px;
        z-index: 1060;
        display: grid;
        min-height: 48px;
        place-items: center;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--cotece-green), var(--cotece-green-2));
        color: #ffffff !important;
        font-weight: 900;
        text-decoration: none;
        box-shadow: 0 18px 48px rgba(3, 35, 40, 0.28);
    }
}

/* Integrated dark section pass */
#apresentacao {
    position: relative;
    padding-block: clamp(4rem, 7vw, 6.5rem) !important;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(14, 154, 130, 0.32), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(214, 160, 51, 0.18), transparent 24%),
        linear-gradient(135deg, #031f24 0%, #06443d 48%, #072f34 100%) !important;
}

#apresentacao::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-radial-gradient(ellipse at 72% 35%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 34px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 56px 56px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 56px 56px;
    opacity: 0.7;
}

#apresentacao::after {
    content: "";
    position: absolute;
    inset: auto -8% -22% 42%;
    height: 42%;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(214, 160, 51, 0.18), transparent 68%);
}

#apresentacao .committee-section {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at 64% 28%, rgba(17, 143, 121, 0.36), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(214, 160, 51, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(5, 51, 46, 0.92), rgba(6, 86, 74, 0.9)) !important;
    box-shadow: 0 34px 90px rgba(0, 13, 17, 0.32);
}

#apresentacao .committee-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(128deg, transparent 0 43%, rgba(255, 255, 255, 0.08) 43.2% 43.5%, transparent 43.7%),
        repeating-radial-gradient(ellipse at 82% 42%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 30px);
    opacity: 0.62;
}

#apresentacao .committee-section > * {
    position: relative;
    z-index: 1;
}

#apresentacao .committee-carousel-stage > .committee-card,
#apresentacao .committee-carousel-stage > .committee-card:nth-child(n) {
    border-color: rgba(200, 235, 226, 0.72) !important;
    background:
        linear-gradient(180deg, rgba(235, 249, 245, 0.96), rgba(214, 238, 232, 0.94)) !important;
}

#inscricoes,
#local,
#fale-conosco,
#patrocinadores,
#logos-patrocinadores {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 10%, rgba(13, 151, 126, 0.26), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(214, 160, 51, 0.14), transparent 24%),
        linear-gradient(145deg, #05262b 0%, #073f3a 50%, #092f35 100%) !important;
    color: #eefaf7;
}

#local,
#patrocinadores {
    background:
        radial-gradient(circle at 78% 22%, rgba(13, 151, 126, 0.24), transparent 30%),
        radial-gradient(circle at 14% 78%, rgba(214, 160, 51, 0.13), transparent 28%),
        linear-gradient(145deg, #07333a 0%, #064e45 52%, #04272d 100%) !important;
}

#inscricoes::before,
#local::before,
#fale-conosco::before,
#patrocinadores::before,
#logos-patrocinadores::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 54px 54px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 54px 54px;
    opacity: 0.55;
}

#inscricoes::after,
#local::after,
#fale-conosco::after,
#patrocinadores::after,
#logos-patrocinadores::after {
    content: "";
    position: absolute;
    inset: auto -10% -28% 45%;
    height: 48%;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(8, 124, 114, 0.24), transparent 68%);
}

#inscricoes > .container,
#local > .container,
#fale-conosco > .container,
#patrocinadores > .container,
#logos-patrocinadores > .container {
    position: relative;
    z-index: 1;
}

#inscricoes .section-kicker,
#local .section-kicker,
#fale-conosco .section-kicker,
#patrocinadores .section-kicker,
#logos-patrocinadores .section-kicker {
    background: rgba(230, 247, 243, 0.14);
    color: #d6a033 !important;
    border: 1px solid rgba(214, 160, 51, 0.24);
}

#inscricoes .section-heading h2,
#local .section-heading h2,
#fale-conosco .section-heading h2,
#patrocinadores .section-heading h2,
#logos-patrocinadores .section-heading h2 {
    color: #ffffff !important;
}

#inscricoes .section-heading p,
#local .section-heading p,
#fale-conosco .section-heading p,
#patrocinadores .section-heading p,
#logos-patrocinadores .section-heading p,
#local .venue-copy p,
#fale-conosco p,
#patrocinadores p {
    color: rgba(235, 249, 245, 0.82) !important;
}

#inscricoes .table-responsive,
.venue-card,
.contact-layout,
.sponsor-layout,
#logos-patrocinadores .sponsor-tier {
    border: 1px solid rgba(221, 244, 238, 0.16) !important;
    background: linear-gradient(135deg, rgba(235, 249, 245, 0.12), rgba(235, 249, 245, 0.06)) !important;
    box-shadow: 0 28px 72px rgba(0, 16, 20, 0.24) !important;
    backdrop-filter: blur(8px);
}

#inscricoes table td {
    background: rgba(234, 247, 244, 0.94) !important;
    color: #17343a !important;
}

#inscricoes table tbody tr:nth-child(even) td {
    background: rgba(216, 239, 233, 0.94) !important;
}

#inscricoes .pricing-note,
#regras-inscricao {
    color: rgba(235, 249, 245, 0.86) !important;
}

#regras-inscricao {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(221, 244, 238, 0.16);
    border-radius: 8px;
    background: rgba(3, 31, 36, 0.52);
}

#inscricoes #toggle-regras {
    border-color: rgba(235, 249, 245, 0.58) !important;
    color: #ffffff !important;
}

#local h5,
#fale-conosco h5,
.sponsor-callout h3,
.sponsor-callout h3 strong {
    color: #ffffff !important;
}

#local .venue-address,
#local .venue-address i,
.contact-list,
.contact-list li,
.contact-list a,
#patrocinadores a {
    color: #dff8f2 !important;
}

#form-contato {
    border-right-color: rgba(221, 244, 238, 0.16) !important;
    background: transparent !important;
}

#fale-conosco .form-control {
    border: 1px solid rgba(8, 124, 114, 0.18) !important;
    background: rgba(229, 246, 242, 0.96) !important;
    color: #123238 !important;
}

#fale-conosco .contact-card,
#fale-conosco .col-md-6:last-child,
#patrocinadores .sponsor-layout .col-md-12 {
    background: transparent !important;
    color: #eefaf7 !important;
}

.contact-list li {
    border-top-color: rgba(221, 244, 238, 0.18) !important;
}

.sponsor-callout {
    border: 1px solid rgba(214, 160, 51, 0.26) !important;
    background:
        radial-gradient(circle at 90% 20%, rgba(214, 160, 51, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(2, 31, 36, 0.72), rgba(7, 87, 74, 0.48)) !important;
}

#logos-patrocinadores .sponsor-card {
    border-color: rgba(214, 160, 51, 0.22) !important;
    background: linear-gradient(180deg, rgba(232, 247, 243, 0.96), rgba(210, 236, 230, 0.94)) !important;
}

#logos-patrocinadores .sponsor-tier-header::before,
#logos-patrocinadores .sponsor-tier-header::after {
    background: rgba(214, 160, 51, 0.28) !important;
}

@media (max-width: 991.98px) {
    #apresentacao .committee-section {
        width: min(calc(100vw - 1.5rem), 760px);
    }
}

/* Connected COTECE visual system */
:root {
    --cotece-canvas-1: #e7f4f1;
    --cotece-canvas-2: #dbece8;
    --cotece-canvas-3: #f1f8f6;
    --cotece-panel: rgba(246, 251, 249, 0.74);
    --cotece-panel-strong: rgba(237, 248, 245, 0.9);
    --cotece-panel-line: rgba(8, 124, 114, 0.2);
    --cotece-rail: rgba(8, 124, 114, 0.28);
    --cotece-section-shadow: 0 24px 70px rgba(16, 62, 62, 0.12);
}

body.site-home {
    background:
        radial-gradient(circle at 12% 4%, rgba(8, 124, 114, 0.16), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(214, 160, 51, 0.12), transparent 24%),
        linear-gradient(180deg, var(--cotece-canvas-1) 0%, var(--cotece-canvas-3) 42%, var(--cotece-canvas-2) 100%) !important;
}

body.site-home main {
    position: relative;
    background:
        linear-gradient(90deg, rgba(8, 124, 114, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
        linear-gradient(0deg, rgba(8, 124, 114, 0.028) 1px, transparent 1px) 0 0 / 58px 58px;
}

body.site-home main > section {
    position: relative;
    isolation: isolate;
}

#full-banner {
    border-bottom: 1px solid rgba(8, 124, 114, 0.32);
}

#apresentacao,
#inscricoes,
#local,
#fale-conosco,
#patrocinadores,
#logos-patrocinadores,
#certificados {
    overflow: hidden;
    color: var(--cotece-ink, #0b2730) !important;
    background:
        radial-gradient(circle at 14% 16%, rgba(8, 124, 114, 0.16), transparent 30%),
        radial-gradient(circle at 86% 22%, rgba(214, 160, 51, 0.1), transparent 24%),
        linear-gradient(135deg, rgba(231, 244, 241, 0.98) 0%, rgba(244, 250, 248, 0.96) 50%, rgba(219, 236, 232, 0.98) 100%) !important;
}

#temas-livres {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(16, 179, 151, 0.26), transparent 30%),
        radial-gradient(circle at 82% 12%, rgba(214, 160, 51, 0.18), transparent 22%),
        linear-gradient(135deg, #07363c 0%, #075949 52%, #042c32 100%) !important;
}

#local,
#patrocinadores,
#certificados {
    background:
        radial-gradient(circle at 82% 18%, rgba(8, 124, 114, 0.17), transparent 31%),
        radial-gradient(circle at 12% 74%, rgba(214, 160, 51, 0.11), transparent 26%),
        linear-gradient(135deg, rgba(220, 239, 235, 0.98) 0%, rgba(242, 249, 247, 0.96) 48%, rgba(226, 241, 237, 0.98) 100%) !important;
}

#apresentacao::before,
#temas-livres::before,
#inscricoes::before,
#local::before,
#fale-conosco::before,
#patrocinadores::before,
#logos-patrocinadores::before,
#certificados::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 124, 114, 0.07) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(0deg, rgba(8, 124, 114, 0.052) 1px, transparent 1px) 0 0 / 64px 64px,
        repeating-radial-gradient(ellipse at 78% 34%, rgba(8, 124, 114, 0.11) 0 1px, transparent 1px 38px);
    opacity: 0.72;
}

#temas-livres::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px) 0 0 / 64px 64px,
        repeating-radial-gradient(ellipse at 78% 34%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 38px);
}

#apresentacao::after,
#temas-livres::after,
#inscricoes::after,
#local::after,
#fale-conosco::after,
#patrocinadores::after,
#logos-patrocinadores::after,
#certificados::after {
    content: "";
    position: absolute;
    top: -38px;
    bottom: -38px;
    left: 50%;
    z-index: -1;
    width: 2px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, var(--cotece-rail), rgba(214, 160, 51, 0.34), var(--cotece-rail), transparent);
    opacity: 0.55;
}

.section-heading {
    position: relative;
    padding-top: 0.9rem;
}

.section-heading::before {
    content: "";
    position: absolute;
    top: -0.35rem;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
    border: 3px solid rgba(246, 251, 249, 0.96);
    border-radius: 50%;
    background: var(--cotece-green, #087c72);
    box-shadow: 0 0 0 5px rgba(8, 124, 114, 0.13), 0 10px 24px rgba(8, 124, 114, 0.2);
}

#temas-livres .section-heading::before {
    border-color: rgba(7, 54, 60, 0.92);
    background: var(--cotece-gold, #d6a033);
    box-shadow: 0 0 0 5px rgba(214, 160, 51, 0.18), 0 10px 24px rgba(0, 0, 0, 0.24);
}

#inscricoes .section-kicker,
#local .section-kicker,
#fale-conosco .section-kicker,
#patrocinadores .section-kicker,
#logos-patrocinadores .section-kicker,
#certificados .section-kicker,
#certificados .section-kicker-static {
    border: 1px solid rgba(8, 124, 114, 0.18) !important;
    background: rgba(8, 124, 114, 0.08) !important;
    color: #087c72 !important;
}

#inscricoes .section-heading h2,
#local .section-heading h2,
#fale-conosco .section-heading h2,
#patrocinadores .section-heading h2,
#logos-patrocinadores .section-heading h2,
#certificados h2 {
    color: var(--cotece-ink, #0b2730) !important;
}

#inscricoes .section-heading p,
#local .section-heading p,
#fale-conosco .section-heading p,
#patrocinadores .section-heading p,
#logos-patrocinadores .section-heading p,
#certificados p,
#local .venue-copy p,
#fale-conosco p,
#patrocinadores p {
    color: #49666d !important;
}

#apresentacao .committee-section {
    border: 1px solid rgba(8, 124, 114, 0.22) !important;
    background:
        radial-gradient(circle at 68% 26%, rgba(32, 182, 151, 0.26), transparent 34%),
        radial-gradient(circle at 16% 78%, rgba(214, 160, 51, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(7, 76, 68, 0.96), rgba(8, 112, 94, 0.92)) !important;
    box-shadow: 0 28px 80px rgba(16, 62, 62, 0.22) !important;
}

#apresentacao .committee-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(128deg, transparent 0 43%, rgba(255, 255, 255, 0.12) 43.2% 43.5%, transparent 43.7%),
        repeating-radial-gradient(ellipse at 82% 42%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 32px);
    opacity: 0.56;
}

#apresentacao .committee-section > * {
    position: relative;
    z-index: 1;
}

#apresentacao .committee-carousel-stage > .committee-card,
#apresentacao .committee-carousel-stage > .committee-card:nth-child(n) {
    border: 1px solid rgba(8, 124, 114, 0.18) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(8, 124, 114, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(246, 251, 249, 0.96), rgba(226, 242, 238, 0.94)) !important;
    box-shadow: 0 26px 66px rgba(4, 40, 45, 0.2) !important;
}

#temas-livres .rule-card {
    border: 1px solid rgba(221, 244, 238, 0.16) !important;
    background: linear-gradient(135deg, rgba(235, 249, 245, 0.11), rgba(235, 249, 245, 0.06)) !important;
    box-shadow: 0 22px 58px rgba(0, 16, 20, 0.2) !important;
}

#temas-livres .rule-card h3,
#temas-livres .rule-card p,
#temas-livres .rule-card li {
    color: rgba(241, 250, 248, 0.9) !important;
}

#temas-livres .rule-icon {
    background: rgba(214, 160, 51, 0.16) !important;
    color: #f0c76a !important;
}

#inscricoes .table-responsive,
.venue-card,
.contact-layout,
.sponsor-layout,
#logos-patrocinadores .sponsor-tier,
.certificates-placeholder {
    border: 1px solid var(--cotece-panel-line) !important;
    background:
        linear-gradient(135deg, rgba(246, 251, 249, 0.78), rgba(226, 242, 238, 0.66)) !important;
    box-shadow: var(--cotece-section-shadow) !important;
    backdrop-filter: blur(10px);
}

#inscricoes table td {
    background: rgba(246, 251, 249, 0.88) !important;
    color: #17343a !important;
}

#inscricoes table tbody tr:nth-child(even) td {
    background: rgba(229, 243, 239, 0.92) !important;
}

#inscricoes .pricing-note,
#regras-inscricao {
    color: #49666d !important;
}

#regras-inscricao {
    border: 1px solid rgba(8, 124, 114, 0.18) !important;
    background: rgba(246, 251, 249, 0.72) !important;
}

#inscricoes #toggle-regras {
    border-color: rgba(8, 124, 114, 0.34) !important;
    color: #087c72 !important;
    background: rgba(246, 251, 249, 0.48) !important;
}

#local h5,
#fale-conosco h5,
.sponsor-callout h3,
.sponsor-callout h3 strong {
    color: var(--cotece-ink, #0b2730) !important;
}

#local .venue-address,
#local .venue-address i,
.contact-list,
.contact-list li,
.contact-list a,
#patrocinadores a {
    color: #24545b !important;
}

#form-contato {
    border-right-color: rgba(8, 124, 114, 0.18) !important;
    background: transparent !important;
}

#fale-conosco .form-control {
    border: 1px solid rgba(8, 124, 114, 0.18) !important;
    background: rgba(247, 252, 250, 0.92) !important;
    color: #123238 !important;
}

#fale-conosco .contact-card,
#fale-conosco .col-md-6:last-child,
#patrocinadores .sponsor-layout .col-md-12 {
    background: transparent !important;
    color: var(--cotece-ink, #0b2730) !important;
}

.contact-list li {
    border-top-color: rgba(8, 124, 114, 0.16) !important;
}

.sponsor-callout {
    border: 1px solid rgba(8, 124, 114, 0.2) !important;
    background:
        radial-gradient(circle at 92% 16%, rgba(214, 160, 51, 0.15), transparent 28%),
        linear-gradient(135deg, rgba(231, 244, 241, 0.88), rgba(213, 235, 230, 0.74)) !important;
}

#logos-patrocinadores .sponsor-card {
    border-color: rgba(8, 124, 114, 0.18) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(8, 124, 114, 0.06), transparent 36%),
        linear-gradient(180deg, rgba(248, 252, 251, 0.94), rgba(228, 243, 239, 0.9)) !important;
}

#logos-patrocinadores .sponsor-tier-header::before,
#logos-patrocinadores .sponsor-tier-header::after {
    background: rgba(8, 124, 114, 0.18) !important;
}

@media (max-width: 991.98px) {
    #apresentacao .committee-section {
        width: min(calc(100vw - 1.5rem), 760px);
    }

    #apresentacao::after,
    #temas-livres::after,
    #inscricoes::after,
    #local::after,
    #fale-conosco::after,
    #patrocinadores::after,
    #logos-patrocinadores::after,
    #certificados::after {
        left: 28px;
        opacity: 0.34;
    }
}

#apresentacao::before,
#apresentacao::after,
#temas-livres::before,
#temas-livres::after,
#inscricoes::before,
#inscricoes::after,
#local::before,
#local::after,
#fale-conosco::before,
#fale-conosco::after,
#patrocinadores::before,
#patrocinadores::after,
#logos-patrocinadores::before,
#logos-patrocinadores::after,
#certificados::before,
#certificados::after {
    z-index: 0 !important;
}

#apresentacao > .container,
#temas-livres > .container,
#inscricoes > .container,
#local > .container,
#fale-conosco > .container,
#patrocinadores > .container,
#logos-patrocinadores > .container,
#certificados > .container {
    position: relative;
    z-index: 1;
}

/* Hero and committee bridge refinement */
#full-banner .banner-kicker,
#full-banner .banner-content .banner-kicker {
    display: none !important;
}

#full-banner::before {
    background:
        radial-gradient(circle at 72% 24%, rgba(8, 124, 114, 0.24), transparent 32%),
        linear-gradient(115deg, rgba(3, 23, 28, 0.58), rgba(6, 67, 72, 0.34) 48%, rgba(3, 27, 32, 0.56)) !important;
}

#full-banner::after {
    opacity: 0.32 !important;
}

.banner-video video {
    opacity: 1 !important;
    filter: saturate(1.08) contrast(1.04) brightness(1.14) !important;
}

#apresentacao {
    margin-top: -1px;
    padding-block: clamp(3.2rem, 6vw, 5.6rem) !important;
    background:
        radial-gradient(circle at 16% 28%, rgba(14, 154, 130, 0.28), transparent 28%),
        radial-gradient(circle at 86% 22%, rgba(214, 160, 51, 0.14), transparent 24%),
        linear-gradient(180deg, #053239 0%, #075146 52%, #07353b 100%) !important;
}

#apresentacao::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
        repeating-radial-gradient(ellipse at 76% 42%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 36px),
        linear-gradient(180deg, rgba(3, 36, 42, 0.58), transparent 28%, transparent 72%, rgba(4, 44, 50, 0.62)) !important;
    opacity: 0.82 !important;
}

#apresentacao::after {
    left: 50% !important;
    width: min(72vw, 980px) !important;
    height: 2px !important;
    top: auto !important;
    bottom: -1px !important;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(214, 160, 51, 0.42), rgba(235, 249, 245, 0.42), rgba(214, 160, 51, 0.42), transparent) !important;
    opacity: 0.86 !important;
}

#apresentacao .committee-section {
    border: 1px solid rgba(221, 244, 238, 0.18) !important;
    background:
        radial-gradient(circle at 66% 28%, rgba(35, 201, 146, 0.22), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(214, 160, 51, 0.13), transparent 28%),
        linear-gradient(135deg, rgba(5, 53, 50, 0.72), rgba(8, 112, 94, 0.58)) !important;
    box-shadow: 0 30px 88px rgba(0, 13, 17, 0.28) !important;
    backdrop-filter: blur(12px);
}

#apresentacao .committee-section::before {
    background:
        linear-gradient(128deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 42.2% 42.55%, transparent 42.75%),
        linear-gradient(38deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58.2% 58.5%, transparent 58.7%),
        repeating-radial-gradient(ellipse at 82% 42%, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 32px) !important;
    opacity: 0.58 !important;
}

#apresentacao .committee-carousel-stage > .committee-card,
#apresentacao .committee-carousel-stage > .committee-card:nth-child(n) {
    background:
        radial-gradient(circle at 50% 0%, rgba(8, 124, 114, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(240, 250, 247, 0.95), rgba(220, 240, 235, 0.92)) !important;
}

/* Final committee symbol and transparent header adjustments */
.committee-symbol-mark {
    grid-column: 1;
    width: min(100%, 180px);
    min-height: 180px;
    margin-top: clamp(0.5rem, 2vw, 1.2rem);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
}

.committee-symbol-mark svg {
    display: block;
    width: clamp(96px, 11vw, 148px);
    height: auto;
    overflow: visible;
    color: #ffffff;
    filter: drop-shadow(0 18px 30px rgba(0, 18, 22, 0.2));
}

.committee-symbol-mark path {
    fill: currentColor;
}

.committee-event-mark {
    grid-column: 1;
    display: grid;
    align-content: center;
    justify-items: start;
    min-height: 180px;
    margin-top: clamp(0.5rem, 2vw, 1.2rem);
    color: #ffffff;
    text-transform: uppercase;
}

.committee-event-mark strong,
.committee-event-mark span {
    display: block;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    line-height: 0.95;
    letter-spacing: 0;
    text-shadow: 0 18px 34px rgba(0, 18, 22, 0.28);
}

.committee-event-mark strong {
    font-size: clamp(2rem, 4.2vw, 4.2rem);
    font-weight: 700;
}

.committee-event-mark span {
    margin-top: 0.35rem;
    font-size: clamp(1.35rem, 3vw, 2.8rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.committee-carousel-progress {
    display: none !important;
}

body.site-home #header,
body.site-home #header.scrolled {
    background:
        linear-gradient(180deg, rgba(2, 32, 38, 0.56), rgba(2, 32, 38, 0.38)) !important;
    border-bottom: 1px solid rgba(235, 249, 245, 0.16) !important;
    box-shadow: 0 12px 36px rgba(0, 12, 16, 0.16) !important;
    backdrop-filter: blur(8px) saturate(1.12) !important;
    -webkit-backdrop-filter: blur(8px) saturate(1.12) !important;
}

body.site-home #header .container,
body.site-home #header.scrolled .container {
    background: transparent !important;
}

.pricing-table-group h3 {
    margin: clamp(1.5rem, 4vw, 2.4rem) 0 1rem;
    color: var(--cotece-ink, #0b2730);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 900;
    line-height: 1.25;
}

.pricing-table-group h3:first-child {
    margin-top: 0;
}

.pricing-table-group .table-responsive + h3,
.pricing-table-group .table-responsive:not(:last-child) {
    position: relative;
}

.pricing-table-group .table-responsive:not(:last-child)::after {
    content: "";
    position: absolute;
    left: clamp(0.8rem, 2vw, 1.4rem);
    right: clamp(0.8rem, 2vw, 1.4rem);
    bottom: -1.15rem;
    height: 1px;
    background: rgba(8, 124, 114, 0.18);
}

#inscricoes .pricing-table-group table {
    min-width: 620px;
}

@media (max-width: 991.98px) {
    .committee-symbol-mark {
        grid-column: auto;
        justify-content: center;
        width: 100%;
        min-height: 132px;
        margin-inline: auto;
    }

    .committee-symbol-mark svg {
        width: clamp(86px, 24vw, 126px);
    }

    .committee-event-mark {
        grid-column: auto;
        justify-items: center;
        min-height: 132px;
        text-align: center;
    }

    body.site-home #header .navbar-collapse.show,
    body.site-home #header.scrolled .navbar-collapse.show {
        background: rgba(4, 38, 43, 0.84) !important;
    }
}

/* Static organizing committee grid */
#apresentacao {
    padding-top: clamp(3rem, 5vw, 4.8rem) !important;
    padding-bottom: clamp(5rem, 8vw, 7rem) !important;
}

#apresentacao .committee-section {
    display: block !important;
    width: min(calc(100vw - 2rem), 1120px) !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transform: none !important;
}

#apresentacao .committee-section::before {
    display: none !important;
}

#apresentacao .committee-section-heading {
    display: block !important;
    margin: 0 0 clamp(1.2rem, 3vw, 1.8rem) !important;
    color: #ffffff !important;
    text-align: center !important;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 800 !important;
    line-height: 1.08;
    letter-spacing: 0;
}

.committee-static-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.8vw, 1.15rem);
    max-width: 980px;
    margin-inline: auto;
}

.committee-static-card {
    display: flex;
    min-height: 260px;
    padding: clamp(1.25rem, 2.4vw, 1.65rem) 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(221, 244, 238, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(76, 126, 115, 0.46), rgba(48, 105, 94, 0.38));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 18, 22, 0.14);
}

.committee-static-card img {
    width: clamp(88px, 8vw, 112px) !important;
    height: clamp(88px, 8vw, 112px) !important;
    min-width: 0 !important;
    margin: 0 0 1rem;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 18, 22, 0.22) !important;
}

.committee-static-card h5 {
    margin: 0 0 0.55rem !important;
    color: #ffffff !important;
    font-size: clamp(1rem, 1.6vw, 1.22rem) !important;
    font-weight: 800;
    line-height: 1.22;
}

.committee-static-card p {
    max-width: 190px;
    margin: 0 !important;
    color: rgba(235, 249, 245, 0.86) !important;
    font-size: clamp(0.9rem, 1.25vw, 1.04rem) !important;
    font-weight: 600;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .committee-static-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 560px;
    }
}

@media (max-width: 575.98px) {
    .committee-static-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .committee-static-card {
        min-height: 230px;
    }
}

/* Raise committee block away from the following section */
#apresentacao {
    padding-top: clamp(3rem, 5vw, 4.4rem) !important;
    padding-bottom: clamp(6.2rem, 9vw, 8.4rem) !important;
}

#apresentacao .committee-section {
    transform: translateY(-24px) !important;
}

@media (max-width: 767.98px) {
    #apresentacao .committee-section {
        transform: translateY(-14px) !important;
    }
}
