:root {
    --blue-dark: #0b1f3d;
    --blue: #0b72ea;
    --blue-light: #198aff;
    --text: #142742;
    --muted: #617186;
    --muted-light: #8793a2;
    --white: #ffffff;
    --line: #dce5f0;
    --surface: #f6f8fc;
    --shadow: rgba(13, 37, 67, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    background: none;
    border: 0;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1330px, calc(100% - 64px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header__container {
    width: min(1330px, calc(100% - 64px));
    height: 88px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 235px;
}

.brand__logo {
    width: 212px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: #2c4058;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav a:hover {
    color: var(--blue-light);
}

.whatsapp-button {
    min-height: 46px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-left: 14px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #159bff,
            #045fd1
        );

    box-shadow:
        0 10px 24px rgba(5, 103, 215, 0.20);
}

.menu-toggle {
    width: 34px;
    height: 34px;

    margin-left: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;

    background: #3a4f68;
    border-radius: 99px;
}

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

.hero {
    position: relative;
    height: 760px;
    overflow: hidden;
    background: #ffffff;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__slides,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);

    transition:
        opacity 1.2s ease,
        transform 8s ease;
}

.hero__slide--active {
    opacity: 1;
    transform: scale(1.05);
}

.hero__media-shade {
    position: absolute;
    inset: 0;
    z-index: 5;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 17%,
            rgba(255,255,255,0.96) 24%,
            rgba(255,255,255,0.82) 32%,
            rgba(255,255,255,0.44) 40%,
            rgba(255,255,255,0.12) 49%,
            rgba(255,255,255,0.03) 57%,
            rgba(255,255,255,0) 63%
        );
}

.hero__content {
    position: relative;
    z-index: 20;

    width: min(1330px, calc(100% - 64px));
    height: 100%;
    margin: 0 auto;

    padding-top: 144px;
}

.hero__eyebrow,
.section-eyebrow {
    display: block;
    width: fit-content;
    margin-bottom: 18px;

    color: #334e6a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.section-eyebrow--light {
    color: rgba(255,255,255,0.92);
}

.hero h1 {
    width: 520px;
    max-width: 44vw;

    color: var(--blue-dark);

    font-size: clamp(58px, 5vw, 82px);
    line-height: 0.93;
    letter-spacing: -3.6px;
    font-weight: 300;
}

.hero h1 strong {
    color: #1988f7;
    font-weight: 400;
}

.hero p {
    width: 390px;
    max-width: 34vw;

    margin-top: 24px;

    color: #657589;
    font-size: 16px;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.button {
    min-height: 50px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover,
.solution-card__arrow:hover,
.story__nav:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #159bff,
            #045fd1
        );

    box-shadow:
        0 8px 22px rgba(5, 103, 215, 0.18);
}

.button--secondary,
.button--story {
    color: #17334f;
    background: rgba(255,255,255,0.76);
    border: 1px solid #9eadbf;
}

.button--dark {
    color: #ffffff;
    background: rgba(7, 16, 31, 0.30);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
}

.hero__features {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 34px;

    color: #8c98a7;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero__features span:not(:last-child)::after {
    content: "•";
    margin-left: 18px;
    color: #aeb8c4;
}

.hero__scene-copy {
    position: absolute;
    z-index: 16;

    left: 59%;
    top: 296px;

    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.48;
    letter-spacing: 2px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.32);
}

.hero__side-copy {
    position: absolute;
    z-index: 16;

    right: 54px;
    top: 176px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hero__side-copy::before,
.hero__side-copy::after {
    content: "";
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.82);
}

.hero__side-copy span {
    color: rgba(255,255,255,0.95);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.30);
}

.hero__pagination {
    position: absolute;
    z-index: 30;

    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.hero__dot {
    width: 6px;
    height: 6px;

    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    cursor: pointer;

    box-shadow: 0 1px 4px rgba(0,0,0,0.12);

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.hero__dot--active {
    width: 24px;
    background: #0b86f6;
}

/* =========================================================
   SOLUTIONS
========================================================= */

.solutions {
    margin-top: -20px;
    padding-bottom: 66px;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #f7f9fc;
    border: 1px solid #e6ecf3;
    box-shadow: 0 10px 24px rgba(10, 31, 61, 0.04);
}

.solution-card__image {
    height: 152px;
    background-size: cover;
    background-position: center;
}

.solution-card__icon {
    position: absolute;
    top: 102px;
    left: 18px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    color: #ffffff;
    font-size: 22px;

    border-radius: 999px;
    border: 3px solid rgba(255,255,255,0.72);

    background: rgba(8, 22, 43, 0.58);
    backdrop-filter: blur(7px);
}

.solution-card__body {
    min-height: 120px;
    padding: 20px 18px 16px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2f4a;
}

.solution-card p {
    margin-top: 8px;
    color: #647487;
    font-size: 14px;
    line-height: 1.45;
}

.solution-card__arrow {
    min-width: 40px;
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: #2a4666;
    font-size: 18px;

    border-radius: 999px;
    border: 1px solid #c6d2df;
    background: #ffffff;

    transition: transform 0.25s ease;
}

/* =========================================================
   STORY
========================================================= */

.story {
    padding: 56px 0 80px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );
}

.story__container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: center;
}

.story__content h2 {
    font-size: clamp(46px, 4vw, 68px);
    line-height: 0.98;
    letter-spacing: -2.4px;
    font-weight: 300;
    color: var(--blue-dark);
}

.story__content h2 strong {
    color: var(--blue);
    font-weight: 400;
}

.story__content p {
    max-width: 425px;
    margin-top: 24px;
    color: #66768a;
    font-size: 16px;
    line-height: 1.6;
}

.story__content .button {
    margin-top: 30px;
}

.story__gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 28px;
    align-items: center;
}

.story__track {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story__panel {
    position: absolute;
    width: 220px;
    height: 330px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.45s ease;
    box-shadow: 0 18px 42px rgba(13, 37, 67, 0.14);
}

.story__panel--left {
    left: 0;
    transform: scale(0.84);
    opacity: 0.72;
    z-index: 1;
}

.story__panel--active {
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 290px;
    height: 392px;
    opacity: 1;
    z-index: 3;
}

.story__panel--right {
    right: 0;
    transform: scale(0.84);
    opacity: 0.72;
    z-index: 1;
}

.story__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.story__caption {
    position: absolute;
    left: 24px;
    bottom: 26px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.45;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.45);
}

.story__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.story__line {
    width: 34px;
    height: 2px;
    background: #3f89f7;
}

.story__aside-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;

    color: #9ba8b8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.45;
}

.story__controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.story__nav {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: #233954;
    font-size: 26px;

    border-radius: 999px;
    border: 1px solid #ced8e4;
    background: rgba(255,255,255,0.86);

    transition: transform 0.25s ease;
}

.story__steps {
    display: flex;
    align-items: center;
    gap: 18px;
}

.story__step {
    position: relative;
    color: #a1acb8;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.story__step--active {
    color: var(--blue);
}

.story__step--active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--blue);
}

/* =========================================================
   CTA
========================================================= */

.cta {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.cta__bg,
.cta__overlay {
    position: absolute;
    inset: 0;
}

.cta__bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.cta__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 16, 32, 0.82) 0%,
            rgba(5, 16, 32, 0.60) 36%,
            rgba(5, 16, 32, 0.12) 72%,
            rgba(5, 16, 32, 0.14) 100%
        );
}

.cta__container {
    position: relative;
    z-index: 2;

    min-height: 430px;

    display: grid;
    grid-template-columns: 1fr 250px;
    align-items: center;
    gap: 30px;
}

.cta__content h2 {
    font-size: clamp(48px, 4.2vw, 72px);
    line-height: 0.95;
    letter-spacing: -2.8px;
    font-weight: 300;
    color: #ffffff;
}

.cta__content h2 strong {
    color: #1887f6;
    font-weight: 400;
}

.cta__content p {
    max-width: 430px;
    margin-top: 20px;
    color: rgba(255,255,255,0.80);
    font-size: 16px;
    line-height: 1.6;
}

.cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.cta__side {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: end;
}

.cta__side-line {
    width: 2px;
    height: 110px;
    background: rgba(255,255,255,0.62);
}

.cta__side-copy {
    color: rgba(255,255,255,0.90);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 2px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #ffffff;
    padding: 28px 0 34px;
}

.footer__container {
    display: grid;
    grid-template-columns: 1.1fr 1fr auto 0.8fr;
    align-items: center;
    gap: 26px;
}

.footer__logo {
    width: 200px;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: center;
}

