/* ---------------------- */
/* HERO */
/* ---------------------- */

.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GRADIENTE ORIGINAL POR CIMA DA IMAGEM */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F72585cc, #9D4EDDcc, #4361EEcc);
    z-index: 0;
}

/* CONTEÚDO */
.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-logo {
    width: 240px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.55));
}

.hero h1 {
    margin-top: 30px;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 5px 14px rgba(0,0,0,0.4);
}

.subtitle {
    margin-top: 20px;
    font-size: 26px;
    opacity: 0.9;
}

/* BOTÃO */
.btn-primary {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 48px;
    background: white;
    color: #7A2EC6;
    border-radius: 40px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
    transition: 0.35s;
}

.btn-primary:hover {
    transform: scale(1.07);
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* LINHAS ANIMADAS */
.tech-lines {
    position: absolute;
    inset: 0;
    background-image: url('/images/lines-tech.png');
    background-size: 200% 200%;
    opacity: 0.22;
    animation: moveLines 14s linear infinite;
    z-index: 1;
}

@keyframes moveLines {
    0% { background-position: 0 0; }
    100% { background-position: -200% 0; }
}
   /* ===== HERO MOBILE CENTRALIZADO ===== */
@media (max-width: 768px) {

    .hero{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo{
        max-width: 160px;
        margin-bottom: 24px;
    }

    .hero-content h1{
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .hero-content .subtitle{
        margin-top: 12px;
        margin-bottom: 28px;
        font-size: 0.95rem;
    }

    .btn-primary{
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}