/* Reset e estilos globais */
* {
    margin: 0;
    box-sizing: border-box;
    font-family: Unbounded, Arial, sans-serif;
}

:root {
    --radius: 1vw;
}

a {
    text-decoration: none;
    color: #1E1E1E;
}

body {
    background-color: #ebebeb; 
}

/* Header e Navegação */
header {
    position:fixed;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    position: relative;
    background: #d9d9d9bd;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
}

img {
    color: #1E1E1E;
    font-family: Unbounded;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: -0.176px;
}

.h1-nav {
    color: #1E1E1E;
    font-size: 2vw;
    font-family: Unbounded;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: -0.176px;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2vw;
    align-items: center;
}

.menu a {
    font-size: 1.2vw;
    text-decoration: none;
    color: #1E1E1E;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Layout principal */
main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 4rem;
}

.menu a:hover {
    color: #d9d9d9;
    font-weight: 700;
}

/* Botão de menu para mobile */
.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 2vw;
}

/* Estilos para o botão de mais opções */
.more-menu {
    position: relative;
}

/* Atualização dos estilos do botão mais opções */
.more-btn {
    font-size: 1.2vw;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 100%;
    color: #1E1E1E;
    font-family: Unbounded;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.176px;
}

.more-btn:hover {
    color: #666;
    transform: scale(1.1);
}

div.dropdown-menu.active {
    align-items: center;
}

/* Estilos para o menu dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #d9d9d9e9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 0.1vw;
    display: none;
    margin-top: 0.5rem;
    z-index: 1001;
}

.dropdown-menu.active {
    display: block;
    font-size: 1.5vw;
}

.dropdown-menu a {
    font-weight: 500;
    display: block;
    padding: 2vw;
    text-decoration: none;
    color: #1E1E1E;
}

.dropdown-menu a:hover {
    font-weight: 700;
    color: #D9D9D9;
    background-color: #1e1e1e;
    border-radius: var(--radius);
}

.m-sobre {
    display: none;
}

.m-doar {
    display: none;
}

.m-missoes {
    display: none;
}

.m-contato {
    display: none;
}

/* Seção Bem-vindo */
.titulo {
    border-radius: var(--radius);
    overflow: hidden;
    background: #D9D9D9;
    height: 7vw;
    padding: 1em;
    align-items: center;
    display: flex;
    justify-content: center;
}

.h1-tl {
    color: #1E1E1E;
    text-align: center;
    font-size: 3vw;
    white-space: nowrap;
}

.tl-content {
    display: flex;
    flex-wrap: wrap;
}

.tl-content img {
    object-fit:fill;
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
}

/* Evento 1 */
.ev1-content {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius);
    background-color: #D9D9D9;
    padding: 1rem;
    gap: 1rem;

}

.ev1-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.ev1-content img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.h1-ev1 {
    text-align: center;
    font-size: 3vw;
    white-space: nowrap;
    border-radius: var(--radius);
    color: #D9D9D9;
    background-color: #1E1E1E;
    height: 5vw;
    padding: 0.5rem;
    align-content: center;
}

.h2-ev1 {
    font-size: 1.5vw;
    text-align: start;
    font-weight: 500;
    color: #1E1E1E;
    border-radius: var(--radius);
    background-color: #1e1e1e10;
    padding: 1vw;
    margin-top: 1vw;
    align-content: center;
}

.h3-ev1 {
    display: flex;
    padding-top: 1vw;
    gap: 1vw;
}

.h3-data-ev1 {
    text-align: center;
    font-size: 1vw;
    white-space: nowrap;
    border-radius: var(--radius);
    color: #1E1E1E;
    background-color: #1e1e1e10;
    height: 3vw;
    padding: 1vw;
    align-content: center;
    width: 70%;
    justify-content: center;
}

.a-inscrever-ev1 {
    font-weight: 700;
    text-align: center;
    font-size: 1vw;
    white-space: nowrap;
    border-radius: var(--radius);
    color: #1E1E1E;
    background-color: #1e1e1e10;
    height: 3vw;
    padding: 1vw;
    align-content: center;
    width: 30%;
}

a.a-inscrever-ev1:hover {
    color: #D9D9D9;
	background-color: #1E1E1E;
    font-weight: 700;
}

/* Evento 2 */
.ev2-content {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius);
    background-color: #D9D9D9;
    padding: 1rem;
    gap: 1rem;

}

