* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AcciaPiano';
    src: url('../fonts/AcciaPiano.otf') format('opentype');
}

button {
    font-family: 'AcciaPiano', sans-serif;
}

html {
    min-height: 100%;
}

body {
    font-family: 'AcciaPiano', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #000000;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

h1, h2, h3, h4 {
    color: #bbb; /* Vermelho forte */
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}

p {
    color: #bbb;
}

strong {
    color: #00bd7e;
    font-weight: 600;
}

a {
    color: #00bd7e;
}

.header-container {
    background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 3) 0%,
    rgba(0, 0, 0, 0) 100%);
    width: 100%; /* Ou outra cor de fundo */
    padding: 10px 20px;
    box-sizing: border-box;
    top: 0;
    position: fixed;
    z-index: 1000;
}
    
/* Conteúdo do header com flexbox */

.header-content {
    max-width: 1364px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 80px;
    margin-top: 10px;
}

.logo-esquerda, .logo-direita {
    display: flex;
    align-items: center;
    max-width: 180px;
}

.logo-esquerda img, .logo-direita img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80px;
}

.logo-container img:hover {
    transform: scale(1.07);
    transition: transform 0.3s ease;
}

/* Main Content */
.main-container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    animation: reveal 1.5s ease-out; /* Aumenta a duração da animação para 2 segundos */
    max-width: 1364px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Definindo a animação para a hero-section */
@keyframes reveal {
    0% {
        clip-path: inset(50% 50% 50% 50%); /* Começa oculto */
        opacity: 0; /* Começa invisível */
    }
    50% {
        clip-path: inset(0% 50% 0% 50%); /* Revela o meio */
        opacity: 1; /* Fica visível */
    }
    100% {
        clip-path: inset(0); /* Revela completamente */
        opacity: 1; /* Mantém visível */
    }
}

/* Aplique a animação à hero-section */
.hero-section {
    background: transparent;
    padding: 90px 0;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-section img {
    width: 70%;
    height: auto;
}

.hero-section .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 200px;
}

.item-description {
    width: 100%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px 0 rgba(0, 207, 176, 0.8);;
    border-radius: 10px;
    margin: 20px 0;
    flex-direction: row;
    justify-content: space-between;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.item-description img {
    width: 80%;
    height: auto;
}

.item-content {
    display: flex;
    flex-direction: row;
}

.item-image {
    width: 40%;
    height: auto;
}

.item-text {
    flex: 1;
    min-width: 250px;
    max-width: 650px;
}

.item-text p {
    font-size: 0.9em;
    padding: 5px 0;
    text-align: justify;
}

.item-text h2 {
    font-size: 2.5em;
    padding: 5px 0;
    text-align: left;
    color: #00bd7e;
}

.item-text h3 {
    font-size: 1.8em;
    padding: 5px 0;
}

/* Footer */
.footer-container {
    margin-top: 100px;
    background: #000000;
    padding: 40px 0;
    margin-top: auto;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1364px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.footer-logo {
    max-width: 120px;
}

.footer-info {
    text-align: center;
    color: #888;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 12px; /* Espaçamento entre os ícones */
}

.social-icons a {
    text-decoration: none; /* Remove o sublinhado */
    color: #888; /* Cor do ícone */
    font-size: 1.5em;
}

.social-icons a:hover {
    color: #00bd7e; /* Cor ao passar o mouse */
}

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

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.background-image-container {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.background-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.background-image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1));
    pointer-events: none;
}

@media (max-width: 768px) {
    .background-image-container {
        height: 80vh;
    }
    
    .background-image {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
    
    .main-container {
        padding: 0 5px;
    }
    .hero-section {
        height: 300px;
    }
    .hero-section img {
        width: 100%;
    }
    .item-description {
        flex-direction: column;
        padding: 20px 30px;
        align-items: center;
    }
    .item-image {
        width: 100%;
    }
    .item-text{
        padding: 5px;
        text-align: center;
    }
    .item-text h2{
        text-align: center;
    }
    .footer-container {
        padding: 20px 0;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .content-wrapper {
        padding: 20px 5px;
    }
    .dg-item {
        flex-direction: column;
        align-items: center;
    }
    .dg-item p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1, h2, h3, h4 {
        font-size: 1.1em !important;
        padding: 10px;
    }
    .item-description h2, .participants-section h2 {
        font-size: 1.8em !important;
    }
    .item-text h3, .participants-section h4 {
        font-size: 1em !important;
    }
    .item-image img {
        width: 100% !important;
        max-width: 350px !important;
    }
    .footer-logo {
        max-width: 80px;
    }
    .participants-list li, .rules-list li {
        font-size: 13px !important;
    }
    .participants-list, .rules-list {
        padding: 8px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
}

.drops-section {
    background: #000000e6;
    box-shadow: 0 0 10px 0 rgba(0, 207, 176, 0.8);;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.drops-section h2 {
    font-size: 2em;
    color: #00bd7e;
    text-transform: uppercase;
}

.drops-container {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
}

.coluna-drop {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
}

.coluna-drop ul {
    list-style: disc inside;
    padding-left: 0;
    text-align: left;
}

.coluna-drop li {
    color: #bbb;
    list-style: none;
    font-size: 0.9em;
    padding-top: 10px;
}

@media (max-width: 900px) {
    .drops-container {
        flex-direction: column;
        gap: 0;
    }
    .coluna-drop {
        max-width: 100%;
    }
}

.localizacao{
    background: #000000e6;
    box-shadow: 0 0 10px 0 rgba(0, 207, 176, 0.8);;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.localizacao h2 {
    font-size: 2em;
    color: #00bd7e;
    text-transform: uppercase;
}

.localizacao img {
    width: 30%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.localizacao img:hover {
    transform: scale(1.05);
}

.local-container {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 40px;
    justify-content: center;
}

@media (max-width: 768px) {
    .localizacao img {
        width: 100%;
        height: auto;
    }
    .local-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}