.footer__nav a {
    color: #657588;
    font-size: 14px;
    font-weight: 500;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.footer__socials a {
    color: #5d6d81;
    font-size: 18px;
}

.footer__tagline {
    color: #7a8694;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    padding-left: 26px;
    border-left: 1px solid #dde5ef;
}

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

@media (max-width: 1180px) {
    .solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .story__aside {
        align-items: center;
    }

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

    .cta__side {
        justify-self: start;
    }

    .footer__container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer__tagline {
        border-left: 0;
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 980px) {
    .container,
    .header__container,
    .hero__content {
        width: min(100% - 34px, 1330px);
    }

    .nav {
        display: none;
    }

    .whatsapp-button {
        margin-left: auto;
    }

    .hero {
        height: 790px;
    }

    .hero h1 {
        max-width: 100%;
        width: 450px;
        font-size: 60px;
    }

    .hero p {
        max-width: 100%;
        width: 360px;
    }

    .hero__scene-copy,
    .hero__side-copy {
        display: none;
    }
}

@media (max-width: 760px) {
    .brand__logo {
        width: 168px;
    }

    .whatsapp-button {
        display: none;
    }

    .hero {
        height: 860px;
    }

    .hero__media-shade {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,1) 0%,
                rgba(255,255,255,1) 42%,
                rgba(255,255,255,0.78) 54%,
                rgba(255,255,255,0.14) 68%,
                rgba(255,255,255,0) 82%
            );
    }

    .hero__content {
        padding-top: 108px;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 48px;
        line-height: 0.98;
        letter-spacing: -2.2px;
    }

    .hero p {
        width: 100%;
        max-width: 330px;
        font-size: 15px;
    }

    .hero__actions,
    .cta__actions {
        flex-direction: column;
        align-items: stretch;
        width: min(330px, 100%);
    }

    .button {
        width: 100%;
    }

    .hero__features {
        flex-wrap: wrap;
        max-width: 340px;
        gap: 10px 18px;
    }

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

    .story__track {
        height: 360px;
    }

    .story__panel {
        width: 180px;
        height: 260px;
    }

    .story__panel--active {
        width: 230px;
        height: 320px;
    }

    .cta__content h2 {
        font-size: 44px;
    }
}



/* ===== WISE HERO MOCKUP LOCK START ===== */

:root {
    --wise-shell-width: min(1330px, calc(100% - 72px));
}

/* base geral */
.container,
.header__container,
.hero__content {
    width: var(--wise-shell-width);
}

/* =========================
   HEADER
========================= */

.header::before {
    content: none !important;
}

.header {
    z-index: 120;
}

.header__container {
    height: 88px;
    gap: 24px;
}

.brand {
    min-width: 242px;
}

.brand__logo {
    width: 224px;
    height: auto;
    object-fit: contain;
}

.nav {
    margin-left: auto;
    gap: 34px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #243e59;
    text-shadow: 0 1px 2px rgba(255,255,255,.78);
    transition: color .25s ease;
}

.nav a:hover {
    color: #0a80f1;
}

.whatsapp-button {
    min-height: 46px;
    padding: 0 24px;
    margin-left: 14px;
    font-size: 13px;
    font-weight: 700;
}

.menu-toggle span {
    background: #324b67;
}

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

.hero {
    height: 708px;
    overflow: hidden;
}

.hero__content {
    padding-top: 118px;
    z-index: 30;
}

.hero__media {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.hero__slide {
    background-position: center center !important;
    background-size: cover !important;
    transform: none !important;
    animation: none !important;
}

.hero__media-shade {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 16%,
            rgba(255,255,255,.97) 24%,
            rgba(255,255,255,.88) 31%,
            rgba(255,255,255,.67) 38%,
            rgba(255,255,255,.40) 46%,
            rgba(255,255,255,.14) 54%,
            rgba(255,255,255,0) 62%
        ) !important;
}

.hero__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #334d68;
}

.hero h1 {
    width: 470px;
    max-width: 40vw;
    font-size: clamp(58px, 4.4vw, 73px);
    line-height: .94;
    letter-spacing: -3px;
    font-weight: 300;
}

.hero h1 strong {
    font-weight: 400;
}

.hero p {
    width: 360px;
    max-width: 31vw;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.58;
}

/* ações e features */
.hero__actions {
    margin-top: 28px;
}

.hero__features {
    margin-top: 30px;
}

/* =========================
   CELULAR
========================= */

/* remove hacks anteriores */
.hero::after {
    content: none !important;
}

.hero__phone {
    position: absolute;
    z-index: 45;
    pointer-events: none;
    isolation: isolate;
    filter: drop-shadow(0 20px 28px rgba(7, 20, 37, .24));
    width: 345px !important;
    right: calc(var(--wise-side-gap) + 2px) !important;
    top: auto !important;
    bottom: -56px !important;
}

.hero__phone::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: -18px;
    right: -6px;
    top: 24px;
    bottom: 10px;
    background:
        radial-gradient(
            ellipse at 34% 48%,
            rgba(255,255,255,.70) 0%,
            rgba(255,255,255,.42) 28%,
            rgba(255,255,255,.14) 52%,
            rgba(255,255,255,0) 74%
        );
    filter: blur(18px);
    opacity: .86;
}

.hero__phone::after {
    content: none !important;
}

.hero__phone img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
}

/* =========================
   TEXTO CENTRAL DIREITO
========================= */

.hero__scene-copy {
    left: auto;
    right: 390px;
    top: 248px;
    z-index: 26;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,.34);
}

/* =========================
   BLOCO LATERAL DIREITO
========================= */

.hero__side-copy {
    position: absolute;
    z-index: 48;
    right: 66px;
    top: 148px;
    width: 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hero__side-copy::before {
    content: none !important;
}

.hero__side-copy::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 8px;
    background: rgba(255,255,255,.88);
}

.hero__side-copy span {
    display: block;
    width: 100%;
    text-align: right;
    color: rgba(255,255,255,.98);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 2.8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.42);
}

.hero__pagination {
    bottom: 18px;
    z-index: 60;
}

/* cards colados como no mockup */
.solutions {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 64px;
}

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

@media (max-width: 1320px) {
    :root {
        --wise-shell-width: min(100% - 52px, 1330px);
    }

    .brand__logo {
        width: 208px;
    }

    .nav {
        gap: 28px;
    }

    .nav a {
        font-size: 14px;
    }

    .hero__phone {
        right: 36px;
        width: 286px;
        bottom: -10px;
    }

    .hero__scene-copy {
        right: 350px;
    }

    .hero__side-copy {
        right: 42px;
    }
}

@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .whatsapp-button {
        margin-left: auto;
    }

    .hero {
        height: 780px;
    }

    .hero__phone {
        width: 250px;
        right: 0;
        bottom: -8px;
    }

    .hero__scene-copy,
    .hero__side-copy {
        display: none;
    }
}

@media (max-width: 760px) {
    .brand__logo {
        width: 170px;
    }

    .whatsapp-button {
        display: none;
    }

    .hero {
        height: 850px;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 48px;
        line-height: .98;
        letter-spacing: -2.2px;
    }

    .hero p {
        width: 100%;
        max-width: 330px;
        font-size: 15px;
    }

    .hero__actions,
    .cta__actions {
        flex-direction: column;
        align-items: stretch;
        width: min(330px, 100%);
    }

    .button {
        width: 100%;
    }

    .hero__features {
        flex-wrap: wrap;
        max-width: 340px;
        gap: 10px 18px;
    }

    .hero__phone {
        width: 220px;
        right: -20px;
        bottom: -12px;
    }

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

/* ===== WISE HERO MOCKUP LOCK END ===== */



/* ===== WISE FINAL MOCKUP TUNE START ===== */

/* largura geral do shell */
:root {
    --wise-shell-width: min(1330px, calc(100% - 72px));
}

.container,
.header__container,
.hero__content,
.solutions .container,
.story .container,
.cta .container,
.footer .container {
    width: var(--wise-shell-width);
}

/* =========================
   HEADER / MENU
========================= */

.header {
    z-index: 120;
}

.header__container {
    min-height: 88px;
    gap: 24px;
}

.brand__logo {
    width: 224px;
    height: auto;
    object-fit: contain;
}

.nav {
    margin-left: auto;
    gap: 34px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #233c57 !important;
    text-shadow: 0 1px 2px rgba(255,255,255,.82);
    transition: color .25s ease;
}

.nav a:hover {
    color: #0b7ff0 !important;
}

.whatsapp-button {
    min-height: 46px;
    padding: 0 24px;
    margin-left: 14px;
    font-size: 13px;
    font-weight: 700;
}

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

.hero {
    height: 708px;
    overflow: hidden;
}

.hero__content {
    padding-top: 118px;
    z-index: 30;
}

.hero__media {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.hero__slide {
    background-position: center center !important;
    background-size: cover !important;
}

.hero__media-shade {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 16%,
            rgba(255,255,255,.97) 24%,
            rgba(255,255,255,.88) 31%,
            rgba(255,255,255,.67) 38%,
            rgba(255,255,255,.40) 46%,
            rgba(255,255,255,.14) 54%,
            rgba(255,255,255,0) 62%
        ) !important;
}

.hero__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #334d68;
}

.hero h1 {
    width: 470px;
    max-width: 40vw;
    font-size: clamp(58px, 4.4vw, 73px);
    line-height: .94;
    letter-spacing: -3px;
    font-weight: 300;
}

.hero h1 strong {
    font-weight: 400;
}

.hero p {
    width: 360px;
    max-width: 31vw;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.58;
}

.hero__actions {
    margin-top: 28px;
}

.hero__features {
    margin-top: 30px;
}

/* =========================
   SMARTPHONE / MÃO
========================= */

.hero::after {
    content: none !important;
}

.hero__phone {
    position: absolute;
    z-index: 45;
    right: 84px !important;
    bottom: 12px !important;
    width: 318px !important;
    max-width: none !important;
    pointer-events: none;
    isolation: isolate;
    filter: drop-shadow(0 20px 28px rgba(7, 20, 37, .22));
}

