* {
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
    box-sizing: border-box;
    background: transparent;
}

body {
    height: 100%;
    overflow-x: hidden;
    background-color: transparent;
}

.icon-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-left: 120px;
}

.icon-group img {
    width: 300px;
    background: transparent;

}

button {
    color: black;
    text-shadow: 8px 8px 8px;
    background: radial-gradient(circle, #FFD700, #228B22);
    border-radius: 50px;
    border: none;
    width: 200px;
    height: 50px;
    cursor: pointer;
    letter-spacing: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 900;
    transition: background 0.2s ease;
}

button:hover {
    opacity: 0.7;
    transform: scale(1.02);
}

.social-nav a:hover img {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


button.clicked {
    background: white;
    color: black;
}

.logo-eu {
    width: 200px;
    height: auto;

}

.social-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 0 auto 24px;
    padding: 0;
    width: fit-content;
    background-color: transparent;
    position: relative;
}

.social-nav a {
    display: inline-block;
}

.social-nav a img {
    margin-top: 30px;
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease;
    object-fit: contain;
    background-color: transparent;
}

.social-nav a:hover img {
    transform: scale(1.2);
}

.button-logo-eu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-right: 200px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    flex-wrap: wrap;
}


.caixa-sobre {
    display: none;
    background-color: #fff;
    color: #000;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: center;
    font-size: 16px;
}

.caixa-sobre.mostrar {
    display: block;
}


.titulo-social {
    text-align: center;
    font-size: 30px;
    margin-top: 100px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 800;
    transform: scaleY(1.5);

}


.azul {
    color: #00BFFF;
}

.verde {
    color: #228B22;
}

.amarelo {
    color: #FFD700;
}

.social-nav a:hover img {
    transform: scale(1.2);
}

.caixa-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.caixa-video video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}


@media (max-width: 768px) {
    .icon-group {
        margin-left: 0;
        margin-top: 0;
        align-items: center;
    }

    .icon-group img {
        width: 100%;
        max-width: 250px;
    }

    .button-logo-eu {
        margin-left: 0;
        align-items: center;
    }

    .logo-eu {
        width: 150px;
    }

    button {
        width: 180px;
        font-size: 18px;
    }

    section {
        flex-direction: column;
        text-align: center;
    }

    .caixa-sobre {
        max-width: 90%;
    }
}