.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh; /* Ocupa boa parte da tela, mas não ela toda */
    padding: 100px 5% 40px;
    text-align: center;

    /* A solução mágica */
    position: relative; /* Ativa a possibilidade de usar o z-index */
    z-index: 999; /* Garante que fique por cima do vídeo de fundo */
    width: 100%; /* Garante que ocupe a tela toda horizontalmente */
    box-sizing: border-box; /* Garante que o padding não quebre a largura */

    padding-bottom: 0;
}

.contact-title {
    font-size: 10vw; /* Texto GIGANTE e responsivo */
    font-family: "WesternBangBang", sans-serif;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: -3px; /* Deixa as letras bem juntinhas, super moderno */
    font-weight: normal;
}

.contact-subtitle {
    font-size: 21px;
    line-height: 1.8;
    color: rgba(250, 251, 253, 0.7);
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
}

.paragraphs {
  margin-bottom: 60px;
}

.contact-email {
    font-size: 32px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 5px;
}

/* Efeito de sublinhado animado no E-mail ao passar o mouse */
.contact-email::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.social-links {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
}

.social-links a {
    color: rgba(220, 235, 255, 0.7);
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-credits {
    margin-top: 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Uma linha super sutil */
    width: 100%;
    padding-top: 30px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
}

.author-link {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.author-link:visited {
    color: inherit;
}

.author-link:hover {
    color: rgb(194, 191, 191);
}

/* --- Responsivo --- */
@media (max-width: 768px) {
    .contact-title {
        font-size: 89px; /* Trava o tamanho no celular para não quebrar a palavra */
        letter-spacing: -1px;
    }
    .contact-email {
        font-size: 22px;
    }
    .social-links {
        gap: 40px;
    }
}