.hero__phone::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: -16px;
    right: -10px;
    top: 22px;
    bottom: 8px;
    background:
        radial-gradient(
            ellipse at 36% 46%,
            rgba(255,255,255,.58) 0%,
            rgba(255,255,255,.34) 32%,
            rgba(255,255,255,.12) 56%,
            rgba(255,255,255,0) 76%
        );
    filter: blur(16px);
    opacity: .82;
}

.hero__phone img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}

/* =========================
   TEXTO "UMA CASA..."
========================= */

.hero__scene-copy {
    left: auto !important;
    right: 360px !important;
    top: 252px !important;
    z-index: 26;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,.30);
}

/* =========================
   BLOCO LATERAL DIREITO
========================= */

.hero__side-copy {
    position: absolute;
    z-index: 48;
    right: 88px !important;
    top: 146px !important;
    width: 94px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hero__side-copy::before {
    content: none !important;
}

.hero__side-copy::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 8px;
    background: rgba(255,255,255,.88);
}

.hero__side-copy span {
    display: block;
    width: 100%;
    text-align: right;
    color: rgba(255,255,255,.98);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 2.8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.42);
}

/* paginação do hero */
.hero__pagination {
    bottom: 18px;
    z-index: 60;
}

/* cards mais colados */
.solutions {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 64px;
}

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

@media (max-width: 1320px) {
    :root {
        --wise-shell-width: min(100% - 52px, 1330px);
    }

    .brand__logo {
        width: 208px;
    }

    .nav {
        gap: 28px;
    }

    .hero__phone {
        width: 298px !important;
        right: 52px !important;
        bottom: 8px !important;
    }

    .hero__scene-copy {
        right: 332px !important;
    }

    .hero__side-copy {
        right: 58px !important;
    }
}

@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .whatsapp-button {
        margin-left: auto;
    }

    .hero {
        height: 780px;
    }

    .hero__phone {
        width: 248px !important;
        right: 0 !important;
        bottom: -8px !important;
    }

    .hero__scene-copy,
    .hero__side-copy {
        display: none;
    }
}

@media (max-width: 760px) {
    .brand__logo {
        width: 170px;
    }

    .whatsapp-button {
        display: none;
    }

    .hero {
        height: 850px;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 48px;
        line-height: .98;
        letter-spacing: -2.2px;
    }

    .hero p {
        width: 100%;
        max-width: 330px;
        font-size: 15px;
    }

    .hero__actions,
    .cta__actions {
        flex-direction: column;
        align-items: stretch;
        width: min(330px, 100%);
    }

    .button {
        width: 100%;
    }

    .hero__features {
        flex-wrap: wrap;
        max-width: 340px;
        gap: 10px 18px;
    }

    .hero__phone {
        width: 220px !important;
        right: -20px !important;
        bottom: -12px !important;
    }

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

/* ===== WISE FINAL MOCKUP TUNE END ===== */

/* ===== WISE RIGHT EDGE LOCK START ===== */

/*
   Largura mestre do site.
   O Hero precisa terminar exatamente dentro dela.
*/
:root {
    --wise-shell-width: min(1330px, calc(100% - 72px));
    --wise-side-gap: calc((100% - var(--wise-shell-width)) / 2);
}

/*
   Corta tudo na borda direita exata.
*/
.hero {
    overflow: hidden !important;
    clip-path: inset(0 var(--wise-side-gap) 0 0) !important;
}

/*
   Mantém a mídia do hero proporcional.
   O problema do achatamento vem daqui:
   agora ela cobre a área sem distorcer.
*/
.hero__media,
.hero__slider,
.hero__slides,
.hero__track {
    overflow: hidden !important;
}

.hero__slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero__media img,
.hero__slider img,
.hero__slides img,
.hero__track img,
.hero__slide img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/*
   Smartphone: desce mais e continua preso
   dentro do mesmo limite da direita.
*/
.hero__phone {
    top: auto !important;
    bottom: -36px !important;
    right: calc(var(--wise-side-gap) + 8px) !important;
    z-index: 8 !important;
}

.hero__phone img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

/*
   Textos laterais continuam dentro da mesma régua.
*/
.hero__side-copy {
    right: calc(var(--wise-side-gap) + 24px) !important;
    z-index: 8 !important;
}

/*
   Ajuste da largura mestre em telas menores.
*/
@media (max-width: 1320px) {
    :root {
        --wise-shell-width: min(100% - 52px, 1330px);
        --wise-side-gap: calc((100% - var(--wise-shell-width)) / 2);
    }
}

/*
   Tablet/mobile: não manter esse corte rígido.
*/
@media (max-width: 980px) {
    .hero {
        clip-path: none !important;
    }

    .hero__phone {
        right: 20px !important;
        bottom: -10px !important;
    }
}

/* ===== WISE RIGHT EDGE LOCK END ===== */



/* ===== WISE PHONE POSITION FINAL START ===== */

/*
   CELULAR
   - ligeiramente maior
   - cresce para a esquerda
   - permanece dentro da régua direita já aprovada
*/

.hero__phone {
    position: absolute !important;

    width: 378px !important;
    max-width: none !important;

    right: calc(var(--wise-side-gap) + 12px) !important;

    top: auto !important;
    bottom: -92px !important;
    left: auto !important;

    transform: none !important;

    z-index: 45 !important;
    display: block !important;
    pointer-events: none !important;

    filter:
        drop-shadow(
            0 22px 30px rgba(7,20,37,.22)
        ) !important;
}

.hero__phone img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    max-width: none !important;

    object-fit: contain !important;
}


/* Desktop um pouco menor */
@media (max-width: 1320px) {

    .hero__phone {
        width: 350px !important;

        right: calc(var(--wise-side-gap) + 10px) !important;

        bottom: -84px !important;
    }

}


/* Tablet */
@media (max-width: 980px) {

    .hero__phone {
        width: 270px !important;

        right: 8px !important;
        bottom: -28px !important;
    }

}

/* ===== WISE PHONE POSITION FINAL END ===== */


/* ===== WISE HERO COPY FINAL START ===== */

/*
   "UMA CASA QUE ENTENDE VOCÊ"

   Fica à esquerda do telefone,
   aproximadamente na mesma posição visual do mockup.
*/

.hero__scene-copy {
    position: absolute !important;

    left: auto !important;

    right: calc(var(--wise-side-gap) + 405px) !important;
    top: 250px !important;

    width: 120px !important;

    z-index: 48 !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    line-height: 1.55 !important;
    letter-spacing: 2.2px !important;

    text-align: left !important;

    text-shadow:
        0 2px 9px rgba(0,0,0,.38) !important;
}


/*
   CONFORTO
   SEGURANÇA
   EFICIÊNCIA
   LIBERDADE

   Fica no canto superior direito,
   separado do telefone como no mockup.
*/

.hero__side-copy {
    position: absolute !important;

    right: calc(var(--wise-side-gap) + 18px) !important;
    top: 150px !important;

    width: 112px !important;

    z-index: 50 !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;

    gap: 11px !important;
}

.hero__side-copy::before {
    content: none !important;
}

.hero__side-copy::after {
    content: "" !important;

    display: block !important;

    width: 28px !important;
    height: 1px !important;

    margin-top: 8px !important;

    background:
        rgba(255,255,255,.85) !important;
}

.hero__side-copy span {
    display: block !important;

    width: 100% !important;

    color: rgba(255,255,255,.98) !important;

    font-size: 9px !important;
    font-weight: 700 !important;

    line-height: 1.15 !important;
    letter-spacing: 2.7px !important;

    text-align: left !important;

    text-shadow:
        0 2px 8px rgba(0,0,0,.42) !important;
}


/* Desktop intermediário */
@media (max-width: 1320px) {

    .hero__scene-copy {
        right: calc(var(--wise-side-gap) + 375px) !important;
    }

    .hero__side-copy {
        right: calc(var(--wise-side-gap) + 14px) !important;
    }

}


/* Tablet: esconde textos decorativos */
@media (max-width: 980px) {

    .hero__scene-copy,
    .hero__side-copy {
        display: none !important;
    }

}

/* ===== WISE HERO COPY FINAL END ===== */



/* ===== WISE HERO FINE TUNE START ===== */

/*
   CELULAR
   - maior
   - mais para a esquerda
   - um pouco mais baixo
   - respeitando a régua direita já aprovada
*/
.hero__phone {
    width: 425px !important;

    right: calc(var(--wise-side-gap) + 48px) !important;

    top: auto !important;
    bottom: -106px !important;

    left: auto !important;

    transform: none !important;

    z-index: 45 !important;
}

.hero__phone img {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
}


/*
   UMA CASA QUE ENTENDE VOCÊ
   Mais próxima do celular e um pouco mais baixa
*/
.hero__scene-copy {
    left: auto !important;

    right: calc(var(--wise-side-gap) + 430px) !important;
    top: 278px !important;

    width: 118px !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    line-height: 1.55 !important;
    letter-spacing: 2.2px !important;

    text-align: left !important;

    z-index: 48 !important;
}


/*
   CONFORTO / SEGURANÇA / EFICIÊNCIA / LIBERDADE
   Mais para dentro e mais baixo
*/
.hero__side-copy {
    right: calc(var(--wise-side-gap) + 50px) !important;
    top: 176px !important;

    width: 116px !important;

    gap: 11px !important;

    align-items: flex-start !important;

    z-index: 50 !important;
}

