:root {
    --background: #00130f;
    --background-dark: #000806;
    --green: #062b22;
    --green-light: #0d4537;

    --orange: #d3673f;
    --orange-light: #e69979;

    --white: #ffffff;
    --text-muted: #b5c1bd;

    --border: rgba(72, 145, 119, 0.22);
    --card-border: rgba(74, 135, 113, 0.24);

    --font-primary: "Inter", sans-serif;
    --font-secondary: "Montserrat", sans-serif;

    --page-width: 980px;
}

/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--background-dark);
    color: var(--white);
    font-family: var(--font-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* =====================================================
   ESTRUTURA PRINCIPAL
===================================================== */

.page {
    position: relative;

    display: flex;
    min-height: 100vh;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(0, 61, 47, 0.3),
            transparent 38%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(0, 59, 45, 0.35),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #000705 0%,
            #001510 48%,
            #001b15 100%
        );
}

/* =====================================================
   EFEITOS DO FUNDO
===================================================== */

.background-effects {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.background-effects::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.3),
            transparent 32%,
            transparent 72%,
            rgba(0, 0, 0, 0.18)
        );
}

.background-effects::after {
    content: "";

    position: absolute;
    right: -300px;
    bottom: -350px;

    width: 800px;
    height: 800px;

    border-radius: 50%;

    background: rgba(0, 60, 45, 0.2);

    filter: blur(100px);
}

/* =====================================================
   FOTO GRANDE AO FUNDO
===================================================== */

.background-person {
    position: absolute;
    z-index: 1;

    top: 40px;
    bottom: -80px;
    left: calc(50% - 760px);

    width: 720px;

    pointer-events: none;

    opacity: 0.24;

    /*
     * A máscara faz a imagem desaparecer suavemente
     * nas laterais, no topo e na parte inferior.
     */

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            #000 15%,
            #000 72%,
            transparent 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            #000 12%,
            #000 72%,
            transparent 100%
        );

    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            #000 15%,
            #000 72%,
            transparent 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            #000 12%,
            #000 72%,
            transparent 100%
        );

    mask-composite: intersect;
}

/*
 * Remove o antigo degradê retangular
 * que causava o corte nas bordas.
 */

.background-person::after {
    display: none;
}

.background-person img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center top;

    filter:
        saturate(0.55)
        contrast(1.08)
        brightness(0.62);

    transform: scale(1.06);
}

/* =====================================================
   CONTEÚDO
===================================================== */

.content-wrapper {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: var(--page-width);

    padding: 85px 30px 45px;
}

/* =====================================================
   PERFIL
===================================================== */

.profile {
    display: flex;
    max-width: 620px;
    align-items: center;
    gap: 22px;

    margin: 0 auto 45px;
}

.profile-photo-wrapper {
    position: relative;
    flex: 0 0 auto;
}

.profile-photo {
    width: 108px;
    height: 108px;

    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    object-fit: cover;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38),
        0 0 0 7px rgba(255, 255, 255, 0.025);
}

.profile-status {
    position: absolute;
    right: 5px;
    bottom: 5px;

    width: 17px;
    height: 17px;

    border: 3px solid #00110d;
    border-radius: 50%;

    background: #21c780;
}

.profile-information {
    flex: 1;
}

.profile-eyebrow {
    display: block;

    margin-bottom: 6px;

    color: var(--orange-light);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.profile-information h1 {
    margin-bottom: 12px;

    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.profile-information p {
    max-width: 410px;

    color: #f0f4f2;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

/* =====================================================
   GRID DOS LINKS
===================================================== */

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;
}

/* =====================================================
   CARDS
===================================================== */

.link-card {
    position: relative;

    min-height: 162px;

    overflow: hidden;
    isolation: isolate;

    border: 1px solid var(--card-border);
    border-radius: 13px;

    background: #031712;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.link-card::before {
    content: "";

    position: absolute;
    z-index: 3;

    right: 0;
    bottom: 0;
    left: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            transparent
        );

    opacity: 0.65;
    transform: scaleX(0.45);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.link-card:hover {
    transform: translateY(-7px);

    border-color: rgba(211, 103, 63, 0.55);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(22, 99, 75, 0.13);
}

.link-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.card-background {
    position: absolute;
    z-index: -3;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.link-card:hover .card-background {
    transform: scale(1.045);
    filter: brightness(1.05);
}

.card-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 18, 14, 0.98) 0%,
            rgba(0, 22, 17, 0.8) 46%,
            rgba(0, 17, 13, 0.16) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04),
            rgba(0, 0, 0, 0.28)
        );
}

