/* Motion Safe/Reduce */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Card CTA WhatsApp Styles (Seção 9) */
.cta-whatsapp-card {
    background: #0150AB; /* brand-primary */
    border-radius: 0.5rem; /* Menos arredondado */
    padding: 2.5rem;
    text-align: center;
    border-top: 6px solid #0F6DCA; /* brand-secondary */
    margin: 2rem 0;
}
.cta-whatsapp-card h3 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.cta-whatsapp-card p {
    color: #F2F2F2;
    margin-bottom: 1.5rem;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0F6DCA; /* brand-secondary */
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.375rem; /* rounded-md */
    text-decoration: none;
    transition: background-color 0.2s;
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
    background-color: white;
    color: #0150AB;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.4);
}

/* Botão Flutuante */
.btn-floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: pulse 2s infinite;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}
.btn-floating-whatsapp:hover, .btn-floating-whatsapp:focus-visible {
    background-color: #128C7E;
    transform: scale(1.05);
    outline: none;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   HOME — identidade e componentes exclusivos da página inicial
   ============================================================ */
.home-page {
    --home-blue: #0f6dca;
    --home-blue-dark: #0150ab;
    --home-ink: #07111f;
    --home-line: rgba(15, 109, 202, 0.18);
}

.home-page ::selection {
    background: #0f6dca;
    color: #fff;
}

.home-hero {
    min-height: 690px;
    isolation: isolate;
}

.home-hero__media {
    left: 43%;
    opacity: .66;
    z-index: -3;
}

.home-hero__media img {
    object-position: 48% 58%;
    filter: saturate(.72) contrast(1.08);
}

.home-hero__overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, #07111f 0%, rgba(7, 17, 31, .98) 37%, rgba(7, 17, 31, .76) 62%, rgba(7, 17, 31, .38) 100%),
        linear-gradient(0deg, rgba(7, 17, 31, .58), transparent 55%);
}

.home-hero__glow {
    z-index: -1;
    background: radial-gradient(circle at 28% 45%, rgba(15, 109, 202, .18), transparent 34%);
}

.home-eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--home-blue-dark);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-eyebrow span {
    width: 2rem;
    height: 2px;
    background: currentColor;
}

.home-eyebrow--light {
    color: #4ca7ff;
}

.home-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: .9rem 1.4rem;
    border: 1px solid transparent;
    border-radius: .45rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn:focus-visible {
    outline: 3px solid rgba(76, 167, 255, .6);
    outline-offset: 3px;
}

.home-btn--primary {
    background: var(--home-blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 109, 202, .28);
}

.home-btn--primary:hover {
    background: #1682e8;
    box-shadow: 0 16px 34px rgba(15, 109, 202, .38);
}

.home-btn--secondary {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .04);
    color: #fff;
}

.home-btn--secondary:hover {
    border-color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .08);
}

.home-btn--white {
    background: #fff;
    color: var(--home-blue-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

.home-btn--white:hover {
    background: #eff7ff;
}

.home-btn--outline-white {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.home-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.home-check {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.home-check::before {
    content: "✓";
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(76, 167, 255, .15);
    color: #62b1ff;
    font-size: .75rem;
    font-weight: 700;
}

.home-quote-card {
    width: min(100%, 410px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-top: 4px solid var(--home-blue);
    border-radius: .65rem;
    background: rgba(8, 19, 35, .84);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
    backdrop-filter: blur(14px);
}

.home-quote-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.home-quote-card li > span {
    color: #4ca7ff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.home-quote-card strong,
.home-quote-card small {
    display: block;
}

.home-quote-card strong {
    color: #fff;
    font-size: 1rem;
}

.home-quote-card small {
    margin-top: .2rem;
    color: #94a3b8;
    font-size: .86rem;
    line-height: 1.45;
}

.home-proof__item {
    display: flex;
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.home-proof__item strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    line-height: 1.1;
}

.home-proof__item span {
    margin-top: .4rem;
    color: rgba(255, 255, 255, .68);
    font-size: .86rem;
}

.home-service-feature {
    position: relative;
    min-height: 610px;
    border-radius: .7rem;
    background: #0b1729;
    box-shadow: 0 26px 55px rgba(15, 23, 42, .16);
}

.home-service-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(1, 31, 66, .98) 0%, rgba(1, 49, 103, .78) 42%, rgba(1, 49, 103, .06) 76%);
}

.home-service-feature img {
    position: absolute;
    inset: 0;
    object-position: center 65%;
    transition: transform .55s ease;
}

.home-service-feature:hover img {
    transform: scale(1.025);
}

.home-service-feature__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 2rem;
    color: #fff;
}

.home-service-card {
    display: grid;
    min-height: 292px;
    grid-template-columns: minmax(0, 1fr) 42%;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: .7rem;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.home-service-card:hover {
    transform: translateY(-3px);
    border-color: var(--home-line);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .1);
}

.home-service-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem;
}

.home-service-card__number {
    color: var(--home-blue);
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.home-service-card h3 {
    margin-top: .75rem;
    color: #0f172a;
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.15;
}

.home-service-card p:not(.home-service-card__number) {
    margin-top: .75rem;
    color: #64748b;
    font-size: .92rem;
    line-height: 1.6;
}

.home-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-service-card:nth-child(1) img,
.home-service-card img[src*="cacamba-3"] {
    object-position: center 70%;
}

.home-service-card:nth-child(2) img,
.home-service-card img[src*="cacamba-4"] {
    object-position: center 40%;
}

.home-process {
    position: relative;
}

.home-process::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 84% 18%, rgba(15, 109, 202, .14), transparent 28%);
}

.home-process__grid {
    position: relative;
    background: rgba(255, 255, 255, .1);
    border-radius: .65rem;
}

.home-process__grid li {
    min-height: 275px;
    padding: 2rem;
    background: #07111f;
    transition: background-color .2s ease;
}

.home-process__grid li:hover {
    background: #0a192d;
}

.home-process__grid span {
    display: block;
    color: rgba(76, 167, 255, .48);
    font-family: 'Oswald', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1;
}

.home-process__grid h3 {
    margin-top: 2.4rem;
    font-size: 1.12rem;
    font-weight: 700;
}

.home-process__grid p {
    margin-top: .75rem;
    color: #94a3b8;
    font-size: .92rem;
    line-height: 1.65;
}

.home-photo-wrap {
    position: relative;
    padding: 0 1.5rem 1.5rem 0;
}

.home-photo-wrap::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 76%;
    border-radius: .7rem;
    background: var(--home-blue);
}