.hero__side-copy span {
    text-align: left !important;

    font-size: 9px !important;
    font-weight: 700 !important;

    line-height: 1.15 !important;
    letter-spacing: 2.7px !important;
}

.hero__side-copy::after {
    width: 28px !important;
    height: 1px !important;
    margin-top: 8px !important;
}


/*
   Desktop um pouco menor
*/
@media (max-width: 1320px) {

    .hero__phone {
        width: 395px !important;

        right: calc(var(--wise-side-gap) + 38px) !important;

        bottom: -96px !important;
    }

    .hero__scene-copy {
        right: calc(var(--wise-side-gap) + 400px) !important;
        top: 270px !important;
    }

    .hero__side-copy {
        right: calc(var(--wise-side-gap) + 40px) !important;
        top: 170px !important;
    }
}


/*
   Tablet
*/
@media (max-width: 980px) {

    .hero__phone {
        width: 275px !important;
        right: 10px !important;
        bottom: -28px !important;
    }

    .hero__scene-copy,
    .hero__side-copy {
        display: none !important;
    }
}

/* ===== WISE HERO FINE TUNE END ===== */



/* ===== WISE TEXT REFINEMENT START ===== */

/* UMA CASA QUE ENTENDE VOCÊ */
.hero__scene-copy {
    top: 300px !important;

    font-size: 11px !important;
    font-weight: 800 !important;

    line-height: 1.55 !important;
    letter-spacing: 2.25px !important;

    color: #ffffff !important;

    -webkit-text-stroke: 0.35px rgba(0,0,0,.70);

    text-shadow:
        -1px -1px 1px rgba(0,0,0,.45),
         1px -1px 1px rgba(0,0,0,.45),
        -1px  1px 1px rgba(0,0,0,.45),
         1px  1px 1px rgba(0,0,0,.45),
         0 3px 8px rgba(0,0,0,.38) !important;
}


/* CONFORTO / SEGURANÇA / EFICIÊNCIA / LIBERDADE */
.hero__side-copy {
    top: 198px !important;
}

.hero__side-copy span {
    font-size: 10px !important;
    font-weight: 800 !important;

    letter-spacing: 2.8px !important;
    line-height: 1.18 !important;

    color: #ffffff !important;

    -webkit-text-stroke: 0.35px rgba(0,0,0,.72);

    text-shadow:
        -1px -1px 1px rgba(0,0,0,.42),
         1px -1px 1px rgba(0,0,0,.42),
        -1px  1px 1px rgba(0,0,0,.42),
         1px  1px 1px rgba(0,0,0,.42),
         0 3px 8px rgba(0,0,0,.38) !important;
}


/* Desktop menor */
@media (max-width: 1320px) {

    .hero__scene-copy {
        top: 290px !important;
        font-size: 10.5px !important;
    }

    .hero__side-copy {
        top: 190px !important;
    }

    .hero__side-copy span {
        font-size: 9.5px !important;
    }
}

/* ===== WISE TEXT REFINEMENT END ===== */



/* ===== WISE TEXT LOWER START ===== */

/* UMA CASA QUE ENTENDE VOCÊ */
.hero__scene-copy {
    top: 338px !important;
}

/* CONFORTO / SEGURANÇA / EFICIÊNCIA / LIBERDADE */
.hero__side-copy {
    top: 236px !important;
}

@media (max-width: 1320px) {
    .hero__scene-copy {
        top: 326px !important;
    }

    .hero__side-copy {
        top: 224px !important;
    }
}

/* ===== WISE TEXT LOWER END ===== */



/* ===== WISE NAV WHITE START ===== */

.nav a {
    font-size: 17px !important;
    font-weight: 700 !important;

    color: #ffffff !important;

    -webkit-text-stroke: 0.35px rgba(0,0,0,.72);

    text-shadow:
        -1px -1px 1px rgba(0,0,0,.42),
         1px -1px 1px rgba(0,0,0,.42),
        -1px  1px 1px rgba(0,0,0,.42),
         1px  1px 1px rgba(0,0,0,.42),
         0 3px 8px rgba(0,0,0,.38) !important;

    letter-spacing: .2px !important;
}

.nav a:hover {
    color: #8fc9ff !important;
}

/* Desktop menor */
@media (max-width: 1320px) {
    .nav a {
        font-size: 16px !important;
    }
}

/* ===== WISE NAV WHITE END ===== */



/* ===== WISE HERO MOTION START ===== */

/*
   Movimento suave do Hero.
   O enquadramento continua preso ao Hero,
   então a imagem nunca ultrapassa a régua direita.
*/

.hero,
.hero__media,
.hero__slides {
    overflow: hidden !important;
}

.hero__slide {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;

    transform: scale(1.015);
    transform-origin: center center;

    transition:
        opacity 1.2s ease,
        transform 7s ease !important;
}

/*
   Somente o slide ativo recebe o movimento.
*/
.hero__slide--active {
    transform: scale(1.07) translate3d(-0.6%, -0.3%, 0) !important;
}

/*
   Alterna levemente a direção para não ficar repetitivo.
*/
.hero__slide:nth-child(2n).hero__slide--active {
    transform: scale(1.065) translate3d(0.5%, -0.2%, 0) !important;
}

.hero__slide:nth-child(3n).hero__slide--active {
    transform: scale(1.075) translate3d(-0.3%, 0.4%, 0) !important;
}

/*
   Celular e textos ficam totalmente estáticos.
*/
.hero__phone,
.hero__scene-copy,
.hero__side-copy,
.hero__content,
.hero__pagination {
    transform: none !important;
}

/*
   Em telas menores reduzimos ainda mais o movimento.
*/
@media (max-width: 980px) {
    .hero__slide--active {
        transform: scale(1.04) !important;
    }
}

/* ===== WISE HERO MOTION END ===== */



/* ===== WISE SOLUTIONS INTERACTIVE START ===== */

/* =========================================================
   BASE DOS CARDS
========================================================= */

.solution-card {
    position: relative;
    overflow: hidden;

    cursor: pointer;

    transform: translateY(0);

    transition:
        transform .38s cubic-bezier(.2,.75,.3,1),
        box-shadow .38s ease,
        border-color .38s ease;
}

.solution-card:hover {
    transform: translateY(-7px);

    border-color: rgba(25, 132, 243, .18);

    box-shadow:
        0 20px 42px rgba(11, 35, 64, .12);
}


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

.solution-card__image {
    position: relative;

    overflow: hidden;

    transition:
        filter .65s ease,
        transform 1.1s cubic-bezier(.2,.75,.3,1),
        opacity .55s ease;
}

.solution-card:hover .solution-card__image {
    transform: scale(1.035);
}


/* =========================================================
   ÍCONE
========================================================= */

.solution-card__icon {
    z-index: 8;

    transition:
        transform .38s ease,
        box-shadow .38s ease,
        background .38s ease,
        border-color .38s ease;
}

.solution-card:hover .solution-card__icon {
    transform: translateY(-3px) scale(1.06);

    box-shadow:
        0 9px 20px rgba(5, 24, 47, .22);
}


/* =========================================================
   SETA
========================================================= */

.solution-card__arrow {
    transition:
        transform .32s ease,
        background .32s ease,
        border-color .32s ease,
        color .32s ease;
}

.solution-card:hover .solution-card__arrow {
    transform: translateX(4px);

    background: #0b83f6;
    border-color: #0b83f6;
    color: #ffffff;
}


/* =========================================================
   01 — ILUMINAÇÃO E CENAS
========================================================= */

/*
   Estado normal:
   ambiente mais apagado e neutro.
*/
.solution-card--lighting .solution-card__image {
    filter:
        brightness(.68)
        saturate(.72)
        contrast(.94);
}

/*
   Pequeno véu frio quando desligado.
*/
.solution-card--lighting::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 152px;

    pointer-events: none;

    z-index: 4;

    background:
        linear-gradient(
            180deg,
            rgba(20,34,51,.22),
            rgba(20,34,51,.08)
        );

    opacity: 1;

    transition:
        opacity .7s ease,
        background .7s ease;
}


/*
   Hover:
   luzes acendem.
*/
.solution-card--lighting:hover .solution-card__image {
    filter:
        brightness(1.13)
        saturate(1.12)
        contrast(1.02);
}

.solution-card--lighting:hover::before {
    opacity: .72;

    background:
        radial-gradient(
            circle at 55% 38%,
            rgba(255,221,155,.34) 0%,
            rgba(255,191,91,.16) 26%,
            rgba(255,170,65,0) 64%
        );
}

.solution-card--lighting:hover .solution-card__icon {
    background:
        radial-gradient(
            circle at 50% 40%,
            #ffe9a5,
            #ffc94d 68%,
            #ffb11a
        );

    border-color: rgba(255,212,104,.85);

    box-shadow:
        0 0 0 5px rgba(255,198,67,.10),
        0 0 24px rgba(255,183,31,.58);
}


/* =========================================================
   02 — SEGURANÇA INTELIGENTE
========================================================= */

.solution-card--security .solution-card__image {
    filter:
        brightness(.78)
        saturate(.75)
        contrast(1.02);
}

