/*
    ==========================================================
    VARIÁVEIS GERAIS
    ==========================================================
*/

:root {
    --font-main: "Geist", Arial, sans-serif;

    --orange: #f23124;
    --orange-light: #f77b5e;
    --orange-dark: #a10b00;
    --orange-dark-2: #c43e24;
    --menu-accent: #f55835;

    --bg-light: #f6f7f2;
    --bg-soft: #eef3ea;

    --white: #ffffff;
    --black: #111111;

    --text: #18221b;
    --muted: #667166;

    --border: rgba(20, 45, 27, 0.12);
    --border-light: rgba(255, 255, 255, 0.18);

    --radius: 24px;
    --radius-lg: 34px;

    --shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
}


/*
    ==========================================================
    RESET E BASE
    ==========================================================
*/

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;

    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);

    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

section {
    scroll-margin-top: 90px;
}


/*
    ==========================================================
    CONTAINER
    ==========================================================
*/

.container-custom {
    max-width: 1200px;
}


/*
    ==========================================================
    CLASSES GERAIS DE SEÇÃO
    ==========================================================
*/

.section-spacing {
    padding: 104px 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--orange-light);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-label.dark {
    color: var(--orange);
}

.section-title {
    max-width: 720px;
    margin: 0;

    color: var(--text);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.section-text {
    max-width: 620px;
    margin: 24px 0 0;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.small-text {
    font-size: 16px;
}

.section-head {
    max-width: 820px;
    margin: 0 auto;
}

.section-head.text-center .section-title {
    margin-left: auto;
    margin-right: auto;
}

.section-head.light h2,
.section-head.light .section-title {
    color: var(--white);
}


/*
    ==========================================================
    BOTÕES
    ==========================================================
*/

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 23px;

    border-radius: 999px;
    border: 1px solid #ff6039;
    background: #ff6039;

    color: white;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;

    transition: 0.22s ease;
}

.btn-main:hover {
    background: #f23124;
    border-color: #f23124;
    color: white;
    font-weight: 600;
    transform: scale(1.04);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 23px;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);

    color: var(--white);
    font-size: 15px;
    line-height: 1;
    font-weight: 500;

    background: transparent;
    transition: 0.22s ease;
}

.btn-outline-white:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.10);
}


/*
    ==========================================================
    HEADER / MENU — AJUSTADO PELO PRINT DE REFERÊNCIA
    ==========================================================
*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    width: 100%;
    max-width: 100%;

    padding: 0;

    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    overflow-x: clip;

    transition:
        background 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .topbar {
    height: 70px;
}
.site-header.is-scrolled .logo-main {
    color: #071322;
}
.site-header.is-scrolled .logo-divider {
    color: gray;
}

/* Estado com scroll: links cinza */
.site-header.is-scrolled .menu-list a {
    color: #434343;
}

/* Estado com scroll + hover: links pretos */
.site-header.is-scrolled .menu-list a:hover {
    color: #000000;
}

.site-header.is-scrolled .menu-list a:hover::after {
    width: 22px;
}

.site-header.is-scrolled .btn-header {
    background: #ff6039;
}

.site-header.is-scrolled .btn-header:hover {
    background: #f05630;
}

.site-header.is-scrolled .menu-toggle span {
    background: #111111;
}

/*
    Container do header.
    No print de referência, o menu fica mais largo,
    com logo mais próximo da esquerda e botão mais à direita.
*/
.site-header .container-custom {
    max-width: 90%;
}

/*
    Barra principal do menu.
*/
.topbar {
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}

/*
    LOGO
    Referência:
    GREEN branco, barra branca, IRRIGATION verde.
*/
.logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--white);
    text-decoration: none;
    white-space: nowrap;

    line-height: 1;
}

.logo:hover {
    color: var(--white);
}

.logo-main {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.logo-divider {
    color: #ffffff95;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.95;
}

/*
    Deixa apenas o IRRIGATION verde.
    Funciona com o HTML:
    GREEN / IRRIGATION
*/
.logo .logo-main:last-child {
    color: #f55835;
}

/*
    Área dos links + botão.
*/
.menu-collapse {
    align-items: center;
    justify-content: flex-center;
    flex-grow: 0;
}

.menu-collapse.show,
.menu-collapse.collapsing {
    display: flex;
}

/*
    Links centrais.
*/
.menu-list {
    display: flex;
    align-items: center;
    gap: 50px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.menu-list a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-transform: uppercase;

    transition: color 0.18s ease;
}

/* Tracinho do hover */
.menu-list a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 0;
    height: 2px;

    border-radius: 999px;
    background: var(--menu-accent);

    transform: translateX(-50%);

    transition: width 0.22s ease;
}

.menu-list a:hover {
    color: #ffffff;
}

.menu-list a:hover::after {
    width: 22px;
}

/*
    CTA do menu.
    No print de referência, ele é transparente/outline,
    não verde sólido.
*/
.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 49px;
    margin-left: 43px;
    padding: 0 27px;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: var(--white);
    text-decoration: none;

    font-size: 11px;
    line-height: 0.8;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn-header::after {
    content: "↗";
    display: inline-block;

    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1;

    transform: translateY(-1px);
}

