﻿/* ============================================================
   ARISO - SITE INSTITUCIONAL
   IDENTIDADE MINIMALISTA
   ============================================================ */


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: #082a42;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}


/* ============================================================
   VARIABLES
   ============================================================ */

:root {
    --navy: #082a42;
    --navy-dark: #061f33;
    --navy-soft: #153b55;
    --cyan: #12a7b5;
    --turquoise: #16b8ad;
    --blue: #1687df;
    --text: #082a42;
    --muted: #667e90;
    --muted-light: #8798a6;
    --background: #ffffff;
    --surface: #f5f8fa;
    --surface-blue: #f1f7f9;
    --border: #dce6eb;
    --border-soft: #eaf0f3;
    --container: 1460px;
}


/* ============================================================
   GLOBAL
   ============================================================ */

.container {
    width: min(calc(100% - 80px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 70px 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -0.045em;
}

.eyebrow {
    color: #277c96;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.30em;
    text-transform: uppercase;
}

.eyebrow-line {
    position: relative;
    padding-bottom: 17px;
    margin-bottom: 17px;
}

    .eyebrow-line::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 29px;
        height: 2px;
        background: var(--turquoise);
    }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 650;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    color: #fff;
    background: var(--navy);
    box-shadow: 0 10px 24px rgba(8, 42, 66, .14);
}

    .button-primary:hover {
        background: #0b3854;
        box-shadow: 0 14px 30px rgba(8, 42, 66, .20);
    }

.button-light {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .10);
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    display: flex;
    align-items: center;
    transition: background .2s ease, box-shadow .2s ease, height .2s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-left: 430px;
}


/* ------------------------------------------------------------
   LOGO
   ------------------------------------------------------------ */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: 145px;
    height: auto;
}


/* ------------------------------------------------------------
   MENU DESKTOP
   ------------------------------------------------------------ */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 41px;
    margin-left: 170px;
}

    .desktop-nav a {
        position: relative;
        color: #15384f;
        font-size: 11px;
        font-weight: 550;
    }

        .desktop-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 1px;
            background: var(--turquoise);
            transition: width .2s ease;
        }

        .desktop-nav a:hover::after {
            width: 100%;
        }


/* ------------------------------------------------------------
   HEADER APÓS SCROLL
   ------------------------------------------------------------ */

