/* =========================================================
   VIDALEN — CONTACTOS
   Contact Page Design System
   ========================================================= */

/* =========================================================
   01. PAGE BASE
   ========================================================= */

.contact-page {
    overflow-x: hidden;
}


/* =========================================================
   02. CONTACT HERO
   ========================================================= */

.contact-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(3, 31, 59, .98) 0%,
            rgba(6, 44, 82, .91) 43%,
            rgba(6, 44, 82, .52) 100%
        ),
        url("assets/contactos-hero.jpg") center / cover no-repeat;
}


/* subtle bottom fade */

.contact-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 190px;

    background:
        linear-gradient(
            to top,
            rgba(3, 31, 59, .82),
            transparent
        );

    pointer-events: none;
    z-index: -1;
}


/* Decorative grid */

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - .5px),
            rgba(255,255,255,.045) calc(50% - .5px),
            rgba(255,255,255,.045) calc(50% + .5px),
            transparent calc(50% + .5px)
        );

    opacity: .45;
    pointer-events: none;
    z-index: -1;
}


/* =========================================================
   HERO INNER
   ========================================================= */

.contact-hero-inner {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;

    padding:
        150px
        0
        82px;

    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 70px;

    align-items: end;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.contact-hero-content {
    max-width: 760px;
}

.contact-hero-content .eyebrow {
    margin-bottom: 16px;
}


.contact-hero-kicker {
    margin: 0 0 18px;

    font:
        10px/1.3 "DM Mono",
        monospace;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(255,255,255,.65);
}


.contact-hero h1 {
    max-width: 780px;

    margin: 0 0 27px;

    font-size:
        clamp(48px, 6.3vw, 82px);

    line-height: .99;

    letter-spacing: -.06em;
}


.contact-hero h1 em {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -.055em;
}


.contact-hero-copy {
    max-width: 535px;

    margin: 0;

    color: #d5e4ec;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   HERO ASIDE
   ========================================================= */

.contact-hero-aside {
    align-self: end;

    border-top:
        1px solid
        rgba(255,255,255,.28);

    padding-top: 19px;
}


.contact-hero-aside > span {
    display: block;

    margin-bottom: 14px;

    color: var(--cyan);

    font:
        10px/1.3
        "DM Mono",
        monospace;

    letter-spacing: .1em;
    text-transform: uppercase;
}


.contact-hero-aside p {
    max-width: 310px;

    margin: 0;

    color: #b9ccd9;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   HERO FOOTER
   ========================================================= */

.contact-hero-footer {
    width: 100%;

    border-top:
        1px solid
        rgba(255,255,255,.25);

    padding: 21px 0;

    font:
        10px/1
        "DM Mono",
        monospace;

    letter-spacing: .04em;

    color: rgba(255,255,255,.78);
}


.contact-hero-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.contact-hero-footer .scroll-hint {
    display: flex;
    align-items: center;
    gap: 9px;
}


.contact-hero-footer .scroll-hint i {
    display: block;

    width: 27px;
    height: 1px;

    background: var(--cyan);
}


/* =========================================================
   03. CONTACT INTRO
   ========================================================= */

.contact-intro {
    padding: 105px 0 95px;

    background: var(--paper);
}


.contact-intro-grid {
    display: grid;

    grid-template-columns: 1.12fr .88fr;

    gap: 75px;

    align-items: start;
}


.contact-intro-heading h2 {
    max-width: 650px;

    margin: 0;

    font-size:
        clamp(34px, 4.2vw, 56px);

    line-height: 1.06;

    letter-spacing: -.05em;
}


.contact-intro-heading h2 em {
    font-family: var(--serif);
    font-weight: 600;
}


.contact-intro-copy {
    padding-top: 12px;

    max-width: 470px;

    font-size: 15px;
    line-height: 1.75;
}


.contact-intro-copy p {
    margin-bottom: 25px;
}


.contact-intro-copy strong {
    color: var(--blue);
}


/* =========================================================
   04. CONTACT CHANNELS
   ========================================================= */

.contact-channels {
    padding: 0 0 105px;

    background: var(--paper);
}


.contact-channel-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid
        var(--line);

    border-left:
        1px solid
        var(--line);
}


.contact-channel {
    min-height: 235px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    border-right:
        1px solid
        var(--line);

    border-bottom:
        1px solid
        var(--line);

    color: var(--ink);

    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.contact-channel:hover {
    background: #eaf0f1;
}


.contact-channel > span {
    font:
        10px/1
        "DM Mono",
        monospace;

    letter-spacing: .1em;

    color: var(--blue);
}


.contact-channel h3 {
    margin:
        38px 0
        auto;

    font-size: 23px;
    line-height: 1.1;

    letter-spacing: -.04em;
}


.contact-channel p {
    max-width: 280px;

    margin: 0;

    font-size: 12px;
    line-height: 1.55;
}


.contact-channel-link {
    margin-top: 17px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
}


.contact-channel-link i {
    margin-left: 10px;

    font-style: normal;

    font-size: 17px;
}


/* accent */

.contact-channel-accent {
    background: var(--cyan);
    color: var(--deep);
}


.contact-channel-accent:hover {
    background: #7ce8e9;
}


.contact-channel-accent > span,
.contact-channel-accent .contact-channel-link {
    color: var(--deep);
}


/* =========================================================
   05. MAIN CONTACT / FORM SECTION
   ========================================================= */

.contact-form-section {
    padding: 105px 0;

    background: var(--navy);

    color: #fff;
}


.contact-form-grid {
    display: grid;

    grid-template-columns:
        .88fr 1.12fr;

    gap: 80px;

    align-items: start;
}


/* =========================================================
   FORM COPY
   ========================================================= */

.contact-form-copy h2 {
    max-width: 550px;

    margin: 0 0 23px;

    font-size:
        clamp(34px, 4.3vw, 56px);

    line-height: 1.05;

    letter-spacing: -.05em;
}


.contact-form-copy h2 em {
    font-family: var(--serif);
    font-weight: 600;
}


.contact-form-copy > p:not(.eyebrow) {
    max-width: 420px;

    margin-bottom: 35px;

    color: #cbdbe5;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   DIRECT CONTACT
   ========================================================= */

.contact-direct {
    max-width: 420px;

    margin-top: 48px;

    border-top:
        1px solid
        rgba(255,255,255,.22);

    padding-top: 17px;
}


.contact-direct-label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,.58);

    font:
        10px/1.3
        "DM Mono",
        monospace;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.contact-direct a {
    color: var(--cyan);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}


.contact-direct a:hover {
    color: #fff;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {
    background: #fff;

    color: var(--ink);

    padding: 35px;
}


.contact-form-title {
    margin-bottom: 28px;

    font-size: 17px;
    font-weight: 800;
}


.contact-form .form-field {
    margin-bottom: 17px;
}


.contact-form .form-field label {
    display: block;

    margin-bottom: 6px;

    color: var(--ink);

    font-size: 10px;
    font-weight: 800;
}


.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    border:
        1px solid
        #cbd5d9;

    border-radius: 0;

    outline: none;

    background: #f8faf9;

    color: var(--ink);

    font:
        13px/1.4
        var(--font);

    padding: 13px 14px;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);

    background: #fff;

    box-shadow:
        0 0 0 3px
        rgba(7,91,143,.08);
}


.contact-form textarea {
    min-height: 120px;

    resize: vertical;
}


.contact-form select {
    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--blue) 50%),
        linear-gradient(135deg, var(--blue) 50%, transparent 50%);

    background-position:
        calc(100% - 17px) 50%,
        calc(100% - 12px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    padding-right: 35px;
}