.ev2-img {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.ev2-content img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.ev2-texto {
    flex: 2;
}

.h1-ev2 {
    text-align: center;
    font-size: 3vw;
    white-space: nowrap;
    border-radius: var(--radius);
    color: #D9D9D9;
    background-color: #1E1E1E;
    height: 5vw;
    padding: 0.5rem;
    align-content: center;
}

.h2-ev2 {
    font-size: 1.5vw;
    text-align: start;
    font-weight: 500;
    color: #1E1E1E;
    border-radius: var(--radius);
    background-color: #1e1e1e10;
    padding: 1vw;
    margin-top: 1vw;
    align-content: center;
}

.h3-ev2 {
    display: flex;
    padding-top: 1vw;
    gap: 1vw;
}

.h3-data-ev2 {
    text-align: center;
    font-size: 1vw;
    white-space: nowrap;
    border-radius: var(--radius);
    color: #1E1E1E;
    background-color: #1e1e1e10;
    height: 3vw;
    padding: 1vw;
    align-content: center;
    width: 70%;
    justify-content: center;
}

.a-inscrever-ev2 {
    font-weight: 700;
    text-align: center;
    font-size: 1vw;
    white-space: nowrap;
    border-radius: var(--radius);
    color: #1E1E1E;
    background-color: #1e1e1e10;
    height: 3vw;
    padding: 1vw;
    align-content: center;
    width: 30%;
}

a.a-inscrever-ev2:hover {
    color: #D9D9D9;
	background-color: #1E1E1E;
    font-weight: 700;
}

.canais {
    display:block;
    justify-content: center;
}

.redes-sociais {
    min-width: 280px;
    max-width: 100%;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: #D9D9D9;
    align-self: center;
    text-align: center;
    padding: 0.6rem;
    color: #1E1E1E;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.6rem;
}

.social-links a {
    text-decoration: none;
    color: #1E1E1E;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

a.youtube:hover {
	text-decoration: underline;
	background: -webkit-linear-gradient(#e21717, #ff2b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

a.instagram:hover {
	text-decoration: underline;
	background: -webkit-linear-gradient(#833AB4, #E1306C, #FCAF45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

a.whatsapp:hover {
	text-decoration: underline;
	background: -webkit-linear-gradient(#28e217, #01d158);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Seção pré-rodapé */
.Pre-rodape {
    border-radius: var(--radius);
    overflow: hidden;
}

.pr-elements {
    height: 7vw;
    display: flex;
    flex-direction: row;
    border-radius: var(--radius);
    background-color: #D9D9D9;
    align-items: center;
    justify-content: center;
    gap: 3.5vw;
}

.logo-sem {
    height: 2.5vw;
    width: 2.5vw;
}

.h1-pr {
    font-size: 0.5vw;
    width: 4.5vw;
}

.h2-pr {
    font-size: 0.5vw;
    font-weight: 400;
    width: 9.5vw;
}

.logo-avi {
    height: 2.5vw;
}

.linha {
    height: 2vw;
    border-left: 0.1vw solid;
    color: #1E1E1E;
}

/* Footer */
.rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0.8rem 2rem;
    position: relative;
    background: #d9d9d9;
    flex-direction: column;
    margin-top: 1rem;
}

.text-rodape {
    text-align: center;
    margin-bottom: 1rem;
    color: #1E1E1E;
}

a.maps:hover {
	text-decoration: underline;
	background: #1e1e1e3e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.copyright {
    text-align: center;
    color: #999;
}

/* Responsividade */

@media (max-width: 1200px) {
    .contato {
        display: none;
    }
    .m-contato {
        display: block;
    }
}

@media (max-width: 1100px) {
    .missoes {
        display: none;
    }
    .m-missoes {
        display: block;
    }
}

@media (max-width: 1000px) {
    .doar {
        display: none;
    }
    .m-doar {
        display: block;
    }
}

@media (max-width: 900px) {
    .sobre {
        display: none;
    }
    .m-sobre {
        display: block;
    }
    .more-btn {
        font-size: 3vw;
    }
    .desktop-menu {
        display: none;
    }
}

@media (max-width: 800px) {
    :root {
        --radius: 1.5vw;
    }

    .h1-nav {
        font-size: 3vw;
    }

    .h1-ev1 {
        padding: 1vw;
        font-size: 2.2vw;
    }

    .h2-ev1 {
        padding: 1vw;
        font-size: 1.8vw;
    }

    .h1-ev2 {
        padding: 1vw;
        font-size: 2.2vw;
    }

    .h2-ev2 {
        padding: 1vw;
        font-size: 1.8vw;
    }

    .menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #d9d9d9bd;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: var(--radius);
    }

    .h3-can {
        font-size: 2.5vw;
    }

    .social-links a {
        font-size: 2vw;
    }

    .logo-sem {
        height: 3vw;
        width: 3vw;
    }

    .logo-avi, .linha {
        height: 3vw;
    }

    .h1-pr {
        font-size: 0.7vw;
        width: 6vw;
    }

    .h2-pr {
        font-size: 0.7vw;
        width: 13vw;
    }

    .rodape {
        padding: 1vw;
    }

    .text-rodape {
        font-size: 1.8vw;
        padding: 0.5vw;
        margin: 0;
    }

    .copyright {
        font-size: 1.7vw;
        padding: 0.5vw;
    }
}

@media (max-width: 800px) {

}

@media (max-width: 500px) {
    :root {
        --radius: 2vw;

    }
}