.home-photo-wrap__main {
    position: relative;
    width: 100%;
    min-height: 590px;
    max-height: 690px;
    border-radius: .7rem;
    object-fit: cover;
    object-position: center 70%;
    box-shadow: 0 24px 50px rgba(15, 23, 42, .16);
}

.home-photo-wrap__stamp {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    min-width: 205px;
    align-items: center;
    gap: .8rem;
    padding: 1.25rem 1.4rem;
    border-radius: .45rem 0 .45rem 0;
    background: #07111f;
    color: #fff;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
}

.home-photo-wrap__stamp strong {
    color: #4ca7ff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    line-height: 1;
}

.home-photo-wrap__stamp span {
    color: #cbd5e1;
    font-size: .82rem;
    line-height: 1.35;
}

.home-benefit {
    display: flex;
    gap: .8rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: .55rem;
    background: rgba(255, 255, 255, .8);
}

.home-benefit > span {
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 109, 202, .12);
    color: var(--home-blue-dark);
    font-size: .78rem;
    font-weight: 700;
}

.home-benefit strong,
.home-benefit small {
    display: block;
}

.home-benefit strong {
    color: #0f172a;
    font-size: .94rem;
}

.home-benefit small {
    margin-top: .2rem;
    color: #64748b;
    font-size: .8rem;
    line-height: 1.4;
}

.home-final-cta__mark {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .045);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(13rem, 28vw, 26rem);
    font-weight: 700;
    line-height: .75;
    pointer-events: none;
    user-select: none;
}

@media (min-width: 640px) {
    .home-proof__item {
        border-right: 1px solid rgba(255, 255, 255, .14);
    }

    .home-proof__item:nth-child(even) {
        border-right: 0;
    }

    .home-service-feature__content {
        padding: 2.6rem;
    }
}

@media (min-width: 1024px) {
    .home-proof__item {
        padding-left: 2rem;
        border-bottom: 0;
    }

    .home-proof__item:nth-child(even) {
        border-right: 1px solid rgba(255, 255, 255, .14);
    }

    .home-proof__item:last-child {
        border-right: 0;
    }
}

@media (max-width: 1023px) {
    .home-hero__media {
        left: 0;
        opacity: .38;
    }

    .home-hero__overlay {
        background: linear-gradient(90deg, rgba(7, 17, 31, .98), rgba(7, 17, 31, .8));
    }

    .home-quote-card {
        margin-right: auto;
    }

    .home-service-card {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto 240px;
    }
}

@media (max-width: 639px) {
    .home-hero {
        min-height: auto;
    }

    .home-btn {
        width: 100%;
    }

    .home-quote-card {
        padding: 1.5rem;
    }

    .home-proof__item {
        min-height: 100px;
        padding-inline: 1rem;
    }

    .home-service-feature {
        min-height: 540px;
    }

    .home-service-card {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto 240px;
    }

    .home-process__grid li {
        min-height: auto;
    }

    .home-process__grid h3 {
        margin-top: 1.6rem;
    }

    .home-photo-wrap {
        padding: 0 1rem 1rem 0;
    }

    .home-photo-wrap__main {
        min-height: 440px;
        object-position: center 70%;
    }

    .home-photo-wrap__stamp {
        min-width: 190px;
        padding: 1rem;
    }

    .btn-floating-whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 54px;
        height: 54px;
    }
}