/* form rows */

.contact-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


/* checkbox */

.contact-form .check {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin: 4px 0 22px;

    color: #53616a;

    font-size: 10px;
    line-height: 1.45;
}


.contact-form .check input {
    width: auto;

    margin:
        2px 0 0;

    accent-color: var(--blue);
}


/* button */

.contact-form .button {
    width: 100%;

    min-height: 48px;
}


.contact-form-status {
    min-height: 17px;

    margin: 14px 0 0;

    color: var(--blue);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   06. LOCATION
   ========================================================= */

.contact-location {
    padding: 105px 0;

    background: var(--paper);
}


.contact-location-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 75px;
}


.contact-location-heading h2 {
    max-width: 600px;

    margin: 0;

    font-size:
        clamp(34px, 4.2vw, 55px);

    line-height: 1.06;

    letter-spacing: -.05em;
}


.contact-location-heading h2 em {
    font-family: var(--serif);
    font-weight: 600;
}


.contact-location-heading > p:last-child {
    max-width: 430px;

    margin-top: 24px;

    font-size: 14px;
    line-height: 1.75;
}


/* location info */

.contact-location-info {
    border-top:
        1px solid
        var(--line);
}


.location-block {
    padding: 22px 0;

    border-bottom:
        1px solid
        var(--line);

    display: grid;

    grid-template-columns:
        115px 1fr;

    gap: 20px;
}