.btn-header:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.62);
    color: var(--white);
    transform: translateY(-1px);
}

/*
    Botão mobile customizado.
*/
.menu-toggle {
    display: none;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    padding: 0;

    border: none;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    border-radius: 999px;
    background: #ffffff;
    transition:
        transform 0.22s ease,
        opacity 0.22s ease,
        background 0.22s ease;
}

/*
    ==========================================================
    RESPONSIVO DO HEADER
    ==========================================================
*/
@media (min-width: 992px) {
    .topbar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 40px;
        width: 100%;
    }

    .logo {
        justify-self: start;
    }

    .menu-collapse {
        display: contents !important;
    }

    .menu-list {
        justify-self: center;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 50px;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    .btn-header {
        justify-self: end;
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .menu-list {
        gap: 28px;
    }

    .btn-header {
        margin-left: 30px;
        padding: 0 23px;
    }
}

@media (max-width: 991px) {
    .site-header .container,
    .site-header .container-custom {
        width: 100%;
        max-width: 100%;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .topbar {
        min-height: 50px;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu-collapse {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;

        margin-top: 6px;
        padding: 20px;

        border-radius: 18px;
        background: rgba(255,255,255, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
    }

    .menu-collapse:not(.show) {
        display: none;
    }

    .menu-collapse.collapsing {
        display: flex;
        height: auto;
        overflow: hidden;
        transition: height 0.22s ease;
    }

    .menu-list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu-list li {
        width: 100%;
    }

    .menu-list a {
        width: 100%;
        padding: 12px 0;

        font-size: 14px;
    }

    .btn-header {
        width: 100%;
        min-height: 46px;
        margin-left: 0;
        margin-top: 14px;
    }
    .site-header .menu-list a {
        color: #434343;
    }

    /* Estado com scroll + hover: links pretos */
    .site-header .menu-list a:hover {
        color: #000000;
    }

    .site-header .menu-list a:hover::after {
        width: 22px;
    }

    .site-header .btn-header {
        background: #ff6039;
    }

    .site-header .btn-header:hover {
        background: #f05630;
    }
}

@media (max-width: 575px) {
    .container-custom {
        padding-left: 25px;
        padding-right: 25px;
    }
    .logo-main,
    .logo-divider {
        font-size: 22px;
    }

    .site-header.is-scrolled {
        background: rgb(255, 255, 255);
    }

    .topbar {
        max-height: 35px;
    }
    
}


/*
    ==========================================================
    HERO
    ==========================================================
*/

.hero {
    position: relative;

    min-height: 100vh;
    display: flex;
    align-items: center;

    color: var(--white);

    background-image: url("/img/hero-desktop.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
    linear-gradient(
        90deg,
        rgba(3, 10, 20, 0.82) 0%,
        rgba(6, 18, 34, 0.58) 45%,
        rgba(8, 26, 48, 0.18) 100%
    ),
    linear-gradient(
        to bottom,
        rgba(3, 10, 20, 0.12) 0%,
        rgba(3, 10, 20, 0.12) 55%,
        rgba(3, 10, 20, 0.40) 100%
    );

    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 90%;
    padding-top: 100px;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 22px;

    color: var(--white);
    font-size: clamp(42px, 4vw, 72px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.058em;
}

.hero p {
    max-width: 640px;
    margin: 0 0 32px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.62;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 34px;
}


/*
    ==========================================================
    HERO FEATURES
    ==========================================================
*/

.hero-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 20px;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;

    white-space: nowrap;
}

.hero-features i {
    color: var(--orange-light);
    font-size: 15px;
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {
    .hero {
        min-height: 92vh;

        background-position: 62% center;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 120px;
    }

    .hero h1 {
        max-width: 680px;
        font-size: clamp(42px, 8vw, 64px);
    }

    .hero p {
        max-width: 560px;
        font-size: 17px;
    }
}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {
    .hero {
        min-height: 100svh;

        /*
            Use uma imagem própria para mobile.
            Dimensão recomendada: 1080x1350 ou 1080x1600.
        */
        background-image: url("/img/hero-mobile.webp");

        /*
            Como o prédio está mais para a direita,
            esse valor ajuda a não cortar o ponto principal.
        */
        background-position: 63% center;
    }

    .hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.52) 42%,
                rgba(0, 0, 0, 0.76) 100%
            );
    }

    .hero-content {
        max-width: 100%;
        padding-top: 118px;
    }

    .hero h1 {
        max-width: 100%;

        font-size: 42px;
        line-height: 1.02;
        letter-spacing: -0.055em;
    }

    .hero p {
        max-width: 100%;

        font-size: 16px;
        line-height: 1.55;
    }

    .hero p br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;

        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        gap: 12px 16px;
        padding-bottom: 18px;
    }

    .hero-features span {
        font-size: 13.5px;
    }
}

/*
    ==========================================================
    INTRODUÇÃO
    Layout centralizado igual à referência
    ==========================================================
*/

.intro-section {
    background: #ffffff;
}

/*
    Bloco dos textos.
    Tudo fica centralizado e limitado para não ficar largo demais.
*/
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/*
    Pequeno título superior.
*/
.intro-content .section-label {
    margin-bottom: 28px;

    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.26em;
}

/*
    Título principal.
*/
.intro-title {
    max-width: 760px;
    margin: 0 auto;

    color: #171717;

    font-size: clamp(30px, 2.7vw, 60px);
    line-height: 0.98;

    font-weight: 750;
    letter-spacing: -0.065em;

    text-align: center;
}

/*
    Texto abaixo do título.
*/
.intro-text {
    max-width: 590px;

    margin: 32px auto 0;

    color: #857b75;

    font-size: 18px;
    line-height: 1.65;

    font-weight: 400;

    text-align: center;
}

/*
    Imagem grande abaixo.
*/
.intro-image {
    width: 100%;

    margin-top: 80px;

    overflow: hidden;

    border-radius: 32px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.10);
    margin-bottom: -50px;
}

/*
    Imagem horizontal.
*/
.intro-image img {
    display: block;

    width: 100%;
    height: 590px;

    object-fit: cover;
    object-position: center;
}


/*
    ==========================================================
    INTRO — TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .intro-title {
        max-width: 760px;

        font-size: clamp(40px, 3vw, 60px);
    }

    .intro-text {
        max-width: 600px;

        font-size: 17px;
    }

    .intro-image {
        margin-top: 60px;
    }

    .intro-image img {
        height: 440px;
    }
}


/*
    ==========================================================
    INTRO — MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .intro-content .section-label {
        margin-bottom: 22px;

        font-size: 12px;
        line-height: 1.5;

        letter-spacing: 0.22em;
    }

    .intro-title {
        font-size: clamp(30px, 3.5vw, 60px);
        line-height: 1.02;

        letter-spacing: -0.055em;
    }

    .intro-text {
        margin-top: 24px;

        font-size: 16px;
        line-height: 1.65;
    }

    .intro-image {
        margin-top: 44px;

        border-radius: 22px;
    }

    .intro-image img {
        height: 290px;
    }
}


/*
    ==========================================================
    CAMPANHA
    Layout igual à referência: texto à esquerda e imagem à direita
    ==========================================================
*/

.campaign-section {
    background: #ffffff;
    color: var(--text);
}

.campaign-label {
    display: block;
    width: 100%;
    text-align: center;
}

/*
    Controla o espaçamento entre texto e imagem.
*/
.campaign-row {
    --bs-gutter-x: 82px;
}

/*
    Bloco de texto.
*/
.campaign-content {
    max-width: 570px;
}

/*
    Label superior.
*/
.campaign-content .section-label {
    margin-bottom: 28px;

    color: var(--orange);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.27em;
    text-transform: uppercase;
}

/*
    Título principal.
*/
.campaign-content h2 {
    max-width: 570px;

    margin: 0 0 28px;
}


/*
    Parágrafos.
*/
.campaign-content p {
    max-width: 560px;

    margin: 0 0 22px;

    color: #7b7772;

    font-size: 16px;
    line-height: 1.75;

    font-weight: 400;
}

/*
    Lista de benefícios da campanha.
*/
.campaign-content ul {
    display: grid;
    gap: 14px;

    margin: 34px 0 40px;
    padding: 0;

    list-style: none;
}

.campaign-content li {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #171717;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 650;
}

/*
    Bolinha com check.
*/
.campaign-content li i {
    width: 18px;
    height: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    border-radius: 50%;

    background: rgba(245, 88, 53, 0.12);
    color: var(--orange);

    font-size: 12px;
    line-height: 1;
}

/*
    Botão da campanha.
*/
.campaign-button {
    min-height: 56px;

    padding: 0 30px;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/*
    Imagem à direita.
*/
.campaign-image {
    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.10);
}

.campaign-image img {
    display: block;

    width: 100%;
    height: 595px;

    object-fit: cover;
    object-position: center;
}

/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {
    .campaign-row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 48px;
    }

    .campaign-content {
        max-width: 100%;
    }

    .campaign-content p {
        max-width: 680px;
    }

    .campaign-image img {
        height: 440px;
    }
}

