* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(145deg, #e3e7e8, #abedf1);
    overflow: hidden; /* Impede que o conteúdo ultrapasse a tela */
}



.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
}

.event-description {
    /* background: #e0e5ec; */
    background: linear-gradient(145deg, #bbfaff, #9ed3d6);
    border-radius: 41px;
    padding: 20px;
    margin-bottom: 30px;
    /* box-shadow: 10px 10px 20px rgba(189, 189, 189, 0.4), -10px -10px 20px rgba(255, 255, 255, 0.9); */
    box-shadow:  24px 24px 49px #a9d5d8,
    -24px -24px 49px #cfffff;
    width: 80vw; /* Usando vw para ajustar conforme a largura da tela */
    max-width: 300px; /* Tamanho máximo para não ultrapassar 300px */
    text-align: left;
    font-size: 14px;
    color: #333;
    overflow-wrap: break-word;
    border: 2px solid #00FFFF; /* Borda em ciano */




}

.event-description p {
    margin: 10px 0;
    /* color: #a1a4a4;  */
}

.button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80vw; /* Usando vw para ajustar conforme a largura da tela */
    max-width: 400px; /* Tamanho máximo para os botões */
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Permite que os botões se ajustem quando a tela for menor */
}

.neumorphic-button {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #e0e5ec; */
    /* background: #28f1f1; */
    background: linear-gradient(145deg, #bbfaff, #9ed3d6);
    /* border-radius: 50%; */
    border-radius: 124px;
    width: 120px;
    height: 120px;
    /* box-shadow: 8px 8px 15px rgba(189, 189, 189, 0.3), -8px -8px 15px rgba(255, 255, 255, 0.7); */
    box-shadow:  18px 18px 36px #89b7ba,
             -18px -18px 36px #d6ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: column;
    font-size: 18px;
    color: #333;
    margin: 10px;


    border-radius: 110px;
background: linear-gradient(145deg, #c9feff, #a9d5d8);
box-shadow:  25px 25px 52px #a0c9cc,
             -25px -25px 52px #d8ffff;
             border: 2px solid #04f7f7; /* Borda em ciano */
}


.neumorphic-button i {
    font-size: 32px;
    margin-bottom: 10px;
}

.neumorphic-button span {
    font-size: 14px;
}

.neumorphic-button:hover {
    box-shadow: 8px 8px 20px rgba(189, 189, 189, 0.5), -8px -8px 20px rgba(255, 255, 255, 0.9);
}

/* Ajustes para orientação vertical (portrait) */
@media (orientation: portrait) {
    .container {
        height: 100vh;
        width: 100vw;
    }

    .event-description {
        width: 80vw;
        max-width: 300px;
    }

    .button-container {
        width: 80vw;
        max-width: 400px;
    }

    .neumorphic-button {
        width: 120px;
        height: 120px;
    }
}

/* Ajustes para orientação horizontal (landscape) */
@media (orientation: landscape) {
    .container {
        height: 100vh;
        width: 100vw;
    }

    .event-description {
        width: 70vw; /* Ajusta a largura na horizontal */
        max-width: 350px;
    }

    .button-container {
        width: 70vw; /* Ajusta a largura na horizontal */
        max-width: 450px;
    }

    .neumorphic-button {
        width: 130px;
        height: 130px; /* Aumenta o tamanho dos botões em paisagem */
    }
}

/* Media Queries para dispositivos móveis e tablets */
@media (max-width: 768px) {
    .button-row {
        flex-direction: row;
        justify-content: space-evenly;
        gap: 10px;
        width: 100%;
    }

    .neumorphic-button {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .neumorphic-button span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .button-row {
        gap: 10px;
    }

    .neumorphic-button {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }

    .neumorphic-button span {
        font-size: 10px;
    }
}
