/* =========================================
   HERO VAKINHA
========================================= */
.vakinha-hero {
    padding-top: var(--altura-navbar);
    min-height: 85vh;
    padding: 100px 5% 50px;

    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
    radial-gradient(circle at 10% 80%, rgba(153, 41, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(153, 41, 234, 0.2) 0%, transparent 50%);
}

.vakinha-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    width: 100%;
    z-index: 2;
}

/* =========================================
   TEXTO
========================================= */

.vakinha-hero-content > div:first-child {
    flex: 1;
    max-width: 600px;
}

.vakinha-imagem-wrapper {
    flex: 1;

    display: flex;
    justify-content: flex-end;
    position: relative;
}

.label-campanha {
    display: inline-block;
    margin-bottom: 20px;

    font-family: 'Fira Code', monospace;
    font-size: .95rem;
    color: var(--cor-verde);
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 1px;

    opacity: 0.9;
}

.vakinha-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;

    background: linear-gradient(90deg, rgb(111, 48, 175) 0%, rgba(153, 41, 234, 1) 39%, rgba(153, 41, 234, 1) 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.destaque-verde {
    color: var(--cor-verde);
}

.vakinha-descricao {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--cor-texto-suave);
}

/* =========================================
   BOTÃO
========================================= */

.btn-vakinha {
    display: block;
    width: 100%;

    padding: 15px 32px;

    background: var(--cor-verde);
    color: var(--cor-preto) !important;

    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    text-align: center;

    transition: all .3s ease;
}
.btn-vakinha:hover {
    background: var(--cor-roxo);
    color: var(--cor-branco) !important;
}

/* =========================================
   SUBTEXTO
========================================= */

.vakinha-cta {
    width: 360px;
    max-width: 100%;
}

.vakinha-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 20px;
}

.vakinha-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.vakinha-subtexto {
    margin: 0;
    color: var(--cor-texto-suave);
    font-size: .95rem;
}

.vakinha-subtexto strong {
    color: var(--cor-verde);
}

/* =========================================
   IMAGEM
========================================= */

.vakinha-imagem-wrapper {
    flex: 1;

    display: flex;
    justify-content: center;
    position: relative;
}

.vakinha-img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}


/* =========================================
   RESPONSIVIDADE
========================================= */
@media (max-width: 900px) {

    .vakinha-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .vakinha-hero-content h1 {
        font-size: 2.5rem;
    }

    .vakinha-cta {
        margin: 0 auto;
    }

    .vakinha-img {
        max-width: 400px;
    }

    .vakinha-imagem-wrapper {
        order: 2;
    }

}

@media (max-width: 768px) {

    .vakinha-hero {
        min-height: auto;
    }

    .vakinha-hero-content h1 {
        font-size: 2rem;
    }

    .vakinha-img {
        width: 90%;
        max-width: 320px;
    }
}