/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {
    .campaign-content .section-label {
        margin-bottom: 22px;

        font-size: 12px;
        letter-spacing: 0.22em;
    }

    .campaign-content p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .campaign-content ul {
        margin: 30px 0 34px;
    }

    .campaign-button {
        width: 100%;
    }

    .campaign-image {
        border-radius: 24px;
    }

    .campaign-image img {
        height: 330px;
    }
}

/*
    ==========================================================
    SOLUÇÕES - JM CFTV
    Paleta azul quase preta + laranja
    ==========================================================
*/

.solutions-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 8%,
            rgba(245, 88, 53, 0.18) 0%,
            rgba(245, 88, 53, 0.05) 28%,
            rgba(245, 88, 53, 0) 58%
        ),
        linear-gradient(
            135deg,
            #030a14 0%,
            #061222 52%,
            #081a30 100%
        );
}


/*
    ==========================================================
    CABEÇALHO
    ==========================================================
*/

.solutions-header {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.solutions-header .section-label {
    margin-bottom: 28px;

    color: #ff7a55;

    font-size: 12px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.solutions-header .intro-title {
    color: #ffffff;
}


/*
    ==========================================================
    GRID DOS CARDS
    ==========================================================
*/

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 82px;
}


/*
    ==========================================================
    CARD
    ==========================================================
*/

.solution-card {
    min-height: 280px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 42px 34px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease;

    scroll-margin-top: 160px;
}

.solution-card.is-active {
    transform: translateY(-6px);

    border-color: rgba(245, 88, 53, 0.55);

    box-shadow:
        0 0 0 3px rgba(245, 88, 53, 0.14),
        0 28px 70px rgba(0, 0, 0, 0.22);

    background: #ffffff;
}

.solution-card.is-active .solution-icon {
    background: #f55835;

    color: #ffffff;

    transform: scale(1.05);

    box-shadow:
        0 14px 30px rgba(245, 88, 53, 0.28);
}

/*
    Hover
*/

.solution-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: rgba(245, 88, 53, 0.36);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.18);
}