/* ============================================================
   NAVEGAÇÃO GLOBAL
   ============================================================ */
.site-header {
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
}

.site-header__bar {
    background: #07111f;
    color: #aebdce;
    font-size: .75rem;
}

.site-header__bar p,
.site-header__bar span,
.site-header__bar a {
    line-height: 1;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #fff;
    font-weight: 700;
    transition: color .2s ease;
}

.site-header__phone:hover {
    color: #4ca7ff;
}

.site-header__main {
    border-bottom: 1px solid rgba(148, 163, 184, .2);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
}

.site-header__brand {
    display: inline-flex;
    height: 62px;
    flex: 0 0 auto;
    align-items: center;
}

.site-header__brand img {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.site-nav {
    gap: .3rem;
}

.site-nav__link {
    position: relative;
    padding: .75rem .9rem;
    border-radius: .45rem;
    color: #526073;
    font-size: .93rem;
    font-weight: 600;
    line-height: 1;
    transition: color .2s ease, background-color .2s ease;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    right: .9rem;
    bottom: .35rem;
    left: .9rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 999px;
    background: #0f6dca;
    transition: transform .2s ease;
}

.site-nav__link:hover {
    background: #f4f8fc;
    color: #0150ab;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

.site-nav__link.is-active {
    color: #0150ab;
}

.site-header__call {
    align-items: center;
    gap: .65rem;
    padding-right: .8rem;
    color: #0f172a;
}

.site-header__call-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #eef6ff;
    color: #0f6dca;
}

.site-header__call small,
.site-header__call strong {
    display: block;
}

.site-header__call small {
    color: #7b8797;
    font-size: .67rem;
    line-height: 1;
}

.site-header__call strong {
    margin-top: .28rem;
    font-size: .83rem;
    line-height: 1;
}

.site-header__cta,
.site-footer__primary-button,
.site-footer__secondary-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .75rem 1.15rem;
    border: 1px solid transparent;
    border-radius: .45rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header__cta {
    background: #0f6dca;
    color: #fff;
    box-shadow: 0 9px 22px rgba(15, 109, 202, .22);
}

.site-header__cta:hover,
.site-footer__primary-button:hover,
.site-footer__secondary-button:hover {
    transform: translateY(-2px);
}

.site-header__cta:hover {
    background: #0150ab;
    box-shadow: 0 12px 27px rgba(15, 109, 202, .3);
}

.site-header__cta:focus-visible,
.site-header__menu-button:focus-visible,
.site-footer a:focus-visible {
    outline: 3px solid rgba(76, 167, 255, .62);
    outline-offset: 3px;
}

.site-header__menu-button {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #dbe3ec;
    border-radius: .5rem;
    background: #fff;
    color: #0f172a;
}

.site-header__menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.site-header__menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header__menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-menu {
    border-bottom: 1px solid #dbe3ec;
    background: #fff;
}

.site-mobile-menu__link {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: .7rem .8rem;
    border-bottom: 1px solid #eef2f7;
    color: #526073;
    font-weight: 600;
}

.site-mobile-menu__link.is-active {
    padding-left: .65rem;
    border-left: 3px solid #0f6dca;
    color: #0150ab;
}

.site-mobile-menu__actions {
    display: grid;
    gap: .7rem;
    padding-top: 1rem;
}

.site-mobile-menu__phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: .45rem;
    color: #0f172a;
    font-weight: 700;
}

/* ============================================================
   RODAPÉ GLOBAL
   ============================================================ */
.site-footer {
    color: #c4cfdb;
}

.site-footer__cta-band {
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: #0150ab;
    color: #fff;
}

.home-page .site-footer__cta-band {
    display: none;
}

.site-footer__eyebrow {
    color: #9fd1ff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer__cta-band h2 {
    margin-top: .5rem;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 700;
    line-height: 1.12;
}

.site-footer__cta-band p:not(.site-footer__eyebrow) {
    max-width: 42rem;
    margin-top: .65rem;
    color: #d8ebff;
    font-size: .95rem;
    line-height: 1.55;
}

.site-footer__primary-button {
    background: #fff;
    color: #0150ab;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.site-footer__primary-button:hover {
    background: #eef7ff;
}