.card-content {
    position: relative;
    z-index: 2;

    display: flex;
    max-width: 68%;
    min-height: 162px;
    flex-direction: column;
    justify-content: center;

    padding: 25px 22px;
}

.card-content-right {
    max-width: 59%;
    margin-left: auto;
}

.card-label {
    display: block;

    margin-bottom: 5px;

    color: #e8efec;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.card-content h2 {
    color: var(--orange-light);

    font-family: var(--font-secondary);
    font-size: 27px;
    font-weight: 800;
    line-height: 0.98;
    text-transform: uppercase;
}

.card-content h2 small {
    color: var(--orange);

    font-size: 19px;
}

.card-content p {
    max-width: 260px;
    max-height: 0;

    margin-top: 0;

    overflow: hidden;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    line-height: 1.5;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        margin-top 0.4s ease,
        opacity 0.4s ease;
}

.link-card:hover .card-content p {
    max-height: 60px;
    margin-top: 10px;

    opacity: 1;
}

.card-arrow {
    position: absolute;
    z-index: 5;

    right: 17px;
    bottom: 16px;

    display: grid;

    width: 34px;
    height: 34px;

    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;

    opacity: 0;
    transform: translateX(-8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.link-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.card-arrow:hover {
    background: var(--orange);
}

/* =====================================================
   CARD DE SUPORTE
===================================================== */

.support-card {
    position: relative;

    grid-column: 1 / -1;

    width: 50%;
    min-width: 430px;
    min-height: 162px;

    justify-self: center;
    overflow: hidden;
}

.support-card .card-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 18, 14, 0.96) 0%,
            rgba(0, 18, 14, 0.88) 38%,
            rgba(0, 16, 12, 0.55) 72%,
            rgba(0, 10, 8, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.32)
        );
}

/* =====================================================
   ÍCONE DO WHATSAPP
===================================================== */

.support-icon {
    position: absolute;
    z-index: 4;

    top: 50%;
    left: 24px;

    display: grid;

    width: 68px;
    height: 68px;

    place-items: center;

    border: 1px solid rgba(73, 224, 132, 0.32);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(37, 211, 102, 0.2),
            rgba(37, 211, 102, 0.06)
        );

    color: #32df78;

    font-size: 34px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transform: translateY(-50%);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.support-icon::before {
    content: "";

    position: absolute;
    z-index: -1;
    inset: 8px;

    border-radius: 15px;

    background: rgba(37, 211, 102, 0.08);

    filter: blur(10px);
}

.support-icon i {
    position: relative;
    z-index: 2;

    line-height: 1;
}

.support-card:hover .support-icon {
    transform:
        translateY(-50%)
        scale(1.05);

    border-color: rgba(53, 229, 122, 0.65);

    background:
        linear-gradient(
            145deg,
            rgba(37, 211, 102, 0.95),
            rgba(19, 156, 72, 0.92)
        );

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(37, 211, 102, 0.18);
}

/* =====================================================
   TEXTO DO SUPORTE
===================================================== */

.support-card .support-content {
    position: relative;
    z-index: 3;

    display: flex;
    width: calc(100% - 125px);
    max-width: none;
    min-height: 162px;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    margin-left: 115px;
    padding: 25px 48px 25px 0;

    text-align: left;
}