.solution-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.solution-card:hover {
    text-decoration: none;
}

.solution-card h3,
.solution-card p {
    text-decoration: none;
}


/*
    ==========================================================
    ÍCONE
    ==========================================================
*/

.solution-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 18px;

    background: rgba(245, 88, 53, 0.12);

    color: #f55835;

    font-size: 27px;

    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.solution-card:hover .solution-icon {
    background: #f55835;

    color: #ffffff;

    transform: scale(1.05);

    box-shadow:
        0 14px 30px rgba(245, 88, 53, 0.28);
}


/*
    ==========================================================
    TÍTULO DO CARD
    ==========================================================
*/

.solution-card h3 {
    max-width: 280px;

    margin: 0 0 14px;

    color: #111827;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 800;

    letter-spacing: -0.025em;
}


/*
    ==========================================================
    TEXTO DO CARD
    ==========================================================
*/

.solution-card p {
    max-width: 310px;

    margin: 0;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.58;

    font-weight: 400;
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

        margin-top: 58px;
    }

    .solution-card {
        min-height: 260px;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .solutions-header .section-label {
        margin-bottom: 22px;

        font-size: 12px;

        letter-spacing: 0.23em;
    }


    .solutions-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 44px;
    }

    .solution-card {
        min-height: 245px;

        padding: 34px 24px;

        border-radius: 24px;
        scroll-margin-top: 110px;
    }

    .solution-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 24px;

        font-size: 24px;
    }

    .solution-card h3 {
        font-size: 19px;
    }

}

/*
    ==========================================================
    BENEFÍCIOS - JM CFTV
    ==========================================================
*/

.benefits-section {
    background: #ffffff;
    color: var(--text);
}


/*
    ==========================================================
    CABEÇALHO
    ==========================================================
*/

.benefits-header {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.benefits-header .section-label {
    margin-bottom: 28px;

    color: var(--orange);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.27em;
    text-transform: uppercase;
}


/*
    ==========================================================
    BLOCO DOS BENEFÍCIOS
    ==========================================================
*/

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 100%;

    margin-top: 82px;

    overflow: hidden;

    border: 1px solid rgba(245, 88, 53, 0.14);

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.045);
}


/*
    ==========================================================
    ITEM
    ==========================================================
*/

.benefit-item {
    min-height: 250px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 42px 32px;

    text-align: center;

    background: #ffffff;

    border-right: 1px solid rgba(245, 88, 53, 0.12);

    transition:
        background 0.24s ease,
        color 0.24s ease;
}

.benefit-item:last-child {
    border-right: none;
}


/*
    ==========================================================
    ÍCONE
    ==========================================================
*/

.benefit-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

    border-radius: 15px;

    background: rgba(245, 88, 53, 0.11);

    color: var(--orange);

    font-size: 21px;

    transition:
        background 0.24s ease,
        color 0.24s ease,
        transform 0.24s ease;
}


/*
    ==========================================================
    TÍTULO
    ==========================================================
*/

.benefit-item h3 {
    max-width: 240px;

    margin: 0 0 13px;

    color: #101410;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 750;

    letter-spacing: -0.025em;

    transition: color 0.24s ease;
}


/*
    ==========================================================
    TEXTO
    ==========================================================
*/

.benefit-item p {
    max-width: 240px;

    margin: 0;

    color: #7d7975;

    font-size: 15px;

    line-height: 1.58;

    font-weight: 400;

    transition: color 0.24s ease;
}


/*
    ==========================================================
    HOVER
    ==========================================================
*/

.benefit-item:hover {
    background: #071018;
}

.benefit-item:hover .benefit-icon {
    background: var(--orange);

    color: #ffffff;

    transform: scale(1.04);
}

.benefit-item:hover h3 {
    color: #ffffff;
}