.site-footer__secondary-button {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.site-footer__secondary-button:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.site-footer__main {
    background: #07111f;
}

.site-footer__brand {
    display: inline-flex;
    padding: .55rem .75rem;
    border-radius: .55rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.site-footer__brand img {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.site-footer__description {
    max-width: 25rem;
    margin-top: 1.3rem;
    color: #8fa0b3;
    font-size: .94rem;
    line-height: 1.7;
}

.site-footer__service-area {
    display: flex;
    max-width: 25rem;
    align-items: flex-start;
    gap: .75rem;
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(148, 163, 184, .14);
    color: #4ca7ff;
}

.site-footer__service-area svg {
    flex: 0 0 auto;
    margin-top: .1rem;
}

.site-footer__service-area strong,
.site-footer__service-area span {
    display: block;
}

.site-footer__service-area strong {
    color: #dbe5ef;
    font-size: .83rem;
}

.site-footer__service-area span {
    margin-top: .2rem;
    color: #7f91a5;
    font-size: .8rem;
}

.site-footer__title {
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer__links {
    display: grid;
    gap: .75rem;
}

.site-footer__links a {
    display: inline-flex;
    color: #8fa0b3;
    font-size: .9rem;
    transition: color .2s ease, transform .2s ease;
}

.site-footer__links a:hover {
    transform: translateX(3px);
    color: #fff;
}

.site-footer__contact-list {
    display: grid;
    gap: 1rem;
}

.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.site-footer__contact-list li > span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(76, 167, 255, .2);
    border-radius: .45rem;
    background: rgba(15, 109, 202, .1);
    color: #4ca7ff;
}

.site-footer__contact-list small,
.site-footer__contact-list a,
.site-footer__contact-list strong {
    display: block;
}

.site-footer__contact-list small {
    color: #66788c;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.site-footer__contact-list a,
.site-footer__contact-list strong {
    margin-top: .18rem;
    color: #dbe5ef;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.site-footer__contact-list a:hover {
    color: #4ca7ff;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, .14);
    color: #66788c;
    font-size: .78rem;
}

.site-footer__bottom a {
    color: #9ab1c8;
    font-weight: 600;
}

.site-footer__bottom a:hover {
    color: #fff;
}

@media (max-width: 1023px) {
    .site-header__menu-button {
        display: flex;
    }

    .site-header__brand {
        height: 56px;
    }

    .site-header__brand img {
        height: 52px;
    }
}

@media (max-width: 639px) {
    .site-header__main > div {
        height: 70px;
    }

    .site-header__brand,
    .site-header__brand img {
        height: 50px;
    }

    .site-footer__cta-band {
        text-align: left;
    }

    .site-footer__primary-button,
    .site-footer__secondary-button {
        width: 100%;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   SOBRE NÓS
   ============================================================ */
.about-page {
    --about-blue: #0f6dca;
    --about-blue-dark: #0150ab;
    --about-ink: #07111f;
}

.about-hero {
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0 50% 0 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 46%, rgba(15, 109, 202, .2), transparent 38%);
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #64748b;
    font-size: .78rem;
    font-weight: 600;
}

.about-breadcrumb a {
    color: #9aabbd;
    transition: color .2s ease;
}

.about-breadcrumb a:hover {
    color: #fff;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #4ca7ff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-eyebrow > span {
    width: 2rem;
    height: 2px;
    background: currentColor;
}

.about-eyebrow--dark {
    color: var(--about-blue-dark);
}

.about-hero h1 > span {
    color: #4ca7ff;
}

.about-hero__visual {
    isolation: isolate;
}

.about-hero__visual img {
    object-position: center 40%;
    filter: saturate(.78) contrast(1.06);
}

.about-hero__shade {
    background:
        linear-gradient(90deg, #07111f 0%, rgba(7, 17, 31, .28) 36%, rgba(7, 17, 31, .08) 100%),
        linear-gradient(0deg, rgba(7, 17, 31, .52), transparent 55%);
}

.about-hero__seal {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #0f6dca;
    color: #fff;
    box-shadow: -16px -16px 45px rgba(7, 17, 31, .24);
}

.about-hero__seal strong {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    line-height: 1;
}

.about-hero__seal span {
    color: #d9ecff;
    font-size: .85rem;
    line-height: 1.4;
}

.about-proof > div > div {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 1.45rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.about-proof strong,
.about-proof span {
    display: block;
}

.about-proof strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    line-height: 1.15;
}

.about-proof span {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .66);
    font-size: .86rem;
}

.about-story__photo {
    position: relative;
    padding: 0 1.35rem 1.35rem 0;
}

.about-story__photo::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 78%;
    border-radius: .7rem;
    background: #0f6dca;
}

.about-story__photo > img {
    position: relative;
    width: 100%;
    min-height: 610px;
    max-height: 700px;
    border-radius: .7rem;
    object-fit: cover;
    object-position: center 70%;
    box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
}

.about-story__label {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    min-width: 220px;
    align-items: center;
    gap: .9rem;
    padding: 1.2rem 1.4rem;
    border-radius: .5rem 0 .5rem 0;
    background: #07111f;
    color: #fff;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
}

.about-story__label span {
    color: #4ca7ff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
}

.about-story__label p {
    color: #cbd5e1;
    font-size: .82rem;
    line-height: 1.4;
}

.about-story__copy {
    display: grid;
    gap: 1rem;
    color: #526073;
    font-size: 1.03rem;
    line-height: 1.78;
}

.about-story__quote {
    position: relative;
    margin-top: 2rem;
    padding: 1.4rem 1.5rem 1.4rem 1.75rem;
    border-left: 3px solid #0f6dca;
    border-radius: 0 .55rem .55rem 0;
    background: #f2f7fc;
    color: #1e3955;
    font-family: 'Oswald', sans-serif;
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.55;
}

.about-values {
    border-top: 1px solid #e5ebf2;
    border-bottom: 1px solid #e5ebf2;
}

.about-value-card {
    position: relative;
    min-height: 350px;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid #dfe7f0;
    border-radius: .7rem;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 109, 202, .34);
    box-shadow: 0 24px 50px rgba(15, 23, 42, .1);
}

.about-value-card > span {
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    color: rgba(1, 80, 171, .08);
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.about-value-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: .6rem;
    background: #eef6ff;
    color: #0f6dca;
}

.about-value-card h3 {
    margin-top: 4.4rem;
    color: #0f172a;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.about-value-card p {
    margin-top: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.about-value-card--featured {
    border-color: #0150ab;
    background: #0150ab;
}

.about-value-card--featured > span {
    color: rgba(255, 255, 255, .08);
}

.about-value-card--featured .about-value-card__icon {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.about-value-card--featured h3 {
    color: #fff;
}

.about-value-card--featured p {
    color: #d6eaff;
}

.about-commitment__image img {
    object-position: 55% 56%;
    filter: saturate(.7) contrast(1.05);
}

.about-commitment__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.about-commitment__list > div {
    display: flex;
    min-height: 150px;
    gap: 1rem;
    padding: 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.about-commitment__list > div > span {
    color: #4ca7ff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.about-commitment__list strong,
.about-commitment__list small {
    display: block;
}

.about-commitment__list strong {
    color: #fff;
    font-size: .98rem;
}

.about-commitment__list small {
    margin-top: .45rem;
    color: #8798aa;
    font-size: .84rem;
    line-height: 1.55;
}

@media (min-width: 640px) {
    .about-proof > div > div {
        border-right: 1px solid rgba(255, 255, 255, .15);
        border-bottom: 0;
    }

    .about-proof > div > div:last-child {
        border-right: 0;
    }
}

@media (max-width: 1023px) {
    .about-hero__shade {
        background: linear-gradient(0deg, rgba(7, 17, 31, .78), rgba(7, 17, 31, .05) 70%);
    }

    .about-commitment__image {
        order: 2;
    }
}

@media (max-width: 639px) {
    .about-hero__visual {
        min-height: 430px;
    }

    .about-hero__seal {
        right: auto;
        left: 0;
        padding: 1.15rem 1.3rem;
    }

    .about-hero__seal strong {
        font-size: 2.7rem;
    }

    .about-proof > div > div {
        min-height: 96px;
        padding-inline: 1rem;
    }

    .about-story__photo {
        padding: 0 1rem 1rem 0;
    }

    .about-story__photo > img {
        min-height: 440px;
        object-position: center 70%;
    }

    .about-value-card {
        min-height: 310px;
    }

    .about-value-card h3 {
        margin-top: 3.5rem;
    }

    .about-commitment__list {
        grid-template-columns: 1fr;
    }

    .about-commitment__list > div {
        min-height: auto;
    }
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services-page {
    --services-blue: #0f6dca;
    --services-blue-dark: #0150ab;
    --services-ink: #07111f;
}

.services-hero {
    position: relative;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0 50% 0 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 48%, rgba(15, 109, 202, .2), transparent 40%);
}

.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #64748b;
    font-size: .78rem;
    font-weight: 600;
}

.services-breadcrumb a {
    color: #9aabbd;
    transition: color .2s ease;
}

.services-breadcrumb a:hover {
    color: #fff;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #4ca7ff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.services-eyebrow > span {
    width: 2rem;
    height: 2px;
    background: currentColor;
}

.services-eyebrow--dark {
    color: var(--services-blue-dark);
}

.services-hero h1 > span {
    color: #4ca7ff;
}

.services-hero__visual {
    isolation: isolate;
}

.services-hero__visual img {
    object-position: center 65%;
    filter: saturate(.78) contrast(1.06);
}

.services-hero__shade {
    background:
        linear-gradient(90deg, #07111f 0%, rgba(7, 17, 31, .22) 40%, rgba(7, 17, 31, .05) 100%),
        linear-gradient(0deg, rgba(7, 17, 31, .62), transparent 58%);
}

.services-hero__note {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    min-width: min(100%, 360px);
    padding: 1.4rem 1.7rem;
    background: #0f6dca;
    box-shadow: -16px -16px 45px rgba(7, 17, 31, .24);
}

.services-hero__note span,
.services-hero__note strong {
    display: block;
}

.services-hero__note span {
    color: #b8ddff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.services-hero__note strong {
    margin-top: .35rem;
    color: #fff;
    font-size: 1rem;
}

.services-proof > div > div {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 1.45rem 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.services-proof strong,
.services-proof span {
    display: block;
}

.services-proof strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    line-height: 1.15;
}

.services-proof span {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .66);
    font-size: .83rem;
}

.services-offer-card {
    position: relative;
    min-height: 475px;
    padding: 2rem;
    border: 1px solid #dfe7f0;
    border-radius: .7rem;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.services-offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 109, 202, .32);
    box-shadow: 0 25px 52px rgba(15, 23, 42, .1);
}

.services-offer-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.services-offer-card__top > span {
    color: rgba(1, 80, 171, .13);
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.services-offer-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: .6rem;
    background: #eef6ff;
    color: #0f6dca;
}

.services-offer-card h3 {
    margin-top: 3.4rem;
    color: #0f172a;
    font-family: 'Oswald', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.services-offer-card > p {
    margin-top: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.services-offer-card ul {
    display: grid;
    gap: .65rem;
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid #e5ebf2;
}

.services-offer-card li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #526073;
    font-size: .87rem;
    line-height: 1.45;
}

.services-offer-card li::before {
    content: "✓";
    color: #0f6dca;
    font-weight: 700;
}

.services-offer-card--featured {
    border-color: #0150ab;
    background: #0150ab;
    box-shadow: 0 24px 52px rgba(1, 80, 171, .2);
}

.services-offer-card--featured:hover {
    border-color: #0f6dca;
    box-shadow: 0 28px 60px rgba(1, 80, 171, .27);
}

.services-offer-card--featured .services-offer-card__top > span {
    color: rgba(255, 255, 255, .12);
}

.services-offer-card--featured .services-offer-card__icon {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.services-offer-card--featured h3 {
    color: #fff;
}

.services-offer-card--featured > p,
.services-offer-card--featured li {
    color: #d6eaff;
}

.services-offer-card--featured ul {
    border-color: rgba(255, 255, 255, .16);
}

.services-offer-card--featured li::before {
    color: #8dcbff;
}

.services-support {
    display: grid;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    border: 1px solid #dfe7f0;
    border-radius: .7rem;
    background: #f7fafc;
}

.services-support__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: .6rem;
    background: #e5f2ff;
    color: #0150ab;
}

.services-support h3 {
    color: #0f172a;
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.services-support p {
    margin-top: .25rem;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.55;
}

.services-support > a {
    color: #0150ab;
    font-size: .9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s ease;
}

.services-support > a:hover {
    color: #0f6dca;
}

.services-use-cases {
    border-top: 1px solid #e5ebf2;
    border-bottom: 1px solid #e5ebf2;
}

.services-use-cases__visual {
    position: relative;
    min-height: 650px;
    padding: 0 4.5rem 4rem 0;
}

.services-use-cases__visual > img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    border-radius: .7rem;
    object-fit: cover;
    object-position: center 70%;
    box-shadow: 0 24px 55px rgba(15, 23, 42, .15);
}

.services-use-cases__mini {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 47%;
    height: 285px;
    padding: .55rem;
    border-radius: .7rem;
    background: #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .18);
}

.services-use-cases__mini img {
    width: 100%;
    height: 100%;
    border-radius: .45rem;
    object-fit: cover;
    object-position: center 40%;
}

.services-use-cases__list {
    display: grid;
    gap: 0;
    border-top: 1px solid #dfe7f0;
}

.services-use-cases__list > div {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #dfe7f0;
}

.services-use-cases__list > div > span {
    color: rgba(1, 80, 171, .28);
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.services-use-cases__list strong,
.services-use-cases__list small {
    display: block;
}

.services-use-cases__list strong {
    color: #0f172a;
    font-size: .98rem;
}

.services-use-cases__list small {
    margin-top: .35rem;
    color: #64748b;
    font-size: .84rem;
    line-height: 1.5;
}

.services-process {
    position: relative;
}

.services-process::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 86% 20%, rgba(15, 109, 202, .16), transparent 30%);
}

.services-process > div {
    position: relative;
}

.services-process__grid {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: .7rem;
    background: rgba(255, 255, 255, .1);
}

.services-process__grid li {
    min-height: 275px;
    padding: 2rem;
    background: #07111f;
    transition: background-color .2s ease;
}

.services-process__grid li:hover {
    background: #0a192d;
}

.services-process__grid span {
    display: block;
    color: rgba(76, 167, 255, .48);
    font-family: 'Oswald', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1;
}

.services-process__grid h3 {
    margin-top: 2.35rem;
    font-size: 1.08rem;
    font-weight: 700;
}

.services-process__grid p {
    margin-top: .7rem;
    color: #94a3b8;
    font-size: .9rem;
    line-height: 1.65;
}

@media (min-width: 640px) {
    .services-proof > div > div {
        border-right: 1px solid rgba(255, 255, 255, .15);
    }

    .services-proof > div > div:nth-child(even) {
        border-right: 0;
    }
}

@media (min-width: 768px) {
    .services-support {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 1.5rem 1.75rem;
    }
}

@media (min-width: 1024px) {
    .services-proof > div > div {
        border-bottom: 0;
    }

    .services-proof > div > div:nth-child(even) {
        border-right: 1px solid rgba(255, 255, 255, .15);
    }

    .services-proof > div > div:last-child {
        border-right: 0;
    }
}

@media (max-width: 1023px) {
    .services-hero__shade {
        background: linear-gradient(0deg, rgba(7, 17, 31, .78), rgba(7, 17, 31, .05) 70%);
    }
}

@media (max-width: 767px) {
    .services-support > a {
        justify-self: start;
    }
}

@media (max-width: 639px) {
    .services-hero__visual {
        min-height: 450px;
    }

    .services-hero__note {
        right: auto;
        left: 0;
    }

    .services-proof > div > div {
        min-height: 96px;
        padding-inline: 1rem;
    }

    .services-offer-card {
        min-height: auto;
    }

    .services-offer-card h3 {
        margin-top: 2.6rem;
    }

    .services-use-cases__visual {
        min-height: 560px;
        padding: 0 2.2rem 2.5rem 0;
    }

    .services-use-cases__visual > img {
        min-height: 440px;
        object-position: center 70%;
    }

    .services-use-cases__mini {
        width: 52%;
        height: 220px;
    }

    .services-process__grid li {
        min-height: auto;
    }

    .services-process__grid h3 {
        margin-top: 1.6rem;
    }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact-page {
    --contact-blue: #0f6dca;
    --contact-blue-dark: #0150ab;
    --contact-ink: #07111f;
}

.contact-page .site-footer__cta-band {
    display: none;
}

.contact-hero {
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0 50% 0 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 48%, rgba(15, 109, 202, .2), transparent 40%);
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #64748b;
    font-size: .78rem;
    font-weight: 600;
}

.contact-breadcrumb a {
    color: #9aabbd;
    transition: color .2s ease;
}

.contact-breadcrumb a:hover {
    color: #fff;
}

.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #4ca7ff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-eyebrow > span {
    width: 2rem;
    height: 2px;
    background: currentColor;
}

.contact-eyebrow--dark {
    color: var(--contact-blue-dark);
}

.contact-hero h1 > span {
    color: #4ca7ff;
}

.contact-hero__visual {
    isolation: isolate;
}

.contact-hero__visual img {
    object-position: center 55%;
    filter: saturate(.72) contrast(1.08);
}

.contact-hero__shade {
    background:
        linear-gradient(90deg, #07111f 0%, rgba(7, 17, 31, .2) 42%, rgba(7, 17, 31, .04) 100%),
        linear-gradient(0deg, rgba(7, 17, 31, .66), transparent 60%);
}

.contact-hero__status {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    min-width: min(100%, 390px);
    align-items: center;
    gap: .85rem;
    padding: 1.4rem 1.7rem;
    background: #0f6dca;
    box-shadow: -16px -16px 45px rgba(7, 17, 31, .24);
}

.contact-hero__status-dot {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border: 3px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .12);
}

.contact-hero__status small,
.contact-hero__status strong {
    display: block;
}

.contact-hero__status small {
    color: #b8ddff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-hero__status strong {
    margin-top: .3rem;
    color: #fff;
    font-size: .9rem;
}

.contact-strip > div > a,
.contact-strip > div > div {
    display: flex;
    min-width: 0;
    min-height: 108px;
    flex-direction: column;
    justify-content: center;
    padding: 1.4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.contact-strip > div > a {
    transition: background-color .2s ease;
}

.contact-strip > div > a:hover {
    background: rgba(255, 255, 255, .07);
}

.contact-strip span,
.contact-strip strong {
    display: block;
}

.contact-strip span {
    color: #b8ddff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.contact-strip strong {
    margin-top: .35rem;
    overflow-wrap: anywhere;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    line-height: 1.2;
}

.contact-channels {
    display: grid;
    gap: .85rem;
}

.contact-channel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    min-height: 105px;
    padding: 1.1rem 1.2rem;
    border: 1px solid #dfe7f0;
    border-radius: .65rem;
    background: #fff;
    color: #0f172a;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-channel:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 109, 202, .34);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .09);
}

.contact-channel__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: .6rem;
    background: #eef6ff;
    color: #0f6dca;
}

.contact-channel small,
.contact-channel strong,
.contact-channel em {
    display: block;
}

.contact-channel small {
    color: #8090a2;
    font-size: .68rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.contact-channel strong {
    margin-top: .25rem;
    overflow-wrap: anywhere;
    font-size: 1rem;
}

.contact-channel em {
    margin-top: .35rem;
    color: #0f6dca;
    font-size: .78rem;
    font-style: normal;
    font-weight: 700;
}

.contact-channel--primary {
    border-color: #0150ab;
    background: #0150ab;
    color: #fff;
    box-shadow: 0 18px 40px rgba(1, 80, 171, .18);
}

.contact-channel--primary:hover {
    border-color: #0f6dca;
    box-shadow: 0 21px 45px rgba(1, 80, 171, .26);
}

.contact-channel--primary .contact-channel__icon {
    background: rgba(255, 255, 255, .13);
    color: #fff;
}

.contact-channel--primary small {
    color: #a9d5ff;
}

.contact-channel--primary em {
    color: #d7ebff;
}

.contact-brief {
    align-self: start;
    padding: 2rem;
    border-top: 4px solid #0f6dca;
    border-radius: .7rem;
    background: #07111f;
    color: #fff;
    box-shadow: 0 25px 55px rgba(15, 23, 42, .2);
}

.contact-brief__eyebrow {
    color: #4ca7ff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-brief > h2 {
    margin-top: .65rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-brief__intro {
    margin-top: .8rem;
    color: #94a3b8;
    line-height: 1.65;
}

.contact-brief__steps {
    display: grid;
    gap: 0;
    margin-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.contact-brief__steps li {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.contact-brief__steps li > span {
    color: #4ca7ff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-brief__steps strong,
.contact-brief__steps small {
    display: block;
}

.contact-brief__steps strong {
    color: #fff;
    font-size: .92rem;
}

.contact-brief__steps small {
    margin-top: .3rem;
    color: #8293a5;
    font-size: .81rem;
    line-height: 1.5;
}

.contact-brief__button {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 1.6rem;
    padding: .85rem 1rem;
    border-radius: .45rem;
    background: #0f6dca;
    color: #fff;
    font-weight: 700;
    text-align: center;
    transition: transform .2s ease, background-color .2s ease;
}

.contact-brief__button:hover {
    transform: translateY(-2px);
    background: #1682e8;
}

.contact-local {
    border-top: 1px solid #e5ebf2;
}

.contact-local__image {
    position: relative;
    padding: 0 1.5rem 1.5rem 0;
}

.contact-local__image::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 76%;
    border-radius: .7rem;
    background: #0f6dca;
}

.contact-local__image > img {
    position: relative;
    width: 100%;
    min-height: 560px;
    max-height: 640px;
    border-radius: .7rem;
    object-fit: cover;
    object-position: center 70%;
    box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
}

.contact-local__image > div {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    min-width: 235px;
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    border-radius: .5rem 0 .5rem 0;
    background: #07111f;
    color: #fff;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
}

.contact-local__image strong {
    color: #4ca7ff;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.contact-local__image span {
    color: #cbd5e1;
    font-size: .8rem;
}

.contact-local__details {
    display: grid;
    border-top: 1px solid #dfe7f0;
}

.contact-local__details > div {
    display: grid;
    gap: .3rem;
    padding: 1rem 0;
    border-bottom: 1px solid #dfe7f0;
}

.contact-local__details dt {
    color: #7b8a9a;
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-local__details dd {
    color: #0f172a;
    font-weight: 600;
}

@media (min-width: 640px) {
    .contact-strip > div > a,
    .contact-strip > div > div {
        border-right: 1px solid rgba(255, 255, 255, .15);
        border-bottom: 0;
    }

    .contact-strip > div > *:last-child {
        border-right: 0;
    }
}

@media (max-width: 1023px) {
    .contact-hero__shade {
        background: linear-gradient(0deg, rgba(7, 17, 31, .8), rgba(7, 17, 31, .05) 72%);
    }
}

@media (max-width: 639px) {
    .contact-hero__visual {
        min-height: 430px;
    }

    .contact-hero__status {
        right: auto;
        left: 0;
        padding: 1.15rem 1.3rem;
    }

    .contact-strip > div > a,
    .contact-strip > div > div {
        min-height: 92px;
        padding-inline: 1rem;
    }

    .contact-brief {
        padding: 1.5rem;
    }

    .contact-local__image {
        padding: 0 1rem 1rem 0;
    }

    .contact-local__image > img {
        min-height: 440px;
        object-position: center 70%;
    }

    .contact-local__image > div {
        min-width: 210px;
        padding: 1rem 1.2rem;
    }
}

/* ============================================================
   MODAL — REGIÃO DE ATENDIMENTO
   ============================================================ */
.modal-regiao {
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.modal-regiao.is-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-regiao__backdrop {
    transition: opacity 0.3s ease;
}

.modal-regiao__card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease;
    will-change: transform, opacity;
}

.modal-regiao.is-active .modal-regiao__card {
    transform: scale(1);
    opacity: 1;
}

.modal-regiao:not(.is-active) .modal-regiao__card {
    transform: scale(0.95);
    opacity: 0;
}

.modal-regiao__btn-ok {
    letter-spacing: 0.02em;
}

.modal-regiao__btn-ok:hover {
    box-shadow: 0 10px 22px -4px rgba(15, 59, 130, 0.38);
}