.site-header.scrolled {
    position: fixed;
    height: 68px;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 5px 22px rgba(8,42,66,.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* ------------------------------------------------------------
   MENU MOBILE
   ------------------------------------------------------------ */

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    margin-left: auto;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .menu-button span {
        width: 21px;
        height: 2px;
        display: block;
        margin: 5px auto;
        background: var(--navy);
    }

.mobile-nav {
    display: none;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    background-color: #ffffff;
    background-image: url("/images/assets/ariso-banner-site.png?v=3");
    background-repeat: no-repeat;
    /* ancora o asset no lado direito */
    background-position: calc(100% - 110px) center;
    /*
       Mostra a altura inteira do asset.
       A largura passa a ser proporcional,
       evitando o zoom provocado pelo cover.
    */
    background-size: auto 100%;
    overflow: hidden;
}


/* ------------------------------------------------------------
   CONTAINER
   ------------------------------------------------------------ */

.hero-container {
    position: relative;
    width: min(calc(100% - 80px), var(--container));
    min-height: 520px;
    margin-inline: auto;
}


/* ------------------------------------------------------------
   CONTEÚDO
   ------------------------------------------------------------ */

.hero-content {
    position: absolute;
    z-index: 10;
    top: 125px;
    left: 0;
    width: 470px;
    padding: 0;
    transform: none;
}

.hero-description {
    width: 365px;
    margin: 17px 0 0;
    color: #627c8d;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
}


/* ------------------------------------------------------------
   EYEBROW
   ------------------------------------------------------------ */

.section-eyebrow {
    display: block;
    margin-bottom: 11px;
    color: #277c96;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .30em;
    text-transform: uppercase;
}

.section-line {
    display: block;
    width: 29px;
    height: 2px;
    margin-bottom: 22px;
    background: var(--turquoise);
}


/* ------------------------------------------------------------
   TÍTULO
   ------------------------------------------------------------ */

.hero-title {
    margin: 0;
    font-size: 50px;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-title-primary {
    display: block;
    color: #062b43;
    font-weight: 750;
}

.hero-title-secondary {
    display: block;
    margin-top: 6px;
    color: #8193a1;
    font-weight: 500;
}


/* ------------------------------------------------------------
   DESCRIÇÃO
   ------------------------------------------------------------ */

.hero-description {
    width: 100%;
    max-width: 410px;
    margin: 20px 0 0;
    color: #647e90;
    font-size: 13px;
    line-height: 1.55;
}


/* ------------------------------------------------------------
   AÇÕES
   ------------------------------------------------------------ */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 18px;
}


/* ------------------------------------------------------------
   BOTÃO PRINCIPAL
   ------------------------------------------------------------ */

.hero .btn-primary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 21px;
    border-radius: 5px;
    color: #fff;
    background: var(--navy);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(8, 42, 66, .14);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

    .hero .btn-primary:hover {
        transform: translateY(-2px);
        background: #0b3854;
        box-shadow: 0 12px 26px rgba(8, 42, 66, .20);
    }


/* ------------------------------------------------------------
   LINK SECUNDÁRIO
   ------------------------------------------------------------ */

.hero .btn-text {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

    .hero .btn-text::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 27px;
        height: 2px;
        background: var(--turquoise);
        transition: width .2s ease;
    }

    .hero .btn-text:hover::after {
        width: 100%;
    }


/* ============================================================
   HERO - NOTEBOOK
   ============================================================ */

@media (max-width: 1280px) {

    /*
       HEADER
       No desktop grande usamos:
       padding-left: 430px;
       menu margin-left: 170px;

       Em notebook reduzimos proporcionalmente para
       o conjunto continuar cabendo na área branca.
    */

    .header-inner {
        padding-left: 80px;
        padding-right: 40px;
    }

    .brand-logo {
        width: 140px;
    }

    .desktop-nav {
        margin-left: 100px;
        gap: 32px;
    }


    /* HERO */

    .hero {
        min-height: 480px;
        background-position: calc(100% - 40px) center;
    }

    .hero-container {
        width: min(calc(100% - 52px), var(--container));
        min-height: 480px;
    }

    .hero-content {
        top: 118px;
        width: 390px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-description {
        max-width: 370px;
        font-size: 12px;
    }
}


/* ============================================================
   HERO - TABLET
   ============================================================ */

@media (max-width: 980px) {

    /*
       HEADER
       A partir daqui some o menu desktop
       e entra o botão mobile.
    */

    .header-inner {
        padding-left: 28px;
        padding-right: 28px;
    }

    .brand-logo {
        width: 140px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: 560px;
        background-position: 57% center;
    }

    .hero-container {
        width: calc(100% - 44px);
        min-height: 560px;
    }

    .hero-content {
        top: 125px;
        width: 350px;
    }

    .hero-title {
        font-size: 45px;
    }

    .hero-description {
        max-width: 340px;
    }
}


/* ============================================================
   HERO - MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .header-inner {
        padding-left: 17px;
        padding-right: 17px;
    }

    .brand-logo {
        width: 132px;
    }


    /* HERO */

    .hero {
        min-height: 670px;
        background-position: 62% center;
    }

    .hero-container {
        width: calc(100% - 34px);
        min-height: 670px;
    }

    .hero-content {
        top: 46%;
        width: 82%;
        transform: translateY(-50%);
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        max-width: 100%;
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================================
   HERO - SMALL MOBILE
   ============================================================ */

@media (max-width: 440px) {

    .hero {
        min-height: 650px;
    }

    .hero-content {
        width: 86%;
    }

    .hero-title {
        font-size: 36px;
    }
}


/* ============================================================
   BENEFITS
   ============================================================ */

.benefits-section {
    position: relative;
    z-index: 20;
    padding: 35px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit {
    position: relative;
    padding: 5px 30px;
    text-align: center;
}

    .benefit:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 17px;
        right: 0;
        width: 1px;
        height: calc(100% - 34px);
        background: var(--border);
    }

.benefit-icon {
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 27px;
}

.benefit h3 {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.benefit p {
    margin: 0;
    color: #718697;
    font-size: 11px;
    line-height: 1.5;
}


/* ============================================================
   SOLUTIONS
   ============================================================ */

.solutions-section {
    background: linear-gradient( 180deg, #f5f9fb 0%, #f1f7f9 100% );
}

.solutions-heading {
    display: grid;
    grid-template-columns: 310px 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 29px;
}

.solutions-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: 37px;
    line-height: .97;
}

.solutions-description {
    align-self: center;
    max-width: 280px;
    padding-left: 28px;
    border-left: 1px solid #cbd9e0;
}

    .solutions-description p {
        margin: 0;
        color: #718596;
        font-size: 12px;
        line-height: 1.55;
    }

.solutions-link {
    padding-bottom: 5px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #78a5b6;
    color: #174e69;
    font-size: 11px;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
}

.solution-card {
    position: relative;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 12px 7px;
    overflow: hidden;
    border: 1px solid #dce6eb;
    border-radius: 6px;
    background: rgba(255,255,255,.86);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .solution-card::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--turquoise);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s ease;
    }

    .solution-card:hover {
        transform: translateY(-4px);
        border-color: #c4d7df;
        box-shadow: 0 12px 27px rgba(8,42,66,.08);
    }

        .solution-card:hover::after {
            transform: scaleX(1);
        }

    .solution-card i {
        color: var(--navy);
        font-size: 23px;
    }

    .solution-card span {
        color: #14364d;
        font-size: 10px;
        font-weight: 650;
        text-align: center;
    }

.solution-more {
    background: #edf4f7;
}


/* ============================================================
   SEGMENTS
   ============================================================ */

.segments-section {
    background: #fff;
}

.segments-grid {
    display: grid;
    grid-template-columns: 31% 69%;
    align-items: center;
    gap: 52px;
}

.segments-content h2 {
    margin-bottom: 17px;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.02;
}

.segments-content p {
    max-width: 390px;
    margin-bottom: 23px;
    color: #657c8d;
    font-size: 12px;
    line-height: 1.6;
}

.segment-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--turquoise);
    color: var(--navy);
    font-size: 11px;
    font-weight: 650;
}

.segment-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.segment-card {
    position: relative;
    height: 305px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--navy);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .segment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 34px rgba(8,42,66,.15);
    }

    .segment-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

    .segment-card:hover img {
        transform: scale(1.035);
    }

.segment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(5,31,50,0) 28%, rgba(5,31,50,.28) 49%, rgba(5,31,50,.92) 76%, rgba(5,31,50,.98) 100% );
}