.benefit-item:hover p {
    color: rgba(255, 255, 255, 0.68);
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 58px;
    }

    .benefit-item {
        min-height: 230px;

        border-bottom: 1px solid rgba(245, 88, 53, 0.12);
    }

    .benefit-item:nth-child(2n) {
        border-right: none;
    }

    .benefit-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .benefits-header .section-label {
        margin-bottom: 22px;

        font-size: 12px;

        letter-spacing: 0.22em;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        margin-top: 44px;

        border-radius: 22px;
    }

    .benefit-item {
        min-height: 215px;

        padding: 34px 24px;

        border-right: none;

        border-bottom: 1px solid rgba(245, 88, 53, 0.12);
    }

    .benefit-item:nth-child(2n) {
        border-bottom: 1px solid rgba(245, 88, 53, 0.12);
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

    .benefit-icon {
        margin-bottom: 20px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

}


/*
    ==========================================================
    SOBRE - JM CFTV
    ==========================================================
*/

.about-section {
    background: #ffffff;
}


/*
    ==========================================================
    TEXTO
    ==========================================================
*/

.about-section .section-label {
    margin-bottom: 24px;

    color: var(--orange);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.about-section .section-text {
    max-width: 570px;

    color: #5f6b74;

    font-size: 17px;
    line-height: 1.7;

    font-weight: 400;
}

.about-section .small-text {
    margin-bottom: 34px;
}


/*
    ==========================================================
    CARD DA IMAGEM
    ==========================================================
*/

.about-tech-card {
    position: relative;

    overflow: hidden;

    padding: 12px;

    border-radius: 42px;

    background:
        linear-gradient(
            135deg,
            rgba(245, 88, 53, 0.32) 0%,
            rgba(245, 88, 53, 0.06) 32%,
            rgba(255, 255, 255, 0.04) 100%
        ),
        linear-gradient(
            135deg,
            #030a14 0%,
            #061222 52%,
            #081a30 100%
        );

    box-shadow:
        0 30px 80px rgba(3, 10, 20, 0.16);
}

.about-tech-card img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;
    object-position: center;

    border-radius: 32px;
}


/*
    Overlay leve para integrar a imagem com a paleta
*/

.about-tech-card::after {
    content: "";

    position: absolute;
    inset: 12px;

    border-radius: 32px;

    background:
        linear-gradient(
            to bottom,
            rgba(3, 10, 20, 0.02) 0%,
            rgba(3, 10, 20, 0.10) 62%,
            rgba(3, 10, 20, 0.28) 100%
        );

    pointer-events: none;
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .about-section .section-text {
        max-width: 680px;
    }

    .about-tech-card img {
        height: 390px;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .about-section .section-label {
        margin-bottom: 20px;

        font-size: 12px;

        letter-spacing: 0.22em;
    }
    .about-section .section-text {
        font-size: 15.5px;
        line-height: 1.62;
    }

    .about-section .small-text {
        margin-bottom: 30px;
    }

    .about-tech-card {
        padding: 8px;

        border-radius: 30px;
    }

    .about-tech-card img {
        height: 270px;

        border-radius: 24px;
    }

    .about-tech-card::after {
        inset: 8px;

        border-radius: 24px;
    }

}


/*
    ==========================================================
    DIFERENCIAIS
    Layout JM CFTV - azul quase preto + laranja
    ==========================================================
*/

.differentials-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 8%,
            rgba(245, 88, 53, 0.16) 0%,
            rgba(245, 88, 53, 0.05) 28%,
            rgba(245, 88, 53, 0) 58%
        ),
        linear-gradient(
            135deg,
            #030a14 0%,
            #061222 52%,
            #081a30 100%
        );
}


/*
    ==========================================================
    CABEÇALHO
    ==========================================================
*/

.differentials-header {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


/*
    Pequeno texto superior
*/

.differentials-header .section-label {
    margin-bottom: 28px;

    color: #ff7a55;

    font-size: 12px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}


/*
    Título principal
*/

.differentials-header .intro-title {
    color: #ffffff;
}


/*
    Texto abaixo do título
*/

.differentials-header p {
    max-width: 620px;

    margin: 26px auto 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 17px;
    line-height: 1.6;

    font-weight: 400;
}


/*
    ==========================================================
    GRID DOS CARDS
    ==========================================================
*/

.differentials-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 82px;
}


/*
    ==========================================================
    CARD
    ==========================================================
*/

.feature-card {
    min-height: 305px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 38px 30px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


/*
    Hover discreto
*/

.feature-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: rgba(245, 88, 53, 0.34);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.22);
}


/*
    ==========================================================
    ÍCONE
    ==========================================================
*/

.feature-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 26px;

    border-radius: 17px;

    background: rgba(245, 88, 53, 0.14);

    color: #ff7a55;

    font-size: 22px;

    box-shadow:
        0 8px 20px rgba(245, 88, 53, 0.10);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


/*
    Pequeno efeito no ícone
*/

.feature-card:hover .feature-icon {
    transform: scale(1.06);

    background: #f55835;

    color: #ffffff;
}


/*
    ==========================================================
    TÍTULO DO CARD
    ==========================================================
*/