.location-block > span {
    color: var(--blue);

    font:
        10px/1.4
        "DM Mono",
        monospace;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.location-block strong {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;
}


.location-block p {
    margin: 0;

    color: #53616a;

    font-size: 12px;
    line-height: 1.55;
}


.location-block a {
    color: var(--ink);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}


.location-block a:hover {
    color: var(--blue);
}


/* =========================================================
   07. AREAS OF CONTACT
   ========================================================= */

.contact-areas {
    padding: 0 0 105px;

    background: var(--paper);
}


.contact-area-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        var(--line);

    border-left:
        1px solid
        var(--line);
}


.contact-area-card {
    min-height: 150px;

    padding: 22px;

    border-right:
        1px solid
        var(--line);

    border-bottom:
        1px solid
        var(--line);

    transition:
        background .25s ease,
        transform .25s ease;
}


.contact-area-card:hover {
    background: #e9eff0;
}


.contact-area-card span {
    display: block;

    margin-bottom: 30px;

    color: var(--blue);

    font:
        10px/1
        "DM Mono",
        monospace;

    letter-spacing: .1em;
}


.contact-area-card strong {
    display: block;

    max-width: 170px;

    font-size: 15px;
    line-height: 1.2;

    letter-spacing: -.025em;
}


/* =========================================================
   08. FINAL CTA
   ========================================================= */

.contact-final {
    position: relative;

    padding: 100px 0;

    background: var(--blue);

    color: #fff;

    overflow: hidden;
}


.contact-final::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    bottom: -300px;

    border:
        1px solid
        rgba(80,212,218,.35);

    border-radius: 50%;

    pointer-events: none;
}


.contact-final::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -70px;
    bottom: -205px;

    border:
        1px solid
        rgba(80,212,218,.18);

    border-radius: 50%;

    pointer-events: none;
}


.contact-final-inner {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 70px;

    align-items: end;
}


.contact-final h2 {
    max-width: 760px;

    margin: 0;

    font-size:
        clamp(36px, 4.5vw, 60px);

    line-height: 1.03;

    letter-spacing: -.055em;
}


.contact-final h2 em {
    font-family: var(--serif);
    font-weight: 600;
}


.contact-final-copy {
    max-width: 470px;

    margin-top: 20px;

    color: #d5e9f3;

    font-size: 14px;
    line-height: 1.7;
}


.contact-final-actions {
    display: flex;

    justify-content: flex-end;

    gap: 12px;

    align-items: center;
}


.contact-final .button {
    background: var(--cyan);

    border-color: var(--cyan);

    color: var(--deep);
}


.contact-final .button:hover {
    background: #7ce8e9;
}


/* =========================================================
   09. ACCESSIBILITY / MOTION
   ========================================================= */

.contact-channel:focus-visible,
.contact-direct a:focus-visible,
.location-block a:focus-visible,
.contact-final .button:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
    outline:
        2px solid
        var(--cyan);

    outline-offset: 3px;
}


@media (prefers-reduced-motion: reduce) {

    .contact-channel,
    .contact-area-card,
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        transition: none;
    }

}


/* =========================================================
   10. TABLET
   ========================================================= */

@media (max-width: 950px) {

    .contact-hero {
        min-height: 610px;
    }


    .contact-hero-inner {
        grid-template-columns: 1fr;

        gap: 42px;

        padding-top: 135px;
        padding-bottom: 70px;
    }


    .contact-hero-aside {
        max-width: 500px;
    }


    .contact-intro-grid,
    .contact-location-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .contact-form-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-form-copy > p:not(.eyebrow) {
        max-width: 600px;
    }


    .contact-direct {
        margin-top: 35px;
    }


    .contact-channel-grid {
        grid-template-columns: 1fr 1fr;
    }


    .contact-area-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .contact-final-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .contact-final-actions {
        justify-content: flex-start;
    }

}