.solution-card--security::before {
    content: "";

    position: absolute;

    z-index: 5;

    top: 0;
    left: 0;

    width: 100%;
    height: 152px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 45%,
            rgba(43,163,255,.10) 49%,
            rgba(43,163,255,.55) 50%,
            rgba(43,163,255,.10) 51%,
            transparent 55%,
            transparent 100%
        );

    background-size: 100% 220%;

    background-position: 0 -100%;

    opacity: 0;
}

.solution-card--security:hover .solution-card__image {
    filter:
        brightness(1.02)
        saturate(1.05)
        contrast(1.05);
}

.solution-card--security:hover::before {
    opacity: 1;

    animation:
        wise-security-scan 1.55s ease-in-out infinite;
}

.solution-card--security:hover .solution-card__icon {
    border-color: rgba(54,166,255,.74);

    box-shadow:
        0 0 0 5px rgba(45,153,247,.10),
        0 0 23px rgba(30,143,247,.42);
}

@keyframes wise-security-scan {
    0% {
        background-position: 0 -100%;
    }

    100% {
        background-position: 0 100%;
    }
}


/* =========================================================
   03 — CLIMATIZAÇÃO
========================================================= */

.solution-card--climate .solution-card__image {
    filter:
        brightness(.88)
        saturate(.86)
        contrast(.98);
}

.solution-card--climate::before {
    content: "";

    position: absolute;

    z-index: 5;

    top: 0;
    left: 0;

    width: 100%;
    height: 152px;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            circle at 40% 48%,
            rgba(120,221,255,.30),
            rgba(61,168,255,.12) 38%,
            rgba(31,117,211,0) 70%
        );

    transition:
        opacity .7s ease;
}

.solution-card--climate:hover .solution-card__image {
    filter:
        brightness(1.03)
        saturate(1.03)
        contrast(1.01);
}

.solution-card--climate:hover::before {
    opacity: 1;

    animation:
        wise-climate-breathe 2.1s ease-in-out infinite;
}

.solution-card--climate:hover .solution-card__icon {
    border-color: rgba(73,194,255,.85);

    box-shadow:
        0 0 0 5px rgba(73,194,255,.10),
        0 0 24px rgba(49,180,255,.47);
}

@keyframes wise-climate-breathe {
    0%,
    100% {
        opacity: .35;
        transform: scale(.96);
    }

    50% {
        opacity: .9;
        transform: scale(1.05);
    }
}


/* =========================================================
   04 — INTEGRAÇÃO COMPLETA
========================================================= */

.solution-card--integration .solution-card__image {
    filter:
        brightness(.78)
        saturate(.80)
        contrast(.98);
}

.solution-card--integration::before,
.solution-card--integration::after {
    content: "";

    position: absolute;

    z-index: 5;

    pointer-events: none;

    opacity: 0;

    transition:
        opacity .5s ease,
        transform .8s ease;
}


/*
   Linha de conexão horizontal
*/
.solution-card--integration::before {
    top: 70px;
    left: 16%;

    width: 68%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(70,174,255,.85),
            rgba(133,216,255,1),
            rgba(70,174,255,.85),
            transparent
        );

    box-shadow:
        0 0 12px rgba(59,171,255,.65);

    transform: scaleX(.15);
}


/*
   Pontos de conexão
*/
.solution-card--integration::after {
    top: 61px;
    left: 25%;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #86dcff;

    box-shadow:
        62px 10px 0 -1px #4ab5ff,
        125px -3px 0 -1px #86dcff,
        0 0 15px rgba(69,180,255,.8),
        62px 10px 15px rgba(69,180,255,.8),
        125px -3px 15px rgba(69,180,255,.8);
}

.solution-card--integration:hover .solution-card__image {
    filter:
        brightness(1.04)
        saturate(1.08)
        contrast(1.02);
}

.solution-card--integration:hover::before {
    opacity: 1;

    transform: scaleX(1);
}

.solution-card--integration:hover::after {
    opacity: 1;

    animation:
        wise-integration-pulse 1.45s ease-in-out infinite;
}

.solution-card--integration:hover .solution-card__icon {
    border-color: rgba(71,177,255,.8);

    box-shadow:
        0 0 0 5px rgba(70,167,255,.10),
        0 0 23px rgba(56,165,255,.44);
}

@keyframes wise-integration-pulse {
    0%,
    100% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   ACESSIBILIDADE / REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .solution-card,
    .solution-card__image,
    .solution-card__icon,
    .solution-card__arrow,
    .solution-card::before,
    .solution-card::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .solution-card:hover {
        transform: none;
    }

}

/* ===== WISE SOLUTIONS INTERACTIVE END ===== */



/* ===== WISE STORY CLEAN FINAL START ===== */

/* =========================================================
   SEÇÃO
========================================================= */

.story {
    padding: 72px 0 82px !important;

    background:
        radial-gradient(
            ellipse at 70% 50%,
            rgba(195,220,248,.20),
            transparent 47%
        ),
        #fbfdff !important;
}

.story__container {
    display: grid !important;

    grid-template-columns:
        minmax(320px, .88fr)
        minmax(680px, 1.62fr) !important;

    align-items: center !important;

    gap: 58px !important;
}


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

.story__content h2 {
    margin-top: 14px !important;

    font-size: clamp(48px,4vw,67px) !important;

    line-height: .98 !important;

    letter-spacing: -2.7px !important;

    font-weight: 300 !important;

    color: #102b4b !important;
}

.story__content h2 strong {
    color: #087df0 !important;
    font-weight: 400 !important;
}

.story__content p {
    width: 390px !important;
    max-width: 100% !important;

    margin-top: 24px !important;

    font-size: 16px !important;
    line-height: 1.55 !important;

    color: #536d88 !important;
}

.button--story {
    margin-top: 28px !important;
}


/* =========================================================
   GALERIA + TEXTO DIREITO
========================================================= */

.story__gallery {
    display: grid !important;

    grid-template-columns:
        minmax(500px,1fr)
        190px !important;

    align-items: center !important;

    gap: 34px !important;
}


/* =========================================================
   PALCO
========================================================= */

.story__stage {
    position: relative !important;

    height: 430px !important;

    overflow: visible !important;

    isolation: isolate;
}


/* =========================================================
   BASE DOS 3 PAINÉIS
========================================================= */

.story__card {
    position: absolute !important;

    top: 50% !important;

    /*
       IMPORTANTE:
       fica VISÍVEL para a imagem fantasma
       conseguir sair para fora do painel.
    */
    overflow: visible !important;

    transition:
        left 1.20s cubic-bezier(.18,.82,.18,1),
        width 1.20s cubic-bezier(.18,.82,.18,1),
        height 1.20s cubic-bezier(.18,.82,.18,1),
        transform 1.20s cubic-bezier(.18,.82,.18,1),
        opacity 1.05s ease,
        filter 1.05s ease !important;

    will-change:
        left,
        transform,
        width,
        height,
        opacity;

    background: transparent !important;

    box-shadow: none !important;
}


/*
   A imagem é que funciona como o card visual.
*/
.story__image {
    position: absolute !important;

    inset: 0 !important;

    overflow: hidden !important;

    border-radius: 22px !important;

    background-size: cover !important;

    background-position: center !important;

    transform: scale(1.02) !important;

    box-shadow:
        0 18px 45px rgba(17,42,72,.14);

    transition:
        transform 1.35s cubic-bezier(.18,.82,.18,1),
        filter 1.05s ease,
        opacity 1.05s ease !important;
}


/* =========================================================
   CENTRAL — ÚNICO TOTALMENTE NA FRENTE
========================================================= */

.story__card--center {
    left: 50% !important;

    width: 300px !important;
    height: 400px !important;

    transform:
        translate(-50%,-50%)
        scale(1) !important;

    opacity: 1 !important;

    z-index: 20 !important;
}

.story__card--center .story__image {
    opacity: 1 !important;

    filter:
        brightness(1)
        saturate(1)
        contrast(1) !important;

    transform: scale(1.035) !important;

    box-shadow:
        0 28px 62px rgba(17,42,72,.20);
}


/* =========================================================
   ESQUERDA
========================================================= */

.story__card--left {
    left: 4% !important;

    width: 245px !important;
    height: 310px !important;

    transform:
        translateY(-50%)
        translateX(18px)
        scale(.96) !important;

    opacity: 1 !important;

    z-index: 7 !important;
}

.story__card--left .story__image {
    opacity: .78 !important;

    filter:
        brightness(1.13)
        saturate(.72)
        contrast(.90) !important;
}


/* =========================================================
   DIREITA
========================================================= */

.story__card--right {
    left: calc(100% - 245px) !important;

    width: 245px !important;
    height: 310px !important;

    transform:
        translateY(-50%)
        translateX(-18px)
        scale(.96) !important;

    opacity: 1 !important;

    z-index: 7 !important;
}

.story__card--right .story__image {
    opacity: .78 !important;

    filter:
        brightness(1.13)
        saturate(.72)
        contrast(.90) !important;
}


/* =========================================================
   PAINEL FANTASMA ESQUERDO
========================================================= */

.story__card--left::before {
    content: "";

    position: absolute;

    z-index: -4;

    width: 205px;
    height: 270px;

    top: 50%;
    right: 58%;

    transform:
        translateY(-50%)
        translateX(-14px)
        scale(.94);

    border-radius: 20px;

    background-image: var(--story-image);

    background-size: cover;

    background-position: center;

    opacity: .22;

    filter:
        brightness(1.48)
        saturate(.30)
        contrast(.72);

    box-shadow:
        0 12px 28px rgba(17,42,72,.05);

    transition:
        transform 1.25s cubic-bezier(.18,.82,.18,1),
        opacity 1.05s ease;
}