.segment-card-content {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 14px;
    bottom: 17px;
    color: #fff;
}

    .segment-card-content h3 {
        margin-bottom: 8px;
        font-size: 17px;
        line-height: 1.02;
    }

    .segment-card-content p {
        margin: 0;
        color: rgba(255,255,255,.82);
        font-size: 10px;
        line-height: 1.42;
    }


/* ============================================================
   PROCESS
   ============================================================ */

.process-section {
    padding: 32px 0 42px;
    border-top: 1px solid var(--border-soft);
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: end;
    gap: 60px;
}

.process-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: 29px;
    line-height: 1.03;
}

.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

.process-line {
    position: absolute;
    z-index: 0;
    top: 32px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: #d5e1e7;
}

.process-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.process-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce7ec;
    border-radius: 50%;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 6px 18px rgba(8,42,66,.04);
    font-size: 19px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.process-item:hover .process-icon {
    transform: translateY(-3px);
    border-color: var(--turquoise);
    box-shadow: 0 10px 22px rgba(8,42,66,.08);
}

.process-item span {
    color: #14364e;
    font-size: 10px;
    font-weight: 650;
}


/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    background: #fff;
}

.cta-banner {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    background: var(--navy);
}

.cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(5,31,50,.96) 0%, rgba(5,31,50,.83) 25%, rgba(5,31,50,.35) 52%, rgba(5,31,50,.04) 77% );
}