/* =========================================================
   11. MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .contact-hero {
        min-height: 650px;

        background-position:
            62% center;
    }


    .contact-hero-inner {
        width:
            min(
                100% - 32px,
                1180px
            );

        padding-top: 110px;
        padding-bottom: 55px;

        gap: 35px;
    }


    .contact-hero h1 {
        font-size: 47px;

        line-height: .99;

        margin-bottom: 22px;
    }


    .contact-hero-copy {
        font-size: 14px;

        line-height: 1.7;
    }


    .contact-hero-aside {
        padding-top: 16px;
    }


    .contact-hero-aside p {
        font-size: 11px;
    }


    .contact-hero-footer {
        padding: 18px 0;
    }


    .contact-hero-footer .container {
        justify-content: center;
    }


    .contact-hero-footer .container > span:first-child {
        display: none;
    }


    .contact-hero-footer .container > span:last-child {
        display: none;
    }


    .contact-intro {
        padding:
            72px 0
            65px;
    }


    .contact-intro-heading h2,
    .contact-location-heading h2 {
        font-size: 37px;
    }


    .contact-intro-copy {
        padding-top: 0;

        font-size: 14px;
    }


    .contact-channels {
        padding-bottom: 72px;
    }


    .contact-channel-grid {
        grid-template-columns: 1fr;
    }


    .contact-channel {
        min-height: 210px;
    }


    .contact-form-section {
        padding:
            72px 0;
    }


    .contact-form {
        padding: 24px 20px;
    }


    .contact-form-copy h2 {
        font-size: 37px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-location {
        padding: 72px 0;
    }


    .location-block {
        grid-template-columns:
            1fr;

        gap: 8px;

        padding: 19px 0;
    }


    .contact-areas {
        padding-bottom: 72px;
    }


    .contact-area-grid {
        grid-template-columns: 1fr 1fr;
    }


    .contact-area-card {
        min-height: 135px;

        padding: 18px;
    }


    .contact-area-card span {
        margin-bottom: 24px;
    }


    .contact-area-card strong {
        font-size: 13px;
    }


    .contact-final {
        padding: 72px 0;
    }


    .contact-final h2 {
        font-size: 38px;
    }


    .contact-final-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .contact-final-actions .button {
        width: 100%;
    }

}


/* =========================================================
   12. SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .contact-hero {
        min-height: 625px;

        background-position:
            67% center;
    }


    .contact-hero-inner {
        padding-top: 95px;
    }


    .contact-hero h1 {
        font-size: 43px;

        letter-spacing: -.055em;
    }


    .contact-hero-kicker {
        font-size: 9px;
    }


    .contact-hero-copy {
        font-size: 13px;
    }


    .contact-hero-aside {
        display: none;
    }


    .contact-intro-heading h2,
    .contact-location-heading h2,
    .contact-form-copy h2 {
        font-size: 34px;
    }


    .contact-channel {
        min-height: 190px;

        padding: 20px;
    }


    .contact-channel h3 {
        font-size: 21px;

        margin-top: 30px;
    }


    .contact-form {
        padding: 20px 17px;
    }


    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 13px;

        padding: 12px;
    }


    .contact-area-grid {
        grid-template-columns: 1fr;
    }


    .contact-area-card {
        min-height: auto;

        padding: 20px;
    }


    .contact-final h2 {
        font-size: 35px;
    }

}


/* =========================================================
   13. VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .contact-hero h1 {
        font-size: 39px;
    }


    .contact-intro-heading h2,
    .contact-location-heading h2,
    .contact-form-copy h2 {
        font-size: 31px;
    }


    .contact-final h2 {
        font-size: 32px;
    }

}

/* =========================================================
   PAGE MOTION SYSTEM
   Vidalen — Contactos
   ========================================================= */

/* ---------------------------------------------------------
   01. ESTADO INICIAL DA PÁGINA
   --------------------------------------------------------- */

body {
    opacity: 0;
    transition:
        opacity 0.65s cubic-bezier(.22, 1, .36, 1);
}

body.page-ready {
    opacity: 1;
}


/* ---------------------------------------------------------
   02. HERO — ENTRADA
   --------------------------------------------------------- */

.insights-hero {
    clip-path: inset(0 0 0 0);
}

.insights-hero-grid {
    opacity: 0;
    transform: scale(1.04);

    transition:
        opacity 1.4s ease,
        transform 1.8s cubic-bezier(.22, 1, .36, 1);
}

.insights-hero-copy .eyebrow {
    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity .7s ease .15s,
        transform .8s cubic-bezier(.22, 1, .36, 1) .15s;
}

.insights-hero h1 {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .9s ease .25s,
        transform 1s cubic-bezier(.22, 1, .36, 1) .25s;
}

.insights-hero-text {
    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity .8s ease .45s,
        transform .9s cubic-bezier(.22, 1, .36, 1) .45s;
}


/* ---------------------------------------------------------
   HERO — ESTADO VISÍVEL
   --------------------------------------------------------- */

.page-ready .insights-hero-grid {
    opacity: .35;
    transform: scale(1);
}