.feature-card h3 {
    max-width: 240px;

    margin: 0 0 13px;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 800;

    letter-spacing: -0.025em;

    transition: color 0.25s ease;
}


/*
    ==========================================================
    TEXTO DO CARD
    ==========================================================
*/

.feature-card p {
    max-width: 235px;

    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;
    line-height: 1.55;

    font-weight: 400;

    transition: color 0.25s ease;
}


/*
    Textos no hover
*/

.feature-card:hover h3 {
    color: #111827;
}

.feature-card:hover p {
    color: #6b7280;
}


/*
    ==========================================================
    NOTEBOOK MENOR
    ==========================================================
*/

@media (max-width: 1199px) {

    .differentials-grid {
        gap: 16px;
    }

    .feature-card {
        min-height: 300px;

        padding: 34px 23px;
    }

}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

        margin-top: 58px;
    }

    .feature-card {
        min-height: 270px;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .differentials-header .section-label {
        margin-bottom: 22px;

        font-size: 12px;

        letter-spacing: 0.23em;
    }

    .differentials-header p {
        margin-top: 22px;

        font-size: 16px;
        line-height: 1.55;
    }

    .differentials-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 44px;
    }

    .feature-card {
        min-height: 250px;

        padding: 34px 26px;

        border-radius: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

}


/*
    ==========================================================
    EMPRESAS / LOGOS
    ==========================================================
*/

.companies-section {
    overflow: hidden;

    background: #ffffff;
}


/*
    ==========================================================
    CABEÇALHO
    ==========================================================
*/