.support-content h2 {
    margin: 0;

    color: var(--orange-light);

    font-family: var(--font-secondary);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.support-content h2 small {
    display: block;

    margin-top: 5px;

    color: var(--orange);

    font-size: 16px;
    line-height: 1;
}

.support-content p {
    max-width: 240px;
}

/* =====================================================
   RODAPÉ
===================================================== */

.footer {
    padding-top: 35px;

    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}

/* =====================================================
   ANIMAÇÕES
===================================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   NOTEBOOK MENOR
===================================================== */

@media (max-width: 1050px) {
    .content-wrapper {
        max-width: 900px;
    }

    .background-person {
        left: -125px;

        width: 650px;

        opacity: 0.18;
    }
}

/* =====================================================
   TABLET E CELULAR
===================================================== */

@media (max-width: 760px) {
    .page {
        min-height: 100svh;
    }

    .content-wrapper {
        padding: 45px 18px 35px;
    }

    /* Foto grande de fundo no celular */

    .background-person {
        top: 20px;
        right: -130px;
        bottom: -40px;
        left: auto;

        width: 520px;

        opacity: 0.12;

        -webkit-mask-image:
            linear-gradient(
                90deg,
                transparent 0%,
                #000 18%,
                #000 68%,
                transparent 100%
            ),
            linear-gradient(
                180deg,
                transparent 0%,
                #000 10%,
                #000 75%,
                transparent 100%
            );

        -webkit-mask-composite: source-in;

        mask-image:
            linear-gradient(
                90deg,
                transparent 0%,
                #000 18%,
                #000 68%,
                transparent 100%
            ),
            linear-gradient(
                180deg,
                transparent 0%,
                #000 10%,
                #000 75%,
                transparent 100%
            );

        mask-composite: intersect;
    }

    .profile {
        flex-direction: column;
        gap: 16px;

        margin-bottom: 35px;

        text-align: center;
    }

    .profile-photo {
        width: 96px;
        height: 96px;
    }

    .profile-information h1 {
        font-size: 27px;
    }

    .profile-information p {
        max-width: 330px;

        font-size: 13px;
    }

    .links-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .link-card {
        min-height: 145px;
    }

    .card-content {
        min-height: 145px;
    }

    .support-card {
        grid-column: auto;

        width: 100%;
        min-width: 0;
        min-height: 145px;
    }

    .support-icon {
        left: 20px;

        width: 62px;
        height: 62px;

        border-radius: 18px;

        font-size: 31px;
    }

    .support-card .support-content {
        width: calc(100% - 110px);
        min-height: 145px;

        margin-left: 100px;
        padding: 22px 44px 22px 0;
    }

    .support-content h2 {
        font-size: 23px;
    }

    .support-content h2 small {
        font-size: 15px;
    }
}

/* =====================================================
   CELULARES MENORES
===================================================== */

@media (max-width: 430px) {
    .content-wrapper {
        padding-right: 14px;
        padding-left: 14px;
    }

    .background-person {
        right: -175px;

        width: 480px;

        opacity: 0.09;
    }

    .profile-information h1 {
        font-size: 25px;
    }

    .link-card {
        min-height: 132px;

        border-radius: 12px;
    }

    .card-content {
        max-width: 72%;
        min-height: 132px;

        padding: 20px 17px;
    }

    .card-content-right {
        max-width: 63%;
    }

    .card-content h2 {
        font-size: 23px;
    }

    .card-content h2 small {
        font-size: 16px;
    }

    .card-content p {
        display: none;
    }

    .card-label {
        font-size: 8px;
        letter-spacing: 4px;
    }

    .card-arrow {
        display: grid;

        opacity: 1;
        transform: none;
    }

    .support-card {
        min-height: 132px;
    }

    .support-icon {
        left: 15px;

        width: 56px;
        height: 56px;

        border-radius: 17px;

        font-size: 28px;
    }

    .support-card .support-content {
        width: calc(100% - 90px);
        min-height: 132px;

        margin-left: 84px;
        padding: 18px 38px 18px 0;
    }

    .support-content h2 {
        font-size: 20px;
    }

    .support-content h2 small {
        margin-top: 4px;

        font-size: 14px;
    }

    .support-content p {
        display: none;
    }
}

/* =====================================================
   ACESSIBILIDADE
===================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}