* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    background-color: black;
    color: white;
    text-decoration: none;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;

}

.titulo {
    font-style: italic;
    transition: all 0.3s ease;
    position: absolute;
    text-align: center;
    top: 40px;
    font-size: 24px;
}

header {
    width: 100%;
    max-width: 420px;
    padding: 30px 25px;
    background-color: #111;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 128, 0, 0.9);
    position: relative;
    text-align: center;
}


header h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: var(--dynamic-color, #008000);
    font-weight: bold;
    background-color: transparent;
}


header p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
    background-color: transparent;

}

/* Seta de voltar */
.voltar-link {
    background-color: var(--dynamic-color);
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;


}

/* Para tirar o fundo da seta */
.voltar-link i {
    background-color: transparent;
}

/* Links sociais */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: transparent;

}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    border-radius: 40px;
    background-color: transparent;
    font-size: 1.4rem;
    color: white;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    transition: all 0.3s ease;
    /* Transição suave para entrada e saída */


}

.social-link i {
    font-size: 2.4rem;
    background-color: transparent;
}

.social-link span {
    font-weight: 600;
    user-select: none;
    background-color: transparent;
}

.social-link:hover {
    background-color: purple;
    transform: scale(1.10);
}

.copyright {
    background-color: transparent;
    color: white;
    position: relative;
    top: 30px;
}


/* Responsividade */
@media (max-width: 480px) {
    header {
        padding: 25px 15px;
    }

    .social-link {
        font-size: 1.2rem;
        max-width: 100%;
        padding: 10px 20px;
    }

    .social-link i {
        font-size: 2rem;
    }
}