.companies-header {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.companies-header .section-label {
    margin-bottom: 28px;

    color: var(--orange);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.companies-header p {
    max-width: 600px;

    margin: 26px auto 0;

    color: #827c76;

    font-size: 17px;
    line-height: 1.6;
}


/*
    ==========================================================
    CARROSSEL DE LOGOS
    ==========================================================
*/

.companies-marquee {
    position: relative;

    width: 100%;

    /*
        Reduzi um pouco o margin-top para compensar
        o padding interno criado para o hover.
    */
    margin-top: 66px;

    /*
        Mantém o carrossel escondendo o excesso lateral,
        mas agora com respiro vertical para o card não cortar
        quando sobe no hover.
    */
    overflow: hidden;

    padding-top: 18px;
    padding-bottom: 24px;
}


/*
    Degradês laterais para o carrossel sumir suavemente
    nas bordas da tela.
*/

.companies-marquee::before,
.companies-marquee::after {
    content: "";

    position: absolute;
    top: 0;

    z-index: 2;

    width: 160px;
    height: 100%;

    pointer-events: none;
}

.companies-marquee::before {
    left: 0;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.companies-marquee::after {
    right: 0;

    background: linear-gradient(
        270deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}


/*
    ==========================================================
    TRILHO QUE SE MOVE
    ==========================================================
*/

.companies-track {
    display: flex;

    align-items: center;

    width: max-content;

    gap: 24px;

    animation: companiesScroll 34s linear infinite;
}


/*
    Pausa o movimento ao passar o mouse.
*/

.companies-marquee:hover .companies-track {
    animation-play-state: paused;
}


/*
    ==========================================================
    BOX DO LOGO
    ==========================================================
*/

.company-logo {
    width: 220px;
    height: 120px;

    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 28px 34px;

    border: 1px solid rgba(15, 40, 25, 0.08);

    border-radius: 24px;

    background: #071425;

    text-decoration: none;

    /*
        Importante:
        evita que pequenos serrilhados apareçam
        durante o movimento e hover.
    */
    will-change: transform;

    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease;
}


/*
    Logo dentro do box.
*/

.company-logo img {
    display: block;

    max-width: 100%;
    max-height: 58px;

    object-fit: contain;

    filter: grayscale(1);
    opacity: 0.72;

    transition:
        filter 0.24s ease,
        opacity 0.24s ease,
        transform 0.24s ease;
}


/*
    ==========================================================
    HOVER
    ==========================================================
*/

.company-logo:hover {
    transform: translateY(-4px);

    background: #000000;

    border-color: rgba(245, 88, 53, 0.28);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.08);
}

.company-logo:hover img {
    filter: grayscale(0);
    opacity: 1;

    transform: scale(1.03);
}


/*
    ==========================================================
    ANIMAÇÃO INFINITA
    ==========================================================
*/

@keyframes companiesScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .companies-marquee {
        margin-top: 50px;

        padding-top: 16px;
        padding-bottom: 22px;
    }

    .company-logo {
        width: 190px;
        height: 105px;

        padding: 24px 28px;
    }

    .companies-marquee::before,
    .companies-marquee::after {
        width: 90px;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .companies-header .section-label {
        margin-bottom: 22px;

        font-size: 12px;

        letter-spacing: 0.22em;
    }

    .companies-header p {
        margin-top: 22px;

        font-size: 15.5px;
        line-height: 1.6;
    }

    .companies-marquee {
        margin-top: 36px;

        padding-top: 14px;
        padding-bottom: 20px;
    }

    .companies-track {
        gap: 14px;

        animation-duration: 26s;
    }

    .company-logo {
        width: 155px;
        height: 92px;

        padding: 20px 24px;

        border-radius: 18px;
    }

    .company-logo img {
        max-height: 48px;
    }

    .company-logo:hover {
        transform: translateY(-3px);
    }

    .companies-marquee::before,
    .companies-marquee::after {
        width: 44px;
    }

}


/*
    ==========================================================
    COMPROMISSO - JM CFTV
    ==========================================================
*/

.commitment-section {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 16% 12%,
            rgba(245, 88, 53, 0.18) 0%,
            rgba(245, 88, 53, 0.05) 30%,
            rgba(245, 88, 53, 0) 58%
        ),
        linear-gradient(
            135deg,
            #030a14 0%,
            #061222 52%,
            #081a30 100%
        );
}


/*
    ==========================================================
    CABEÇALHO
    ==========================================================
*/

.commitment-header {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.commitment-header .section-label {
    margin-bottom: 28px;

    color: #ff7a55;

    font-size: 12px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.commitment-header .intro-title {
    color: #ffffff;
}


/*
    ==========================================================
    LISTA PRINCIPAL
    ==========================================================
*/

.commitment-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    width: 100%;

    margin-top: 82px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(10px);
}


/*
    ==========================================================
    ITEM
    ==========================================================
*/

.commitment-item {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 22px;

    padding: 34px 28px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.10);

    background: transparent;

    transition:
        background 0.22s ease,
        transform 0.22s ease;
}

.commitment-item:last-child {
    border-right: none;
}


/*
    ==========================================================
    ÍCONE
    ==========================================================
*/

.commitment-item i {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: rgba(245, 88, 53, 0.14);

    color: #ff7a55;

    font-size: 22px;
    line-height: 1;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}


/*
    ==========================================================
    TEXTO
    ==========================================================
*/

.commitment-item span {
    max-width: 235px;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 750;

    letter-spacing: -0.02em;
}


/*
    ==========================================================
    HOVER
    ==========================================================
*/

.commitment-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.commitment-item:hover i {
    transform: scale(1.08);

    background: #f55835;

    color: #ffffff;
}

.commitment-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.commitment-item:hover {
    text-decoration: none;
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .commitment-section {
        padding: 86px 0;
    }

    .commitment-list {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 60px;
    }

    .commitment-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .commitment-item:nth-child(2n) {
        border-right: none;
    }

    .commitment-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .commitment-section {
        padding: 72px 0;
    }

    .commitment-header .section-label {
        margin-bottom: 22px;

        font-size: 12px;

        letter-spacing: 0.22em;
    }


    .commitment-list {
        grid-template-columns: 1fr;

        margin-top: 44px;

        border-radius: 22px;
    }

    .commitment-item {
        min-height: 155px;

        padding: 30px 22px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .commitment-item:nth-child(2n) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .commitment-item:last-child {
        border-bottom: none;
    }

    .commitment-item span {
        font-size: 16px;
    }

}


/*
    ==========================================================
    CONTATO
    ==========================================================
*/

.contact-section {
    padding: 0 0 86px;
    background: #ffffff;
    padding-top: 86px;
}

.contact-box {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 42px;

    padding: 64px 70px;

    border-radius: 34px;

    background:
        linear-gradient(
            135deg,
            #030a14 0%,
            #061222 52%,
            #081a30 100%
        );

    color: #ffffff;
}

.contact-box::before {
    content: "";

    position: absolute;
    right: -80px;
    top: -100px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(245, 88, 53, 0.20);
    filter: blur(20px);

    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 2;

    max-width: 680px;
}

.contact-content .section-label {
    display: inline-flex;

    margin-bottom: 20px;

    color: var(--orange-light);

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.contact-content p {
    max-width: 560px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    line-height: 1.65;
}


/*
    BOTÕES
*/

.contact-actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 12px;

    min-width: 240px;
}

.contact-button,
.contact-phone {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.02em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.contact-button {
    background: var(--orange);
    color: #ffffff;

    box-shadow: 0 16px 34px rgba(245, 88, 53, 0.26);
}

.contact-button:hover {
    color: #ffffff;
    transform: translateY(-2px);

    box-shadow: 0 22px 44px rgba(245, 88, 53, 0.34);
}

.contact-phone {
    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;
}

.contact-phone:hover {
    border-color: rgba(255, 255, 255, 0.34);

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    transform: translateY(-2px);
}

.contact-button i,
.contact-phone i {
    font-size: 16px;
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .contact-box {
        grid-template-columns: 1fr;

        gap: 34px;

        padding: 58px 46px;

        text-align: center;
    }

    .contact-content {
        max-width: 100%;

        margin: 0 auto;
    }

    .contact-content h2,
    .contact-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-actions {
        width: 100%;
        max-width: 330px;

        margin: 0 auto;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .contact-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .contact-box {
        gap: 30px;

        padding: 48px 24px;

        border-radius: 26px;
    }

    .contact-content .section-label {
        margin-bottom: 18px;

        font-size: 12px;

        letter-spacing: 0.22em;
    }

    .contact-content p {
        margin-top: 20px;

        font-size: 15.5px;
        line-height: 1.6;
    }

    .contact-actions {
        max-width: 100%;
    }

    .contact-button,
    .contact-phone {
        width: 100%;

        min-height: 52px;
    }

}

/*
    ==========================================================
    FOOTER - JM CFTV
    ==========================================================
*/

.footer {
    position: relative;

    overflow: hidden;

    padding: 82px 0 32px;

    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(245, 88, 53, 0.16) 0%,
            rgba(245, 88, 53, 0.04) 28%,
            rgba(245, 88, 53, 0) 56%
        ),
        linear-gradient(
            135deg,
            #030a14 0%,
            #061222 52%,
            #081a30 100%
        );

    color: rgba(255, 255, 255, 0.66);
}

.footer::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 56px 56px;

    opacity: 0.12;

    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}


/*
    ==========================================================
    GRID PRINCIPAL
    ==========================================================
*/

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;

    gap: 54px;
}


/*
    ==========================================================
    MARCA
    ==========================================================
*/

.footer-brand h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 30px;
    line-height: 1;

    font-weight: 850;

    letter-spacing: -0.045em;
}

.footer-brand h3 span {
    color: var(--orange);
}

.footer-brand p {
    max-width: 390px;

    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;
    line-height: 1.7;
}


/*
    ==========================================================
    REDES SOCIAIS
    ==========================================================
*/

.footer-social {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 26px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;

    font-size: 17px;

    text-decoration: none;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);

    background: var(--orange);

    border-color: var(--orange);

    color: #ffffff;
}