/* =========================================================
   PAINEL FANTASMA DIREITO
========================================================= */

.story__card--right::before {
    content: "";

    position: absolute;

    z-index: -4;

    width: 205px;
    height: 270px;

    top: 50%;
    left: 58%;

    transform:
        translateY(-50%)
        translateX(14px)
        scale(.94);

    border-radius: 20px;

    background-image: var(--story-image);

    background-size: cover;

    background-position: center;

    opacity: .22;

    filter:
        brightness(1.48)
        saturate(.30)
        contrast(.72);

    box-shadow:
        0 12px 28px rgba(17,42,72,.05);

    transition:
        transform 1.25s cubic-bezier(.18,.82,.18,1),
        opacity 1.05s ease;
}


/*
   O central NÃO possui painel fantasma.
*/
.story__card--center::before {
    content: none !important;
}


/* =========================================================
   FADES EXTERNOS — FAZEM OS PAINÉIS "MORREREM" NO BRANCO
========================================================= */

.story__stage::before,
.story__stage::after {
    content: "";

    position: absolute;

    top: 7%;
    bottom: 7%;

    width: 120px;

    z-index: 15;

    pointer-events: none;
}

.story__stage::before {
    left: -10px;

    background:
        linear-gradient(
            90deg,
            rgba(251,253,255,1),
            rgba(251,253,255,.72) 34%,
            rgba(251,253,255,0)
        );
}

.story__stage::after {
    right: -10px;

    background:
        linear-gradient(
            270deg,
            rgba(251,253,255,1),
            rgba(251,253,255,.72) 34%,
            rgba(251,253,255,0)
        );
}


/* =========================================================
   LEGENDA CENTRAL
========================================================= */

.story__caption {
    position: absolute !important;

    left: 24px !important;
    bottom: 21px !important;

    z-index: 40 !important;

    color: #fff !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1.45 !important;

    letter-spacing: 2.1px !important;

    text-shadow:
        0 2px 9px rgba(0,0,0,.48);

    transition:
        opacity .65s ease,
        transform .9s cubic-bezier(.18,.82,.18,1) !important;
}


/*
   Somente o card central exibe a legenda.
*/
.story__card:not(.story__card--center) .story__caption {
    opacity: 0 !important;
}


/* =========================================================
   MOVIMENTO — "ABERTURA DIGITAL"
========================================================= */

.story__stage.is-changing .story__card--center {
    transform:
        translate(-50%,-50%)
        scale(1.025) !important;
}

.story__stage.is-changing .story__card--left {
    transform:
        translateY(-50%)
        translateX(4px)
        scale(.91) !important;
}

.story__stage.is-changing .story__card--right {
    transform:
        translateY(-50%)
        translateX(-4px)
        scale(.91) !important;
}


/*
   Quando um painel lateral vira central:
   cresce + escurece + ganha definição.
*/
.story__stage.story-moving-next .story__card--center {
    animation:
        wise-story-clean-next
        1.20s
        cubic-bezier(.18,.82,.18,1);
}

.story__stage.story-moving-prev .story__card--center {
    animation:
        wise-story-clean-prev
        1.20s
        cubic-bezier(.18,.82,.18,1);
}


@keyframes wise-story-clean-next {

    0% {
        opacity: .55;

        filter:
            brightness(1.35)
            saturate(.40);

        transform:
            translate(-38%,-50%)
            scale(.78);
    }

    42% {
        opacity: .82;

        filter:
            brightness(1.15)
            saturate(.72);

        transform:
            translate(-45%,-50%)
            scale(.92);
    }

    100% {
        opacity: 1;

        filter: none;

        transform:
            translate(-50%,-50%)
            scale(1);
    }
}


@keyframes wise-story-clean-prev {

    0% {
        opacity: .55;

        filter:
            brightness(1.35)
            saturate(.40);

        transform:
            translate(-62%,-50%)
            scale(.78);
    }

    42% {
        opacity: .82;

        filter:
            brightness(1.15)
            saturate(.72);

        transform:
            translate(-55%,-50%)
            scale(.92);
    }

    100% {
        opacity: 1;

        filter: none;

        transform:
            translate(-50%,-50%)
            scale(1);
    }
}


/* =========================================================
   LATERAL DIREITA / CONTROLES
========================================================= */

.story__line {
    width: 30px !important;
    height: 2px !important;

    margin-bottom: 28px !important;

    background: #1287f5 !important;
}

.story__aside-copy {
    display: flex !important;

    flex-direction: column !important;

    gap: 16px !important;
}

.story__aside-copy span {
    color: #8497ad !important;

    font-size: 11px !important;
    font-weight: 700 !important;

    line-height: 1.4 !important;

    letter-spacing: 2px !important;
}

.story__controls {
    margin-top: 30px !important;

    display: flex !important;

    align-items: center !important;

    gap: 14px !important;
}

.story__nav {
    width: 42px !important;
    height: 42px !important;

    display: grid !important;

    place-items: center !important;

    border-radius: 50% !important;

    border: 1px solid #ccd9e7 !important;

    background: rgba(255,255,255,.80) !important;

    color: #123b65 !important;

    font-size: 25px !important;

    cursor: pointer !important;
}

.story__steps {
    display: flex !important;

    gap: 15px !important;
}

.story__step {
    position: relative !important;

    border: 0 !important;

    background: transparent !important;

    color: #a5b4c5 !important;

    font-size: 11px !important;

    padding: 8px 0 12px !important;

    cursor: pointer !important;
}

.story__step--active {
    color: #0876e8 !important;

    font-weight: 800 !important;
}

.story__step--active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 11px;
    height: 2px;

    transform: translateX(-50%);

    background: #1188f5;
}


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

@media (max-width: 1100px) {

    .story__container {
        grid-template-columns: 1fr !important;
    }

    .story__gallery {
        margin-top: 36px !important;
    }

}


@media (max-width: 760px) {

    .story__gallery {
        grid-template-columns: 1fr !important;
    }

    .story__stage {
        height: 385px !important;
    }

    .story__card--center {
        width: 230px !important;
        height: 325px !important;
    }

    .story__card--left,
    .story__card--right {
        width: 165px !important;
        height: 235px !important;
    }

    .story__card--left {
        left: 0 !important;
    }

    .story__card--right {
        left: calc(100% - 165px) !important;
    }

    .story__card--left::before,
    .story__card--right::before {
        display: none !important;
    }

}


/* ===== WISE STORY CLEAN FINAL END ===== */



/* ===== WISE STORY PERSPECTIVE OVERRIDE START ===== */

/* palco com profundidade real */
.story__stage {
    perspective: 1800px !important;
    perspective-origin: 50% 50% !important;
    transform-style: preserve-3d !important;
    overflow: visible !important;
}

/* cards com transição mais fluida */
.story__card {
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    transition:
        left 1.10s cubic-bezier(.18,.82,.18,1),
        width 1.10s cubic-bezier(.18,.82,.18,1),
        height 1.10s cubic-bezier(.18,.82,.18,1),
        transform 1.20s cubic-bezier(.18,.82,.18,1),
        opacity .95s ease,
        filter .95s ease !important;
}

.story__image {
    transition:
        transform 1.20s cubic-bezier(.18,.82,.18,1),
        filter .95s ease,
        opacity .95s ease !important;
    backface-visibility: hidden !important;
}

/* card central */
.story__card--center {
    transform:
        translate(-50%, -50%)
        rotateY(0deg)
        scale(1)
        translateZ(22px) !important;
    z-index: 20 !important;
}

.story__card--center .story__image {
    transform: scale(1.04) !important;
    opacity: 1 !important;
    filter:
        brightness(1)
        saturate(1)
        contrast(1) !important;
}

/* lateral esquerdo em perspectiva */
.story__card--left {
    transform-origin: 100% 50% !important;
    transform:
        translateY(-50%)
        translateX(28px)
        rotateY(28deg)
        scale(.92)
        translateZ(-32px) !important;
    z-index: 8 !important;
}

.story__card--left .story__image {
    opacity: .78 !important;
    filter:
        brightness(1.12)
        saturate(.74)
        contrast(.90) !important;
    transform: scale(1.01) !important;
}

/* lateral direito em perspectiva */
.story__card--right {
    transform-origin: 0% 50% !important;
    transform:
        translateY(-50%)
        translateX(-28px)
        rotateY(-28deg)
        scale(.92)
        translateZ(-32px) !important;
    z-index: 8 !important;
}

.story__card--right .story__image {
    opacity: .78 !important;
    filter:
        brightness(1.12)
        saturate(.74)
        contrast(.90) !important;
    transform: scale(1.01) !important;
}

/* "fantasmas" mais ao fundo */
.story__card--left::before {
    right: 64% !important;
    width: 190px !important;
    height: 255px !important;
    transform:
        translateY(-50%)
        translateX(-16px)
        rotateY(36deg)
        scale(.90)
        translateZ(-60px) !important;
    opacity: .14 !important;
    filter:
        brightness(1.52)
        saturate(.24)
        contrast(.70) !important;
}

