/* =========================================================
   CONTATO — KLYVE
========================================================= */

.contact-page {
    background: #0b0b0b;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;

    padding: 100px 0 60px;

    overflow: hidden;
}


.contact-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    opacity: 0.35;

    pointer-events: none;
}


.contact-orb {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -200px;
    top: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(0, 213, 0, 0.14),
            rgba(0, 213, 0, 0.03) 40%,
            transparent 72%
        );

    filter: blur(2px);

    pointer-events: none;
}


.contact-heading {
    position: relative;

    z-index: 2;

    max-width: 700px;
}


.contact-label {
    display: inline-block;

    margin-bottom: 25px;

    color: #00D500;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.contact-heading h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(44px, 5.6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3.5px;

    font-weight: 400;
}


.contact-heading h1 strong {
    display: block;

    font-weight: 700;
}


.contact-heading p {
    max-width: 560px;

    margin-top: 30px;

    color: #9a9a9a;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   BLOCO PRINCIPAL
========================================================= */

.contact-main {
    padding: 60px 0 130px;

    background: #0b0b0b;
}


.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;
}


/* CARD GRANDE — CHAMADA */

.contact-cta-card {
    padding: 50px 45px;

    border-radius: 18px;

    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(0, 213, 0, 0.16),
            transparent 55%
        ),
        #121212;

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.contact-cta-card span {
    display: block;

    margin-bottom: 20px;

    color: #00D500;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.contact-cta-card h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(28px, 3vw, 38px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    font-weight: 400;
}


.contact-cta-card h2 strong {
    font-weight: 700;
}


.contact-cta-card p {
    margin-top: 18px;

    color: #8e8e8e;

    font-size: 14px;

    line-height: 1.7;
}


.contact-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 34px;

    padding: 14px 28px;

    border: 1px solid #00D500;

    border-radius: 30px;

    background: #00D500;

    color: #000000;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    cursor: pointer;

    align-self: flex-start;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.contact-cta-button:hover {
    transform: translateY(-3px);

    background: transparent;

    color: #00D500;
}


/* CARDS DE CANAL */

.contact-channels {
    display: flex;

    flex-direction: column;

    gap: 24px;
}


.contact-channel {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px 30px;

    border-radius: 14px;

    background: #121212;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: border-color 0.25s ease, background 0.25s ease;
}


.contact-channel:hover {
    background: #171717;

    border-color: rgba(0, 213, 0, 0.4);
}


.contact-channel-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(0, 213, 0, 0.1);

    color: #00D500;

    font-size: 18px;
}


.contact-channel-text span {
    display: block;

    color: #777777;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 6px;
}


.contact-channel-text strong {
    display: block;

    color: #ffffff;

    font-size: 17px;

    font-weight: 600;

    letter-spacing: -0.3px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        padding: 70px 0 40px;
    }

    .contact-heading h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .contact-cta-card {
        padding: 36px 28px;
    }

    .contact-channel {
        padding: 22px;
    }

}
