/* Importação de Fonte Exclusiva */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}


body {
    background: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

   .logo-container {
    display: flex;
    align-items: center;
    gap: 0; /* remove espaços entre logos */
}

.logo-navbar {
    height: 40px;
    display: block;
    margin: 0; /* remove margens externas */
    padding: 0; /* remove padding padrão */
    object-fit: contain;
}

/* Navbar - Menu Superior */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease-in-out;
    z-index: 1000;
    background: transparent;
    color: #5c5a5a;
}

.menu-celular li{
    text-shadow: 2px 2px 4px black;
}


.navbar.scrolled {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.navbar h1 {
    font-size: 1.6rem;
    font-weight: bold;
}

/* Itens do Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #5c5a5a;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #10100d;
    font-weight: bold;
}

/* Botão de Menu Mobile */
.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #5c5a5a;
}

/* Menu Lateral para Mobile */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    color: #5c5a5a;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transition: right 0.4s ease-in-out;
    z-index: 1100;
}

.sidebar.active {
    right: 0;
}

.sidebar .close-btn {
    font-size: 1.8rem;
    cursor: pointer;
    color: #5c5a5a;
    position: absolute;
    top: 15px;
    right: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 50px 0 0 0;
}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.sidebar ul li a:hover {
    color: #000000;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .titulo-navbar{
        font-size: 6px;
    }
}


.dropdown {
    position: relative;
    white-space: nowrap; /* impede quebra de linha no submenu */
}

.dropdown .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 5px 15px;
    margin: 0;
    border-radius: 8px;
    z-index: 1000;
    min-width: max-content;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none; /* impede clique quando oculto */
}

.dropdown:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown .submenu li {
    padding: 10px 20px;
}

.dropdown .submenu li a {
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown .submenu li a:hover {
    background: #313132;
    color: #fff;
    border-radius: 4px;
    padding: 5px;
}

.dropdown i {
    margin-left: 5px;
    font-size: 14px;
}



/* Cabeçalho */
header {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
    
    font-size: 1.5rem;
    font-weight: bold;
}




/* Seções Gerais */
.section {
    text-align: center;
    padding: 50px 20px;
    background: white;
    margin: 20px auto;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background: white;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
}





@media (max-width: 768px) {
    /* Timeline */
.timeline {
    position: relative; width: 92%;
    margin: 0px auto;
    padding-left: 50px;
    
}



}




/*  Apresentacao */
.quadrante-apresentacao {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap; /* permite quebra de linha em telas menores */
    gap: 20px;
    padding: 60px 20px 0px;
    background-color: #8178cc00; /* cor de fundo opcional */
    box-shadow: 3px 3px 9px black;
    position: relative;
}


.imagem-perfil {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 600px; /* limita o tamanho em telas maiores */
    flex: 1 1 300px; /* permite encolher em telas menores */
}

.imagem-perfil img {
    width: 100%;
    height: auto;
    max-height: 970px;
    object-fit: cover;
    margin: 0;
    display: block;
    border-radius: 10px; /* opcional, dá suavidade */
}

.descricao-perfil {
    margin-bottom: 10%;
    
    flex: 1 1 300px;
    max-width: 70%;
    padding: 20px;
    box-sizing: border-box;
}

.descricao-perfil h2 {
    font-size: 52px;
    font-weight: bold;
    color: #333;
    margin-bottom: -8px;
}

.descricao-perfil h3 {
    font-size: 21px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.descricao-perfil p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    padding-bottom: 70px;
    max-width: 750px;
    
    margin-left: 11%;
}

/* Tablet */
@media (max-width: 992px) {
    .quadrante-apresentacao {
        flex-direction: column;
        align-items: center;
    }

    .imagem-perfil {
        max-width: 400px;
    }

    .descricao-perfil {
        max-width: 90%;
        text-align: center;
    }

    .descricao-perfil h2 {
        font-size: 32px;
    }

    .descricao-perfil p {
        font-size: 16px;
    }
}

/* Celular */
@media (max-width: 576px) {
    .quadrante-apresentacao {
        padding: 40px 10px 0px;
    }

    .imagem-perfil {
        max-width: 300px;
    }

    .descricao-perfil h2 {
        font-size: 28px;
    }

    .descricao-perfil p {
        font-size: 15px;
    }
}







.linha-do-tempo {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.linha-do-tempo h2 {
    text-align: center;
    font-size: 2.5rem; /* Base tamanho para desktops */
    margin-bottom: 40px;
    color: #333;
}

/* Ajusta responsivamente para títulos */
@media (max-width: 992px) {
    .linha-do-tempo h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .linha-do-tempo h2 {
        font-size: 1.8rem;
    }
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
}

.timeline-left {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    border-right: 2px solid #5a5a5a;
    box-sizing: border-box;
}

.timeline-left h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #5a5a5a;
}

.timeline-left h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 5px 0;
}