.story__card--right::before {
    left: 64% !important;
    width: 190px !important;
    height: 255px !important;
    transform:
        translateY(-50%)
        translateX(16px)
        rotateY(-36deg)
        scale(.90)
        translateZ(-60px) !important;
    opacity: .14 !important;
    filter:
        brightness(1.52)
        saturate(.24)
        contrast(.70) !important;
}

/* durante a troca: mais rotação e mais sensação de movimento */
.story__stage.is-changing .story__card--center {
    transform:
        translate(-50%, -50%)
        rotateY(0deg)
        scale(1.035)
        translateZ(30px) !important;
}

.story__stage.is-changing .story__card--left {
    transform:
        translateY(-50%)
        translateX(14px)
        rotateY(36deg)
        scale(.88)
        translateZ(-54px) !important;
}

.story__stage.is-changing .story__card--right {
    transform:
        translateY(-50%)
        translateX(-14px)
        rotateY(-36deg)
        scale(.88)
        translateZ(-54px) !important;
}

/* refinando a sensação de abertura digital */
.story__stage.story-moving-next .story__card--center .story__image,
.story__stage.story-moving-prev .story__card--center .story__image {
    animation:
        wiseStoryCenterFocus 1.12s cubic-bezier(.18,.82,.18,1);
}

@keyframes wiseStoryCenterFocus {
    0% {
        transform: scale(.97);
        filter: brightness(.96) saturate(1.08);
    }
    45% {
        transform: scale(1.055);
        filter: brightness(1.03) saturate(1.03);
    }
    100% {
        transform: scale(1.04);
        filter: brightness(1) saturate(1);
    }
}

/* responsivo */
@media (max-width: 760px) {
    .story__card--center {
        transform:
            translate(-50%, -50%)
            rotateY(0deg)
            scale(1)
            translateZ(14px) !important;
    }

    .story__card--left {
        transform:
            translateY(-50%)
            translateX(10px)
            rotateY(20deg)
            scale(.92)
            translateZ(-18px) !important;
    }

    .story__card--right {
        transform:
            translateY(-50%)
            translateX(-10px)
            rotateY(-20deg)
            scale(.92)
            translateZ(-18px) !important;
    }
}

/* ===== WISE STORY PERSPECTIVE OVERRIDE END ===== */



/* ===== WISE STORY SIDE TEXT COLOR START ===== */

.story__aside-copy span {
    color: #102b4b !important;
}

/* mantém um pouco mais suave que o título principal */
.story__aside-copy span {
    opacity: .82;
}

/* ===== WISE STORY SIDE TEXT COLOR END ===== */



/* =========================================================
   SOLUTION DETAIL
========================================================= */

.solution-detail-page {
    background: #fff;
}


.solution-detail-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 50;

    background: transparent;
}


.solution-detail-hero {
    min-height: 720px;

    display: flex;
    align-items: flex-end;

    padding:
        180px 0
        95px;

    background-size: cover;
    background-position: center;

    color: #fff;
}


.solution-detail-hero__content {
    width: 100%;
}


.solution-detail-hero h1 {
    max-width: 850px;

    margin:
        12px 0
        22px;

    font-size:
        clamp(
            48px,
            6vw,
            86px
        );

    line-height: .96;

    letter-spacing: -3px;
}


.solution-detail-hero p {
    max-width: 620px;

    margin-bottom: 30px;

    font-size: 18px;
    line-height: 1.65;

    color:
        rgba(
            255,
            255,
            255,
            .82
        );
}


.solution-detail-intro {
    padding: 120px 0;
}


.solution-detail-intro__grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;
}


.solution-detail-intro h2 {
    margin-top: 10px;

    color: #102b4b;

    font-size:
        clamp(
            38px,
            4vw,
            62px
        );

    line-height: 1;
}


.solution-detail-intro__text {
    color: #53677a;

    font-size: 19px;
    line-height: 1.8;

    white-space: pre-line;
}


.solution-detail-benefits {
    padding:
        100px 0
        115px;

    background: #f5f8fb;
}


.solution-detail-benefits h2 {
    margin:
        10px 0
        45px;

    color: #102b4b;

    font-size:
        clamp(
            34px,
            4vw,
            56px
        );
}


.solution-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 16px;
}


.solution-benefit {
    min-height: 120px;

    padding: 28px;

    display: flex;
    align-items: center;

    gap: 22px;

    border:
        1px solid
        #dfe8ef;

    border-radius: 15px;

    background: #fff;
}


.solution-benefit span {
    color: #2683da;

    font-size: 12px;
    font-weight: 800;
}


.solution-benefit strong {
    color: #173754;

    font-size: 18px;
}


.solution-detail-gallery {
    padding: 100px 0;
}


.solution-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 18px;
}


.solution-gallery-item {
    height: 430px;

    overflow: hidden;

    border-radius: 16px;
}


.solution-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease;
}


.solution-gallery-item:hover img {
    transform: scale(1.04);
}


.solution-detail-cta {
    padding:
        100px 0;

    background: #071b2e;

    color: #fff;
}


.solution-detail-cta__inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


.solution-detail-cta h2 {
    max-width: 700px;

    margin:
        10px 0
        15px;

    font-size:
        clamp(
            36px,
            4vw,
            58px
        );

    line-height: 1;
}


.solution-detail-cta p {
    max-width: 650px;

    color:
        rgba(
            255,
            255,
            255,
            .68
        );

    line-height: 1.7;
}


@media (max-width: 900px) {

    .solution-detail-intro__grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .solution-benefits-grid {
        grid-template-columns: 1fr;
    }


    .solution-gallery-grid {
        grid-template-columns: 1fr;
    }


    .solution-gallery-item {
        height: 350px;
    }


    .solution-detail-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    background: #fff;
}


.about-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 50;

    background: transparent;
}


.about-hero {
    min-height: 760px;

    padding:
        200px 0
        110px;

    display: flex;
    align-items: flex-end;

    background-size: cover;
    background-position: center;

    color: #fff;
}


.about-hero__content {
    width: 100%;
}


.about-hero h1 {
    max-width: 970px;

    margin:
        14px 0
        25px;

    font-size:
        clamp(
            48px,
            6vw,
            88px
        );

    line-height: .98;

    letter-spacing: -3px;
}


.about-hero p {
    max-width: 680px;

    color:
        rgba(
            255,
            255,
            255,
            .80
        );

    font-size: 18px;
    line-height: 1.7;
}


.about-story {
    padding: 125px 0;
}


.about-story__grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 90px;
}


.about-story h2 {
    margin-top: 12px;

    color: #102b4b;

    font-size:
        clamp(
            40px,
            4.5vw,
            64px
        );

    line-height: 1;
}


.about-story__text {
    color: #536b80;

    font-size: 18px;

    line-height: 1.85;

    white-space: pre-line;
}


.about-mission {
    padding:
        120px 0;

    background: #071b2e;

    color: #fff;
}


.about-mission__inner {
    max-width: 950px;
}


.about-mission h2 {
    margin:
        14px 0
        24px;

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );

    line-height: 1;
}


.about-mission p {
    max-width: 760px;

    color:
        rgba(
            255,
            255,
            255,
            .70
        );

    font-size: 19px;
    line-height: 1.8;
}


.about-values {
    padding:
        120px 0;
}


.about-values > .container > h2 {
    max-width: 700px;

    margin:
        10px 0
        50px;

    color: #102b4b;

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    line-height: 1;
}


.about-values__grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}


.about-values__grid article {
    min-height: 280px;

    padding: 34px;

    border:
        1px solid
        #e0e8ef;

    border-radius: 18px;

    background: #f8fafc;
}


.about-values__grid article > span {
    color: #2986db;

    font-size: 12px;

    font-weight: 800;
}


.about-values__grid h3 {
    margin:
        55px 0
        14px;

    color: #153754;

    font-size: 25px;
}


.about-values__grid p {
    color: #667b8d;

    line-height: 1.7;
}


.about-final-cta {
    padding:
        105px 0;

    background: #102b4b;

    color: #fff;
}


.about-final-cta__inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;
}


.about-final-cta h2 {
    max-width: 720px;

    margin:
        12px 0
        16px;

    font-size:
        clamp(
            38px,
            4vw,
            60px
        );

    line-height: 1;
}


.about-final-cta p {
    max-width: 650px;

    color:
        rgba(
            255,
            255,
            255,
            .68
        );

    line-height: 1.7;
}


.about-admin-preview {
    height: 260px;

    overflow: hidden;

    margin:
        5px 0
        18px;

    border-radius: 14px;

    background: #edf2f7;
}


.about-admin-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-values-admin {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 16px;

    margin-top: 20px;
}


.about-value-admin {
    padding: 18px;

    border:
        1px solid
        #e0e8ef;

    border-radius: 12px;
}


.about-value-admin > strong {
    display: block;

    margin-bottom: 15px;

    color: #173754;
}


@media (max-width: 900px) {

    .about-story__grid,
    .about-values__grid,
    .about-values-admin {
        grid-template-columns: 1fr;
    }


    .about-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   ORÇAMENTO
========================================================= */

.quote-page {
    background: #f4f8fb;
}


.quote-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 40;

    background: transparent;
}


.quote-hero {
    min-height: 100vh;

    padding:
        175px 0
        90px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #f8fbfd 0%,
            #eef5fa 55%,
            #e8f0f6 100%
        );
}


