/* Fontes */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
/* estilo para a introdução */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}


/* Ajuste do logo */
.logo-image img {
    height: 70px;
    width: auto;
}

/* Ajuste das bandeiras */
.lang-flags .flag-icon {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lang-flags .flag-icon:hover {
    transform: scale(1.1);
}

/* Introdução */
/* Fundo ocupando toda a largura da página */
.fundo {
    background-image: url("../image/fundo.png"); /* Caminho correto */
    background-size: cover; /* Garante que a imagem cubra toda a div */
    background-position: center;
    background-repeat: no-repeat;
    width: 100%; /* Usa 100% da largura sem limitar a viewport */
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 50px 10px;
}

/* Remove espaçamento entre as imagens */
#openPanel .container-fluid .row {
    margin-right: 0;
    margin-left: 0;
}

#openPanel .container-fluid .row > [class*='col'] {
    padding-right: 0;
    padding-left: 0;
}

/* Estilização da seção */
#eventoObjetivo .container-fluid {
    padding-top: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Fundo suave */
}

/* Ajuste para centralizar o logo */
#eventoObjetivo .logo {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    text-align: center;
}
.logo-event{
    width: 50%;
    height: auto;
}

/* Ajuste do tamanho do logo */
#eventoObjetivo .logo-event {
    max-width: 80%; /* Define um tamanho máximo proporcional */
    height: auto; /* Mantém a proporção */
}

/* Ajuste do texto para ocupar bem o espaço */
#eventoObjetivo .eventText {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Alinha o texto ao centro */
    text-align: justify; /* Justifica o texto */
    padding: 20px; /* Adiciona um espaço interno para melhor leitura */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    #eventoObjetivo .logo {
        margin-bottom: 20px; /* Adiciona espaço abaixo do logo em telas pequenas */
    }
    
    #eventoObjetivo .logo-event {
        max-width: 60%; /* Reduz o tamanho do logo em telas menores */
    }

    #eventoObjetivo .eventText {
        text-align: center; /* Centraliza o texto em telas menores */
        padding: 15px;
    }
}

/* Seção de detalhes do evento */
.event-details {
    background: #c6dbef;
    padding: 50px 20px;
    text-align: center;
}

/* Box dos ícones */
.icon-box {
    background: #c6dbef;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

/* Ícones */
.icon-details {
    width: 40px;
    height: auto;
}

/* Textos */
.text-box {
    text-align: left;
}

.text-box .title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.text-box p {
    margin: 0;
    font-size: 1em;
}

/* Responsividade */
@media (max-width: 768px) {
    .event-details .row {
        flex-direction: column;
        gap: 20px;
    }
    
    .col-md-4 {
        justify-content: center;
    }

    .text-box {
        text-align: center;
    }
}

/* Seção da pauta */
.pauta-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Fundo suave */
    padding: 60px 20px;
    text-align: center;
}

/* Cabeçalho da seção */
.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #140B5C;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Títulos das pautas */
.titlePauta {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2A2E70;
    margin-bottom: 10px;
}

/* Texto das pautas */
.eventPauta {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: justify;
    font-size: 1rem;
    color: #333;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .pauta-section .row {
        flex-direction: column;
    }

    .eventPauta {
        margin-bottom: 20px;
    }
}

/* palestrantes */
/* Seção de Palestrantes */
.palestrantes-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 20px;
    text-align: center;
}

/* Títulos */
.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #140B5C;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Cartões dos palestrantes */
.palestrante-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 260px; /* Cards menores */
    margin: 0 auto 20px;
}

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

/* Container da Imagem */
.image-container {
    width: 100%;
    height: 200px; /* Tamanho fixo para todas as imagens */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagens uniformes */
.palestrante-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que todas as imagens fiquem do mesmo tamanho */
}

/* Corpo do cartão */
.palestrante-card .card-body {
    padding: 15px;
}

.palestrante-nome {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2A2E70;
    margin-bottom: 5px;
}

.palestrante-tema {
    font-size: 0.9rem;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .palestrantes-section .row {
        flex-direction: column;
    }

    .palestrante-card {
        max-width: 220px;
    }
}

/* Botão de Inscrição */
.btn-inscricao {
    display: inline-block;
    background: #140B5C;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-inscricao:hover {
    background: #2A2E70;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {

    .btn-inscricao {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


/* proggramação */
/* Seção da Programação */
/* Seção da Programação */
.programacao-section {
    background: linear-gradient(135deg, #e9efff, #d0daff);
    padding: 50px 20px;
    text-align: center;
}

/* Cabeçalho */
.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #140B5C;
}

.section-header p {
    font-size: 1.1rem;
    color: #2A2E70;
}

/* Estilo da Tabela */
.programacao-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.programacao-table thead {
    background: #140B5C;
    color: #fff;
}

.programacao-table th, 
.programacao-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1rem;
}

/* Linhas alternadas */
.programacao-table tbody tr:nth-child(even) {
    background: #f2f7ff;
}

/* Palestrantes abaixo das atividades */
.palestrante {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #2A2E70;
    margin-top: 5px;
}

/* Estilo do Almoço */
.almoco {
    background-color: #4292c6 !important; /* Força a cor */
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}

/* Responsividade */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }

    .programacao-table th, 
    .programacao-table td {
        font-size: 0.9rem;
        padding: 10px;
    }
}
/* Centralizar células mescladas (agrupadas) */
.programacao-table td[colspan], 
.programacao-table td[rowspan] {
    vertical-align: middle;
    text-align: center;
}

/* Evitar quebras na coluna de horário */
.programacao-table th:first-child,
.programacao-table td:first-child {
    white-space: nowrap; /* Impede que o texto quebre em múltiplas linhas */
    width: 120px; /* Define um tamanho fixo para a coluna */
    min-width: 120px; /* Garante que o tamanho mínimo seja respeitado */
    text-align: center;
}



/* Rodapé */
footer {
    background: #140B5C;
    width: 100%;
    bottom: 0;
    left: 0;
    position: relative;
    padding: 20px 0;
}

/* Removendo a linha abaixo dos ícones */
footer::before {
    content: none;
}

/* Conteúdo principal do rodapé */
footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 30px 20px;
}

/* Parte superior (logo + ícones) */
footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo e nome do programa */
.logo-details {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaço entre logo e nome */
}

.imgFooter {
    width: 80px; /* Tamanho adequado */
    height: auto;
}

.logo_name {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

/* Ícones das redes sociais */
.media-icons {
    display: flex;
    gap: 10px;
}

.media-icons a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.media-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* Cores dos ícones */
.media-icons a:nth-child(1) { background: #4267B2; }
.media-icons a:nth-child(2) { background: #1DA1F2; }
.media-icons a:nth-child(3) { background: #E1306C; }
.media-icons a:nth-child(4) { background: #0077B5; }
.media-icons a:nth-child(5) { background: #FF0000; }

/* Hover nos ícones */
.media-icons a:hover {
    filter: brightness(1.2);
}

/* Rodapé inferior */
footer .bottom-details {
    width: 100%;
    background: #0F0844;
    padding: 15px 0;
    text-align: center;
}

.bottom-details .bottom_text {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}

.bottom-details .bottom_text a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.bottom-details .bottom_text a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    footer .top {
        flex-direction: column;
        gap: 20px;
    }

    .logo-details {
        flex-direction: column;
        text-align: center;
    }

    .media-icons {
        justify-content: center;
    }
}