.timeline-right {
    flex: 2;
    padding-left: 20px;
    box-sizing: border-box;
}

.timeline-right h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.timeline-right ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 0;
}

.timeline-right li {
    color: #555;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Ajustes para Tablet */
@media (max-width: 992px) {
    .timeline-left h3 {
        font-size: 1.2rem;
    }

    .timeline-left h4,
    .timeline-right h4 {
        font-size: 1.1rem;
    }

    .timeline-right li {
        font-size: 0.95rem;
    }
}

/* Ajustes para Celular */
@media (max-width: 576px) {
    .timeline-left h3 {
        font-size: 1rem;
    }

    .timeline-left h4,
    .timeline-right h4 {
        font-size: 1rem;
    }

    .timeline-right li {
        font-size: 0.9rem;
    }
}




.hidden {
    display: none;
}

.ver-mais-container {
    text-align: center;
    margin-top: 20px;
}

#ver-mais-btn {
    background-color: #5a5a5a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#ver-mais-btn:hover {
    background-color: #5a5a5a;
}





.principios-lideranca {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.principios-lideranca h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background-color: #FFF;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    line-height: 1.5;
}


.missao-visao-valores {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.missao-visao-valores h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.mvv-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mvv-block {
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.mvv-block:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mvv-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #5a5a5a;
    color: #fff;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.mvv-title i {
    font-size: 24px;
    margin-right: 10px;
}

.mvv-title h3 {
    margin: 0;
    font-size: 20px;
}

.mvv-title .mvv-tema {
    flex: 1;
    text-align: left;
    margin-left: 10px;
    font-size: 16px;
    font-weight: normal;
}

.toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mvv-block.active .toggle-icon {
    transform: rotate(180deg);
}

.mvv-content {
    padding: 20px;
    display: none;
}

.mvv-content p,
.mvv-content ul {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.mvv-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.mvv-content li {
    margin-bottom: 5px;
    color: #555;
}

@media (max-width: 768px) {
    .mvv-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .mvv-title .mvv-tema {
        margin-left: 0;
        margin-top: 5px;
    }
}







.galeria-quadrante {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.galeria-quadrante h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* ajusta para no máximo 3 colunas */
    gap: 20px;
    justify-content: center;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item img {
    width: 100%;
    height: 260px; /* aumentei a altura das imagens */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.galeria-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.ver-mais-container {
    text-align: center;
    margin-top: 30px;
}


.patrocinadores-quadrante {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.patrocinadores-quadrante h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.patrocinadores-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* garante que fiquem sempre na mesma linha */
    gap: 20px;
    overflow-x: auto; /* permite scroll horizontal em telas pequenas */
    -webkit-overflow-scrolling: touch;
}

.patrocinador-item {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.patrocinador-item img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.patrocinador-item img:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .patrocinador-item {
        min-width: 100px;
        max-width: 180px;
    }

    .patrocinador-item img {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .patrocinador-item {
        min-width: 80px;
        max-width: 150px;
    }

    .patrocinador-item img {
        max-height: 80px;
    }
}


.topicos-bloco {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.topicos-bloco h2 {
    font-size: 28px;
    color: #444;
    margin-bottom: 30px;
}

.topicos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.topicos-grid button {
    background: #454646;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    flex: 1 1 300px;
    max-width: 100%;
    opacity: 0;
    transform: scale(0.8) translate(0, 100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Efeito quando aparecem */
.topicos-grid button.show {
    opacity: 1;
    transform: scale(1) translate(0, 0);
}

@media (max-width: 600px) {
    .topicos-grid button {
        font-size: 14px;
        padding: 10px;
    }
}