.quote-hero__grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 80px;

    align-items: center;
}


.quote-hero__copy h1 {
    max-width: 650px;

    margin:
        14px 0
        25px;

    color: #102b4b;

    font-size:
        clamp(
            48px,
            5.2vw,
            78px
        );

    line-height: .97;

    letter-spacing: -3px;
}


.quote-hero__copy h1 strong {
    color: #2484dc;
}


.quote-hero__copy > p {
    max-width: 580px;

    color: #607589;

    font-size: 18px;

    line-height: 1.75;
}


.quote-feature-list {
    margin-top: 35px;

    display: grid;

    gap: 12px;
}


.quote-feature-list div {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #173754;

    font-weight: 600;
}


.quote-feature-list span {
    color: #2885da;

    font-size: 10px;
    font-weight: 800;
}


.quote-form-shell {
    padding: 30px;

    border:
        1px solid
        rgba(20,60,90,.10);

    border-radius: 22px;

    background:
        rgba(
            255,
            255,
            255,
            .92
        );

    box-shadow:
        0 30px 80px
        rgba(17,45,78,.10);
}


.quote-form {
    display: grid;

    gap: 16px;
}


.quote-form__header span {
    color: #2884d8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.quote-form__header h2 {
    margin:
        7px 0
        15px;

    color: #153754;

    font-size: 28px;
}


.quote-form label {
    display: grid;

    gap: 7px;

    color: #51687c;

    font-size: 11px;

    font-weight: 700;
}


.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;

    padding:
        13px 14px;

    border:
        1px solid
        #d6e1ea;

    border-radius: 10px;

    outline: none;

    background: #fff;

    color: #173754;

    font: inherit;
}


.quote-form textarea {
    resize: vertical;
}


.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #2d8adf;

    box-shadow:
        0 0 0 3px
        rgba(45,138,223,.08);
}


.quote-form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}


.quote-submit {
    margin-top: 5px;

    border: 0;

    cursor: pointer;
}


.quote-success {
    min-height: 500px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;
}


.quote-success > span {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #e5f6eb;

    color: #2c8a50;

    font-size: 24px;

    font-weight: 800;
}


.quote-success h2 {
    margin:
        22px 0
        12px;

    color: #143653;

    font-size: 34px;
}


.quote-success p {
    max-width: 420px;

    margin-bottom: 25px;

    color: #61778a;

    line-height: 1.7;
}


@media (max-width: 950px) {

    .quote-hero__grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 600px) {

    .quote-form-grid {
        grid-template-columns: 1fr;
    }


    .quote-form-shell {
        padding: 20px;
    }

}


/* =========================================================
   CONTATO
========================================================= */

.contact-page {
    background: #f5f8fb;
}


.contact-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 40;

    background: transparent;
}


.contact-hero {
    min-height: 100vh;

    padding:
        180px 0
        100px;

    background:
        linear-gradient(
            115deg,
            #f9fbfd,
            #edf4f9
        );
}


.contact-hero__grid {
    display: grid;

    grid-template-columns:
        .95fr
        1.05fr;

    gap: 80px;

    align-items: start;
}


.contact-copy h1 {
    max-width: 720px;

    margin:
        12px 0
        24px;

    color: #102b4b;

    font-size:
        clamp(
            48px,
            5.5vw,
            80px
        );

    line-height: .98;

    letter-spacing: -3px;
}


.contact-copy > p {
    max-width: 620px;

    color: #60778b;

    font-size: 18px;

    line-height: 1.75;
}


.contact-info-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 35px;
}


.contact-info-grid > * {
    min-height: 110px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 8px;

    border:
        1px solid
        #dce6ee;

    border-radius: 14px;

    background: #fff;

    text-decoration: none;
}


.contact-info-grid span {
    color: #2985da;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .8px;
}


.contact-info-grid strong {
    color: #183754;

    font-size: 14px;

    word-break: break-word;
}


.contact-region {
    margin-top: 35px;

    padding-top: 30px;

    border-top:
        1px solid
        #dbe5ed;
}


.contact-region h2 {
    margin:
        0 0
        10px;

    color: #163653;

    font-size: 25px;
}


.contact-region p {
    color: #667c8f;

    line-height: 1.7;
}


.contact-form-shell {
    padding: 30px;

    border:
        1px solid
        rgba(20,60,90,.1);

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 30px 80px
        rgba(17,45,78,.09);
}


.quote-form__header p {
    margin:
        0 0
        15px;

    color: #73879a;

    font-size: 13px;

    line-height: 1.6;
}


.contact-budget {
    padding:
        105px 0;

    background: #0d2943;

    color: #fff;
}


.contact-budget__inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.contact-budget h2 {
    margin:
        12px 0
        14px;

    max-width: 700px;

    font-size:
        clamp(
            38px,
            4vw,
            60px
        );

    line-height: 1;
}


.contact-budget p {
    max-width: 620px;

    color:
        rgba(
            255,
            255,
            255,
            .68
        );

    line-height: 1.7;
}


@media (max-width: 950px) {

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


    .contact-budget__inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 600px) {

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

}











/* =========================================================
   ABOUT HERO - MESMA LINGUAGEM VISUAL DA HOME
========================================================= */

.about-page {
    background: #ffffff;
}


/* header usa exatamente a mesma lógica da home */
.about-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 120 !important;
    background: transparent !important;
}


/* hero principal */
.about-hero--home-style {
    position: relative;

    height: 760px;

    overflow: hidden;

    background: #ffffff;
}


/* imagem do CMS */
.about-hero__media {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.02);
}


/* mesmo conceito de transição branca da home */
.about-hero__shade {
    position: absolute;

    inset: 0;

    z-index: 5;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 17%,
            rgba(255,255,255,.96) 24%,
            rgba(255,255,255,.82) 32%,
            rgba(255,255,255,.44) 40%,
            rgba(255,255,255,.12) 49%,
            rgba(255,255,255,.03) 57%,
            rgba(255,255,255,0) 63%
        );
}


/* conteúdo */
.about-hero--home-style .about-hero__content {
    position: relative;

    z-index: 20;

    width: var(--wise-shell-width);

    height: 100%;

    margin: 0 auto;

    padding-top: 195px;
}


/* eyebrow */
.about-hero--home-style .section-eyebrow {
    color: #334e6a;

    margin-bottom: 18px;
}


/* titulo */
.about-hero--home-style h1 {
    width: 560px;

    max-width: 46vw;

    margin: 0;

    color: var(--blue-dark);

    font-size:
        clamp(
            56px,
            5vw,
            82px
        );

    line-height: .94;

    letter-spacing: -3.5px;

    font-weight: 300;
}


/* subtitulo */
.about-hero--home-style p {
    width: 430px;

    max-width: 35vw;

    margin-top: 26px;

    color: #657589;

    font-size: 16px;

    line-height: 1.65;
}


/* mesmo limite visual lateral da home */
.about-hero--home-style {
    clip-path:
        inset(
            0
            var(--wise-side-gap)
            0
            0
        );
}


/* responsivo */
@media (max-width: 1320px) {

    .about-hero--home-style .about-hero__content {
        padding-top: 180px;
    }

    .about-hero--home-style h1 {
        width: 520px;
    }

}


@media (max-width: 900px) {

    .about-hero--home-style {
        height: 690px;

        clip-path: none;
    }

    .about-hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.98) 0%,
                rgba(255,255,255,.94) 38%,
                rgba(255,255,255,.68) 58%,
                rgba(255,255,255,.20) 78%,
                rgba(255,255,255,0) 100%
            );
    }

    .about-hero--home-style .about-hero__content {
        width: calc(100% - 40px);

        padding-top: 155px;
    }

    .about-hero--home-style h1 {
        width: 100%;

        max-width: 620px;

        font-size:
            clamp(
                46px,
                10vw,
                68px
            );
    }

    .about-hero--home-style p {
        width: 100%;

        max-width: 520px;
    }

}


@media (max-width: 600px) {

    .about-hero--home-style {
        height: 640px;
    }

    .about-hero__media {
        background-position: 62% center;
    }

    .about-hero--home-style .about-hero__content {
        padding-top: 140px;
    }

    .about-hero--home-style h1 {
        font-size: 46px;
        line-height: .98;
        letter-spacing: -2px;
    }

}










/* =========================================================
   ABOUT HEADER - ESTADO LIMPO
========================================================= */

.about-header {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;

    z-index: 120 !important;

    background: transparent !important;

    box-shadow: none !important;

    filter: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    overflow: visible !important;
}


.about-header::before,
.about-header::after {
    content: none !important;
    display: none !important;
}


.about-header .header__container {
    background: transparent !important;

    box-shadow: none !important;

    filter: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


.about-header .brand,
.about-header .brand::before,
.about-header .brand::after,
.about-header .brand__logo {
    background: transparent !important;

    box-shadow: none !important;

    filter: none !important;

    text-shadow: none !important;
}


.about-header .brand::before,
.about-header .brand::after {
    content: none !important;
    display: none !important;
}


/* hero novo sem efeitos superiores extras */
.about-hero--home-style::before,
.about-hero--home-style::after {
    content: none !important;
    display: none !important;
}


/*
Mantém intencionalmente o .about-hero__shade,
pois ele é o fade branco lateral inspirado na Home.
*/