.cta-inner {
    position: relative;
    z-index: 2;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    color: #fff;
}

.cta-line {
    width: 28px;
    height: 2px;
    display: block;
    margin-bottom: 14px;
    background: var(--turquoise);
}

.cta-content h2 {
    margin-bottom: 7px;
    font-size: 26px;
    line-height: 1.02;
}

.cta-content p {
    margin-bottom: 17px;
    color: rgba(255,255,255,.82);
    font-size: 11px;
}

.cta-content .button {
    min-height: 43px;
}

.cta-signature {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
    color: #fff;
    font-size: 9px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}

    .cta-signature i {
        width: 28px;
        height: 2px;
        margin-top: 11px;
        background: var(--turquoise);
    }


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding: 25px 0;
    background: #fff;
    border-top: 1px solid var(--border-soft);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 17px;
}

.footer-logo {
    width: 128px;
}

.footer-brand span {
    color: #758999;
    font-size: 9px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .footer-nav a {
        color: #657d8e;
        font-size: 9px;
    }

        .footer-nav a:hover {
            color: var(--navy);
        }

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    color: #7c909f;
    font-size: 8px;
}

.social-links {
    display: flex;
    gap: 6px;
}

    .social-links a {
        width: 23px;
        height: 23px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: #fff;
        background: var(--navy);
        font-size: 10px;
        transition: transform .2s ease, background .2s ease;
    }

        .social-links a:hover {
            transform: translateY(-2px);
            background: #12506f;
        }


/* ============================================================
   NOTEBOOK - DEMAIS SEÇÕES
   ============================================================ */

@media (max-width: 1280px) {

    .container {
        width: min(calc(100% - 52px), var(--container));
    }

    .solutions-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .solutions-heading {
        grid-template-columns: 280px 1fr auto;
    }
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 980px) {

    .mobile-nav {
        position: fixed;
        z-index: 110;
        top: 73px;
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: rgba(255,255,255,.98);
        box-shadow: 0 15px 35px rgba(8,42,66,.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

        .mobile-nav.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-nav a {
            padding: 13px;
            border-radius: 5px;
            font-size: 13px;
        }

            .mobile-nav a:hover {
                background: #f2f7f9;
            }


    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .benefit:nth-child(2)::after {
        display: none;
    }


    /* SOLUTIONS */

    .solutions-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .solutions-description {
        max-width: 420px;
    }


    /* SEGMENTS */

    .segments-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .segments-content {
        max-width: 600px;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* FOOTER */

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 34px);
    }

    .section {
        padding: 52px 0;
    }

    .brand-logo {
        width: 137px;
    }

    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit::after {
        display: none;
    }


    /* SOLUTIONS */

    .solutions-title h2,
    .segments-content h2 {
        font-size: 31px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* SEGMENTS */

    .segment-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .segment-card {
        height: 270px;
    }


    /* PROCESS */

    .process-flow {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 5px;
    }

    .process-line {
        display: none;
    }


    /* CTA */

    .cta-banner,
    .cta-inner {
        min-height: 330px;
    }

    .cta-background {
        object-position: 66% center;
    }

    .cta-overlay {
        background: linear-gradient( 180deg, rgba(5,31,50,.12) 0%, rgba(5,31,50,.55) 48%, rgba(5,31,50,.97) 100% );
    }

    .cta-inner {
        align-items: flex-end;
        padding-bottom: 28px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-signature {
        display: none;
    }


    /* FOOTER */

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 20px;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 440px) {

    .hero-content h1 {
        font-size: 41px;
    }

    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .segment-cards {
        grid-template-columns: 1fr;
    }

    .segment-card {
        height: 320px;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}