/*
    ==========================================================
    COLUNAS
    ==========================================================
*/

.footer-column h4 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column a,
.footer-column span {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;
    line-height: 1.45;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--orange-light);

    transform: translateX(3px);
}

.footer-contact i {
    color: var(--orange-light);

    font-size: 15px;
}


/*
    ==========================================================
    RODAPÉ INFERIOR
    ==========================================================
*/

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    margin-top: 62px;
    padding-top: 26px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.42);

    font-size: 13px;
    line-height: 1.5;
}


/*
    ==========================================================
    TABLET
    ==========================================================
*/

@media (max-width: 991px) {

    .footer {
        padding: 72px 0 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 44px 34px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 560px;
    }

}


/*
    ==========================================================
    MOBILE
    ==========================================================
*/

@media (max-width: 575px) {

    .footer {
        padding: 62px 0 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-brand h3 {
        font-size: 28px;
    }

    .footer-column h4 {
        margin-bottom: 18px;
    }

    .footer-column ul {
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;

        margin-top: 46px;

        font-size: 12.5px;
    }

}


/*
    ==========================================================
    RESPONSIVO TABLET / MOBILE
    ==========================================================
*/

@media (max-width: 991px) {
    /*
        Correção importante:
        evita que o navbar fique alguns pixels mais largo que o site.
    */

    .site-header {
        width: 100%;
        max-width: 100%;
        padding: 14px 0;
        overflow-x: clip;
    }

    .site-header.is-scrolled {
        padding: 14px 0;
    }

    .site-header .container,
    .site-header .container-custom {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .site-header .navbar {
        width: 100%;
        max-width: 100%;
    }

    .site-header .navbar-collapse {
        width: 100%;
        max-width: 100%;

        margin-top: 16px;
        padding: 20px;

        border-radius: 18px;
        background: rgba(7, 23, 15, 0.97);
    }

    .site-header .navbar-nav {
        width: 100%;
        max-width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .site-header .nav-item,
    .site-header .nav-link {
        width: 100%;
    }

    .site-header .nav-link {
        padding: 11px 0 !important;
    }

    .btn-header {
        width: 100%;
        max-width: 100%;
        margin-top: 12px;
    }

    .hero-content {
        padding-top: 150px;
        max-width: 100%;
    }

    .section-spacing {
        padding: 78px 0;
    }

    .image-card img,
    .image-card.tall img,
    .campaign-image img {
        height: 390px;
    }

    .commitment-box {
        padding: 42px;
    }

    .commitment-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*
    ==========================================================
    RESPONSIVO CELULAR PEQUENO
    ==========================================================
*/

@media (max-width: 575px) {
    .hero {
        min-height: 92vh;
        background-position: center right;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.06;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-main,
    .btn-outline-white {
        width: 100%;
    }

    .hero-features {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        gap: 12px 16px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .hero-features span {
        justify-content: center;
        flex: 0 1 auto;

        font-size: 13.5px;
        line-height: 1.2;

        white-space: nowrap;
    }

    .section-text,
    .contact-section p {
        font-size: 16px;
    }

    .solution-card,
    .benefit-card,
    .feature-card {
        padding: 26px;
    }

    .project-card img {
        height: 220px;
    }

    .commitment-box {
        padding: 32px 24px;
    }

    .commitment-list {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 56px;
    }
}

@media (max-width: 390px) {
    .hero-features {
        gap: 10px 12px;
    }

    .hero-features span {
        font-size: 13px;
    }
}