.page-ready .insights-hero-copy .eyebrow,
.page-ready .insights-hero h1,
.page-ready .insights-hero-text {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------
   03. ÓRBITAS
   --------------------------------------------------------- */

.insights-hero-orbit {
    opacity: 0;

    animation:
        heroOrbitIn 1.4s cubic-bezier(.22, 1, .36, 1) .4s forwards,
        heroOrbitFloat 16s ease-in-out 1.8s infinite;
}

@keyframes heroOrbitIn {

    from {
        opacity: 0;
        transform: scale(.88) rotate(-20deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(-20deg);
    }

}

@keyframes heroOrbitFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -14px;
    }

}


/* ---------------------------------------------------------
   04. SCROLL REVEAL
   --------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .9s cubic-bezier(.22, 1, .36, 1);

    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------
   05. VARIAÇÕES
   --------------------------------------------------------- */

.reveal-left {
    opacity: 0;
    transform: translateX(-45px);

    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(45px);

    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* ---------------------------------------------------------
   06. CONTACT CHANNELS
   --------------------------------------------------------- */

.contact-channel {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1),
        background-color .35s ease,
        border-color .35s ease;
}

.contact-channel.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Entrada escalonada */

.contact-channel:nth-child(1) {
    transition-delay: .05s;
}

.contact-channel:nth-child(2) {
    transition-delay: .13s;
}

.contact-channel:nth-child(3) {
    transition-delay: .21s;
}

.contact-channel:nth-child(4) {
    transition-delay: .29s;
}


/* ---------------------------------------------------------
   07. MICROINTERAÇÃO DOS CONTACTOS
   --------------------------------------------------------- */

.contact-channel:hover {
    transform: translateY(-7px);
}

.contact-channel i {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);
}

.contact-channel:hover i {
    transform: translate(5px, -5px);
}

.contact-channel strong {
    transition:
        transform .35s ease;
}

.contact-channel:hover strong {
    transform: translateX(3px);
}


/* ---------------------------------------------------------
   08. FORMULÁRIO
   --------------------------------------------------------- */

.contact-form-section .contact-form-copy,
.contact-form-section .contact-form {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity .85s cubic-bezier(.22, 1, .36, 1),
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.contact-form-section.is-visible .contact-form-copy,
.contact-form-section.is-visible .contact-form {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-section.is-visible .contact-form {
    transition-delay: .14s;
}


/* ---------------------------------------------------------
   09. CAMPOS DO FORMULÁRIO
   --------------------------------------------------------- */

.contact-form .form-field,
.contact-form .check,
.contact-form > .button {
    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity .55s ease,
        transform .65s cubic-bezier(.22, 1, .36, 1);
}

.contact-form-section.is-visible .form-field,
.contact-form-section.is-visible .check,
.contact-form-section.is-visible > .button {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-section.is-visible .form-field:nth-child(1) {
    transition-delay: .15s;
}

.contact-form-section.is-visible .form-field:nth-child(2) {
    transition-delay: .20s;
}

.contact-form-section.is-visible .form-field:nth-child(3) {
    transition-delay: .25s;
}

.contact-form-section.is-visible .form-field:nth-child(4) {
    transition-delay: .30s;
}

.contact-form-section.is-visible .form-field:nth-child(5) {
    transition-delay: .35s;
}

.contact-form-section.is-visible .form-field:nth-child(6) {
    transition-delay: .40s;
}

.contact-form-section.is-visible .form-field:nth-child(7) {
    transition-delay: .45s;
}

.contact-form-section.is-visible .check {
    transition-delay: .50s;
}

.contact-form-section.is-visible > .button {
    transition-delay: .56s;
}


/* ---------------------------------------------------------
   10. LINKS / BOTÕES
   --------------------------------------------------------- */

.button {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        background-color .35s ease,
        color .35s ease;
}

.button:hover {
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   11. SAÍDA DA PÁGINA
   --------------------------------------------------------- */

body.page-leaving {
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .42s cubic-bezier(.55, 0, 1, .45);
}


/* ---------------------------------------------------------
   12. REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    body {
        opacity: 1 !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .contact-channel,
    .contact-form-section .contact-form-copy,
    .contact-form-section .contact-form,
    .contact-form .form-field,
    .contact-form .check,
    .contact-form > .button,
    .insights-hero-copy .eyebrow,
    .insights-hero h1,
    .insights-hero-text,
    .insights-hero-grid {
        opacity: 1 !important;
        transform: none !important;
    }

}