:root {
    --color-bg: #030b11;
    --color-header: #02080c;
    --color-primary: #006bff;
    --color-primary-light: #008cff;
    --color-text: #f2f5f8;
    --color-text-secondary: #d1d8de;
    --color-border: #1b2a34;
    --color-zap: #22c350;
}



body.light-mode {
    --color-bg: #f5f7fa;
    --color-header: #ffffff;
    --color-primary: #006bff;
    --color-primary-light: #008cff;

    --color-text: #111827;
    --color-text-secondary: #4b5563;
    --color-border: #dbe2e8;
    --color-zap: #22c350;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
}

section {
    scroll-margin-top: 80px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 62px;
    z-index: 99;

    display: flex;
    align-items: center;

    padding: 0 4.5%;

    background: var(--color-header);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    position: relative;

    width: 105px;
    height: 50px;

    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo img:first-child {
    width: 105px;
    height: auto;
}

.logo-o {
    position: absolute;

    width: 21px !important;
    height: 21px !important;

    left: 58px;
    top: 8px;

    object-fit: contain;

    animation: girarO 4s linear infinite;
}

@keyframes girarO {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.navbar {
    margin-left: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 38px;

    list-style: none;
}

.menu-link {
    position: relative;

    display: inline-block;

    padding: 22px 0;

    color: var(--color-text);

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--color-primary-light);
}

.menu-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 12px;

    width: 0;
    height: 2px;

    margin: auto;

    background: var(--color-primary-light);

    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.btn-whatsapp {
    margin-left: 45px;

    padding: 11px 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--color-zap);
    color: #fff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}


/* =========================================================
   HERO / CABEÇALHO
========================================================= */

.cabecalho {
    position: relative;

    height: 483px;

    padding: 62px 4.5% 0;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            #030b11 0%,
            #030b11 30%,
            rgba(3, 11, 17, 0.95) 43%,
            rgba(3, 11, 17, 0.55) 62%,
            rgba(3, 11, 17, 0) 100%
        ),
        url("imagens/img.rack.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.servico-controle-acesso {
    position: relative;

    height: 483px;

    padding: 62px 4.5% 0;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            #030b11 0%,
            #030b11 30%,
            rgba(3, 11, 17, 0.95) 43%,
            rgba(3, 11, 17, 0.55) 62%,
            rgba(3, 11, 17, 0) 100%
        ),
        url("imagens/controle_acesso\ -\ png.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.servico-cabeamento {
    background-image:
        linear-gradient(
            90deg,
            #030b11 0%,
            #030b11 30%,
            rgba(3, 11, 17, 0.95) 43%,
            rgba(3, 11, 17, 0.55) 62%,
            rgba(3, 11, 17, 0) 100%
        ),
        url("imagens/img.rack.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 18px;

    color: var(--color-text);

    font-size: 44px;
    font-weight: 700;

    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--color-primary-light);
}

.hero-content p {
    max-width: 410px;

    margin-bottom: 26px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    background: var(--color-zap);
    color: #fff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--color-text);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}

.btn-secondary span {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #8d9aa4;
    border-radius: 50%;

    font-size: 20px;

    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--color-primary-light);
}

.btn-secondary:hover span {
    border-color: var(--color-primary-light);
}


/* =========================================================
   SOBRE
========================================================= */

.sobre {
    padding: 70px 7%;
    background: var(--color-bg);
}

.sobre-conteudo {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}

.sobre-texto {
    max-width: 520px;
}

.sobre-label {
    display: block;

    margin-bottom: 12px;

    color: var(--color-primary-light);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
}

.sobre-texto h2 {
    margin-bottom: 22px;

    font-size: 32px;
    line-height: 1.2;
}

.sobre-texto h2 span {
    display: block;
    color: var(--color-primary-light);
}

.sobre-texto p {
    margin-bottom: 18px;

    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.8;
}

.sobre-texto strong {
    color: var(--color-primary-light);
}

.sobre-imagem {
    position: relative;
}

.sobre-imagem > img {
    display: block;

    width: 100%;
    height: 400px;

    object-fit: cover;

    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.sobre-card {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 205px;

    padding: 16px;

    background: rgba(3, 11, 17, 0.95);

    border: 1px solid var(--color-primary);
    border-radius: 9px;
}

.sobre-card div + div {
    margin-top: 12px;
    padding-top: 12px;

    border-top: 1px solid var(--color-border);
}

.sobre-card strong {
    color: var(--color-primary-light);
    font-size: 11px;
}

.sobre-card p {
    margin-top: 4px;

    color: var(--color-text);

    font-size: 10px;
}


/* =========================================================
   PROJETOS / SERVIÇOS
========================================================= */

.projetos {
    padding: 45px 4.5%;
    background: var(--color-bg);
}

.projetos-titulo {
    margin-bottom: 28px;

    color: var(--color-text);

    font-size: 25px;
    font-weight: 600;

    text-align: center;
    text-transform: uppercase;
}

.projetos-titulo::after {
    content: "";

    display: block;

    width: 60px;
    height: 2px;

    margin: 8px auto 0;

    background: var(--color-primary-light);
}

.projetos-caixas {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    width: 100%;
}

.projetos-card {
    display: block;

    padding: 15px;

    text-align: center;
    text-decoration: none;
    color: inherit;

    cursor: pointer;

    background: #0e1620;

    border-radius: 12px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.projetos-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.projetos-card img {
    display: block;

    width: 100%;
    height: 112px;

    object-fit: cover;

    border-radius: 8px;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.projetos-card:hover img {
    transform: scale(1.03);
    filter: brightness(1.08);
}

.info-projetos {
    margin-top: 9px;

    color: #006bff;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

    transition: color 0.3s ease;
}

.projetos-card:hover .info-projetos {
    color: var(--color-primary-light);
}

.saiba-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 12px;

    padding: 8px 16px;

    background: var(--color-primary);

    border: 1px solid var(--color-primary);
    border-radius: 5px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.3s ease;
}

.projetos-card:hover .saiba-mais {
    background: var(--color-primary-light);

    border-color: var(--color-primary-light);

    transform: translateX(5px);
}


/* =========================================================
   DIFERENCIAIS
========================================================= */

.diferenciais {
    margin: 30px 0;

    padding: 28px 3%;

    background: #061017;

    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.diferenciais h2 {
    margin-bottom: 20px;

    color: var(--color-text);

    font-size: 20px;
    font-weight: 600;

    text-align: center;
}

.diferenciais h2 span {
    color: var(--color-primary-light);
}

.diferenciais-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.diferencial {
    min-height: 90px;

    padding: 8px 25px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-right: 1px solid var(--color-border);
}

.diferencial:last-child {
    border-right: none;
}

.diferencial img {
    width: 48px;
    height: 48px;

    object-fit: contain;
}

.diferencial h3 {
    margin-bottom: 6px;

    color: var(--color-text);

    font-size: 12px;
}

.diferencial p {
    color: var(--color-text-secondary);

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    margin-top: 45px;

    padding: 28px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            90deg,
            #061b31,
            #003b7a
        );
}

.cta-text h2 {
    margin-bottom: 5px;

    font-size: 21px;
}

.cta-text p {
    color: var(--color-text-secondary);

    font-size: 13px;
}

.cta .btn-whatsapp {
    margin-left: 0;
}

.cta .btn-whatsapp img {
    width: 22px;
    height: 22px;

    margin-right: 1px;

    object-fit: contain;
}


/* =========================================================
   CABEAMENTO
========================================================= */

.cabeamento-conteudo {
    width: 100%;

    padding: 70px 7%;

    background: var(--color-bg);

    text-align: center;
}

.cabeamento-texto {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
}

.cabeamento-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.cabeamento-texto h2 span {
    display: block;

    color: var(--color-primary-light);
}

.cabeamento-texto p {
    max-width: 850px;

    margin: 0 auto 60px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.cabeamento-texto p span {
    color: var(--color-primary-light);
}


/* =========================================================
   CARDS DE BENEFÍCIOS
========================================================= */

.beneficios-container {
    width: 100%;

    padding: 11 7% 70px;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 22px;

    background: var(--color-bg);
}

.beneficio-card {
    padding: 24px;

    background: #eaf3ff !important;

    border-radius: 20px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.18);
}

.beneficio-icone {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #00000000;
    border: 1px solid #dbe7f5;
    border-radius: 12px;
}

.beneficio-icone img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.beneficio-icone img {
    width: 30px;
    height: 30px;

    object-fit: contain;
}

.beneficio-card h3 {
    margin-bottom: 10px;

    color: #202938;

    font-size: 20px;
    font-weight: 600;
}

.beneficio-card p {
    color: #63748c;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SEGUNDO MODELO DE CARDS
========================================================= */

.beneficios-container2 {
    width: 100%;

    padding: 0 6% 70px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    background: var(--color-bg);
}

.beneficio-card2 {
    padding: 24px;

    /*
       FUNDO SÓLIDO:
       evita que os cards fiquem transparentes
    */
    background: #f2f5f8 !important;

    border-radius: 15px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.beneficio-card2:hover {
    transform: translateY(-8px);

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.18);
}

.beneficio-icone2 {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(0, 107, 255, 0.10);
}

.beneficio-icone2 img {
    width: 32px;
    height: 32px;

    object-fit: contain;

    opacity: 1;
}

.beneficio-card2 h3 {
    margin-bottom: 10px;

    color: #202938;

    font-size: 20px;
    font-weight: 600;
}

.beneficio-card2 p {
    color: #63748c;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   LISTA DE BENEFÍCIOS
========================================================= */

.lista-beneficios {
    list-style: none;

    padding: 0;
    margin-top: 30px;

    text-align: left;
}

.lista-beneficios li {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    color: var(--color-text-secondary);

    font-size: 16px;
}

.check {
    min-width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-primary);

    color: white;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   MONITORAMENTO
========================================================= */

.monitoramento-intro {
    width: 100%;

    padding: 80px 7% 50px;

    background: var(--color-bg);

    text-align: center;
}

.monitoramento-intro-texto {
    max-width: 850px;

    margin: 0 auto;
}

.monitoramento-intro-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.monitoramento-intro-texto h2 span {
    color: var(--color-primary-light);
}

.monitoramento-intro-texto p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.monitoramento-cards {
    position: relative;

    width: 100%;

    padding: 40px 7% 100px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 60px;

    align-items: center;

    background: var(--color-bg);
}

.monitoramento-cards::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 16%;
    right: 16%;

    height: 2px;

    background: var(--color-primary);

    z-index: 0;
}

.monitoramento-cards-titulo {
    grid-column: 1 / -1;

    text-align: center;
}

.monitoramento-cards-titulo h2 {
    margin: 0;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.monitoramento-cards-titulo h2 span {
    color: var(--color-primary-light);
}

.monitoramento-card {
    position: relative;

    z-index: 2;

    padding: 28px;

    background: #f2f5f8 !important;

    border-radius: 15px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.monitoramento-card:nth-child(1),
.monitoramento-card:nth-child(3) {
    transform: translateY(-45px);
}

.monitoramento-card:nth-child(2) {
    transform: translateY(45px);
}

.monitoramento-card:nth-child(1):hover,
.monitoramento-card:nth-child(3):hover {
    transform: translateY(-53px);
}

.monitoramento-card:nth-child(2):hover {
    transform: translateY(37px);
}

.monitoramento-card h3 {
    margin-bottom: 10px;

    color: #202938;

    font-size: 20px;
    font-weight: 600;

    opacity: 1;
}

.monitoramento-card p {
    color: #63748c;

    font-size: 14px;
    line-height: 1.7;

    opacity: 1;
}

.monitoramento-card .beneficio-icone2 {
    width: 60px;
    height: 60px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;

    border-radius: 12px;
}

.monitoramento-card .beneficio-icone2 img {
    width: 36px;
    height: 36px;

    object-fit: contain;

    opacity: 1;

    display: block;
}

.monitoramento-info {
    width: 100%;

    padding: 90px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: var(--color-bg);
}

.monitoramento-info-texto {
    max-width: 650px;
}

.monitoramento-info-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.monitoramento-info-texto h2 span {
    display: block;

    color: var(--color-primary-light);
}

.monitoramento-info-texto p {
    margin-bottom: 30px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.monitoramento-info-imagem {
    width: 100%;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f5f8;

    border-radius: 20px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}

.monitoramento-info-imagem img {
    width: 100%;
    height: 350px;

    display: block;

    object-fit: cover;

    border-radius: 12px;
}


/* =========================================================
   CONTROLE DE ACESSO
========================================================= */



.acesso-cartas {
    width: 100%;

    padding: 80px 7% 100px;

    background: var(--color-bg);
}

.acesso-cartas-titulo {
    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;
}

.acesso-cartas-titulo h2 {
    margin-bottom: 18px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.acesso-cartas-titulo h2 span {
    display: block;

    color: var(--color-primary-light);
}

.acesso-cartas-titulo p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.7;
}

.acesso-cartas-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.acesso-carta {
    overflow: hidden;

    background: #f2f5f8 !important;

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.acesso-carta:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.22);
}

.acesso-carta-imagem {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    overflow: hidden;
}

.acesso-carta-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.acesso-carta-conteudo {
    min-height: 190px;

    padding: 28px;
}

.acesso-carta-conteudo h3 {
    margin-bottom: 12px;

    color: #202938;

    font-size: 21px;
    font-weight: 600;
}

.acesso-carta-conteudo p {
    color: #63748c;

    font-size: 14px;
    line-height: 1.8;
}

.acesso-info {
    width: 100%;

    padding: 90px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: var(--color-bg);
}

.acesso-info-texto {
    max-width: 650px;
}

.acesso-info-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.acesso-info-texto h2 span {
    display: block;

    color: var(--color-primary-light);
}

.acesso-info-texto p {
    margin-bottom: 30px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.acesso-info-imagem {
    width: 100%;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f5f8;

    border-radius: 20px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}

.acesso-info-imagem img {
    width: 100%;
    height: 350px;

    display: block;

    object-fit: cover;

    border-radius: 12px;
}


/* =========================================================
   RACKS
========================================================= */

.racks-intro {
    width: 100%;

    padding: 80px 7% 50px;

    background: var(--color-bg);

    text-align: center;
}

.racks-intro-texto {
    max-width: 850px;

    margin: 0 auto;
}

.racks-intro-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.racks-intro-texto h2 span {
    color: var(--color-primary-light);
}

.racks-intro-texto p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.racks-cartas {
    width: 100%;

    padding: 30px 7% 90px;

    background: var(--color-bg);
}

.racks-cartas-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.racks-carta {
    overflow: hidden;

    background: #f2f5f8 !important;

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.racks-carta:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.22);
}

.racks-carta-imagem {
    width: 100%;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );
}

.racks-carta-imagem img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.racks-carta-conteudo {
    min-height: 190px;

    padding: 28px;
}

.racks-carta-conteudo h3 {
    margin-bottom: 12px;

    color: #202938;

    font-size: 21px;
    font-weight: 600;
}

.racks-carta-conteudo p {
    color: #63748c;

    font-size: 14px;
    line-height: 1.8;
}

.racks-processo {
    width: 100%;

    padding: 90px 7% 100px;

    background: #02080c;
}

.racks-processo-titulo {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}

.racks-processo-titulo h2 {
    margin-bottom: 18px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.racks-processo-titulo h2 span {
    color: var(--color-primary-light);
}

.racks-processo-titulo p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.racks-processo-container {
    position: relative;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

.racks-processo-linha {
    position: absolute;

    top: 31px;
    left: 16%;
    right: 16%;

    height: 2px;

    background: var(--color-primary);

    opacity: 0.6;
}

.racks-processo-item {
    position: relative;

    z-index: 2;

    text-align: center;
}

.racks-processo-numero {
    width: 64px;
    height: 64px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-bg);

    border: 2px solid var(--color-primary);
    border-radius: 50%;

    color: var(--color-primary-light);

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 0 0 8px #02080c;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.racks-processo-item:hover .racks-processo-numero {
    transform: scale(1.1);

    background: var(--color-primary);

    color: var(--color-text);
}

.racks-processo-conteudo h3 {
    margin-bottom: 12px;

    color: var(--color-text);

    font-size: 21px;
    font-weight: 600;
}

.racks-processo-conteudo p {
    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SOLUÇÕES PERSONALIZADAS
========================================================= */

.servico-solucoes {
    background-image:
        linear-gradient(
            90deg,
            #030b11 0%,
            #030b11 30%,
            rgba(3, 11, 17, 0.95) 43%,
            rgba(3, 11, 17, 0.55) 62%,
            rgba(3, 11, 17, 0) 100%
        ),
        url("imagens/solucoes_perso\ -\ png.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

.solucoes-intro {
    width: 100%;

    padding: 80px 7% 50px;

    background: var(--color-bg);

    text-align: center;
}

.solucoes-intro-texto {
    max-width: 850px;

    margin: 0 auto;
}

.solucoes-intro-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.solucoes-intro-texto h2 span {
    color: var(--color-primary-light);
}

.solucoes-intro-texto p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.solucoes-cartas {
    width: 100%;

    padding: 30px 7% 90px;

    background: var(--color-bg);
}

.solucoes-cartas-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.solucoes-carta {
    overflow: hidden;

    background: #f2f5f8 !important;

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.solucoes-carta:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.22);
}

.solucoes-carta-imagem {
    width: 100%;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );
}

.solucoes-carta-imagem img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.solucoes-carta-conteudo {
    min-height: 190px;

    padding: 28px;
}

.solucoes-carta-conteudo h3 {
    margin-bottom: 12px;

    color: #202938;

    font-size: 21px;
    font-weight: 600;
}

.solucoes-carta-conteudo p {
    color: #63748c;

    font-size: 14px;
    line-height: 1.8;
}

.solucoes-processo {
    width: 100%;

    padding: 90px 7% 100px;

    background: #02080c;
}

.solucoes-processo-titulo {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}

.solucoes-processo-titulo h2 {
    margin-bottom: 18px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.solucoes-processo-titulo h2 span {
    color: var(--color-primary-light);
}

.solucoes-processo-titulo p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.solucoes-processo-container {
    position: relative;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

.solucoes-processo-linha {
    position: absolute;

    top: 31px;
    left: 16%;
    right: 16%;

    height: 2px;

    background: var(--color-primary);

    opacity: 0.6;
}

.solucoes-processo-item {
    position: relative;

    z-index: 2;

    text-align: center;
}

.solucoes-processo-numero {
    width: 64px;
    height: 64px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-bg);

    border: 2px solid var(--color-primary);
    border-radius: 50%;

    color: var(--color-primary-light);

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 0 0 8px #02080c;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.solucoes-processo-item:hover .solucoes-processo-numero {
    transform: scale(1.1);

    background: var(--color-primary);

    color: var(--color-text);
}

.solucoes-processo-conteudo h3 {
    margin-bottom: 12px;

    color: var(--color-text);

    font-size: 21px;
    font-weight: 600;
}

.solucoes-processo-conteudo p {
    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.8;
}

.solucoes-info {
    width: 100%;

    padding: 90px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: var(--color-bg);
}

.solucoes-info-texto {
    max-width: 650px;
}

.solucoes-info-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.solucoes-info-texto h2 span {
    display: block;

    color: var(--color-primary-light);
}

.solucoes-info-texto p {
    margin-bottom: 30px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.solucoes-info-imagem {
    width: 100%;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f5f8;

    border-radius: 20px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}

.solucoes-info-imagem img {
    width: 100%;
    height: 350px;

    display: block;

    object-fit: cover;

    border-radius: 12px;
}


/* =========================================================
   INFRAESTRUTURA DE REDES
========================================================= */

.servico-redes {
    background-image:
        linear-gradient(
            90deg,
            #030b11 0%,
            #030b11 30%,
            rgba(3, 11, 17, 0.95) 43%,
            rgba(3, 11, 17, 0.55) 62%,
            rgba(3, 11, 17, 0) 100%
        ),
        url("imagens/infraestrutura_de_redes.png");

    background-size: cover;

    background-position: center right;

    background-repeat: no-repeat;
}

.redes-intro {
    width: 100%;

    padding: 80px 7% 50px;

    background: var(--color-bg);

    text-align: center;
}

.redes-intro-texto {
    max-width: 850px;

    margin: 0 auto;
}

.redes-intro-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.redes-intro-texto h2 span {
    color: var(--color-primary-light);
}

.redes-intro-texto p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.redes-cartas {
    width: 100%;

    padding: 30px 7% 90px;

    background: var(--color-bg);
}

.redes-cartas-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.redes-carta {
    overflow: hidden;

    background: #f2f5f8 !important;

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.redes-carta:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.22);
}

.redes-carta-imagem {
    width: 100%;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );
}

.redes-carta-imagem img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.redes-carta-conteudo {
    min-height: 190px;

    padding: 28px;
}

.redes-carta-conteudo h3 {
    margin-bottom: 12px;

    color: #202938;

    font-size: 21px;
    font-weight: 600;
}

.redes-carta-conteudo p {
    color: #63748c;

    font-size: 14px;
    line-height: 1.8;
}

.redes-processo {
    width: 100%;

    padding: 90px 7% 100px;

    background: #02080c;
}

.redes-processo-titulo {
    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}

.redes-processo-titulo h2 {
    margin-bottom: 18px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.redes-processo-titulo h2 span {
    color: var(--color-primary-light);
}

.redes-processo-titulo p {
    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.redes-processo-container {
    position: relative;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

.redes-processo-linha {
    position: absolute;

    top: 31px;
    left: 16%;
    right: 16%;

    height: 2px;

    background: var(--color-primary);

    opacity: 0.6;
}

.redes-processo-item {
    position: relative;

    z-index: 2;

    text-align: center;
}

.redes-processo-numero {
    width: 64px;
    height: 64px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-bg);

    border: 2px solid var(--color-primary);
    border-radius: 50%;

    color: var(--color-primary-light);

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 0 0 8px #02080c;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.redes-processo-item:hover .redes-processo-numero {
    transform: scale(1.1);

    background: var(--color-primary);

    color: var(--color-text);
}

.redes-processo-conteudo h3 {
    margin-bottom: 12px;

    color: var(--color-text);

    font-size: 21px;
    font-weight: 600;
}

.redes-processo-conteudo p {
    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.8;
}

.redes-info {
    width: 100%;

    padding: 90px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    background: var(--color-bg);
}

.redes-info-texto {
    max-width: 650px;
}

.redes-info-texto h2 {
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}

.redes-info-texto h2 span {
    display: block;

    color: var(--color-primary-light);
}

.redes-info-texto p {
    margin-bottom: 30px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}

.redes-info-imagem {
    width: 100%;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f5f8;

    border-radius: 20px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}

.redes-info-imagem img {
    width: 100%;
    height: 350px;

    display: block;

    object-fit: cover;

    border-radius: 12px;
}


/* =========================================================
   CLIENTES
========================================================= */

.clientes {
    width: 100%;

    padding: 75px 7% 85px;

    background: var(--color-bg);

    text-align: center;

    border-top: 1px solid var(--color-border);
}

.clientes-titulo {
    max-width: 750px;

    margin: 0 auto 50px;
}

.clientes-titulo h2 {
    margin-bottom: 15px;

    color: var(--color-text);

    font-size: 30px;
    font-weight: 700;
}

.clientes-titulo h2 span {
    color: var(--color-primary-light);
}

.clientes-titulo p {
    color: var(--color-text-secondary);

    font-size: 15px;
    line-height: 1.7;
}

.clientes-logos {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    align-items: center;
}

.cliente-logo {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f5f8;
    border: 2px solid var(--color-primary-light);
    border-radius: 50%;

    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 140, 255, 0.15);
}


.cliente-logo:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 107, 255, 0.18);
}

.cliente-logo img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}


/* =========================================================
   CERTIFICAÇÃO
========================================================= */

.servico-certificacao {
    background-color: #030b11;

    background-image:
        linear-gradient(
            90deg,
            #030b11 0%,
            #030b11 18%,
            rgba(3, 11, 17, 0.98) 30%,
            rgba(3, 11, 17, 0.90) 40%,
            rgba(3, 11, 17, 0.65) 52%,
            rgba(3, 11, 17, 0.30) 67%,
            rgba(3, 11, 17, 0) 82%
        ),
        url("imagens/certificacao_f.png");

    background-size: 65% auto;

    background-position: right center;

    background-repeat: no-repeat;
}


/* =========================================================
   MONITORAMENTO - IMAGEM DO HERO
========================================================= */

.servico-monitoramento {
    background-color: #030b11;

    background-image:
        linear-gradient(
            90deg,
            #030b11 0%,
            #030b11 18%,
            rgba(3, 11, 17, 0.98) 30%,
            rgba(3, 11, 17, 0.90) 40%,
            rgba(3, 11, 17, 0.65) 52%,
            rgba(3, 11, 17, 0.30) 67%,
            rgba(3, 11, 17, 0) 82%
        ),
        url("imagens/monitoramento.png");

    background-size: 65% auto;

    background-position: right center;

    background-repeat: no-repeat;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;

    margin: 0;

    padding: 45px 6% 20px;

    background: #02080c;

    border-top: 1px solid var(--color-border);
}

.footer-container {
    width: 100%;

    margin: 0;

    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1fr;

    gap: 0;
}

.footer-brand {
    padding-right: 45px;
}

.logo-2 {
    position: relative;

    width: 145px;
    height: 65px;

    display: block;

    margin-bottom: 20px;

    text-decoration: none;
}

.logo-2 img:first-child {
    width: 145px;
    height: auto;

    display: block;
}

.logo-2 .logo-o {
    position: absolute;

    width: 30px !important;
    height: 32px !important;

    left: 80px;
    top: 2px;

    object-fit: contain;

    animation: girarOFooter 4s linear infinite;
}

@keyframes girarOFooter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-brand p {
    max-width: 330px;

    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.5;
}

.footer-coluna {
    min-height: 130px;

    padding-left: 25px;

    border-left: 1px solid var(--color-border);
}

.footer-coluna h3 {
    margin-bottom: 15px;

    color: var(--color-text);

    font-size: 12px;
    font-weight: 600;
}

.footer-coluna p {
    margin-bottom: 9px;

    color: var(--color-text-secondary);

    font-size: 11px;
}

.footer-coluna p img {
    width: 18px;
    height: 18px;

    margin-right: 7px;

    vertical-align: middle;

    object-fit: contain;
}

.redes-sociais a {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 12px;

    color: var(--color-text-secondary);

    font-size: 11px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.redes-sociais a:hover {
    color: var(--color-primary-light);
}

.redes-sociais a img {
    width: 20px;
    height: 20px;

    object-fit: contain;
}

.footer-bottom {
    grid-column: 1 / -1;

    margin-top: 35px;

    padding-top: 12px;

    border-top: 1px solid var(--color-border);

    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-secondary);

    font-size: 10px;
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

/* =========================================================
   RESPONSIVIDADE
========================================================= */

/* ---------- TABLETS / NOTEBOOKS PEQUENOS ---------- */

@media (max-width: 1200px) {

    .beneficios-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clientes-logos {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .cta-container {
        padding: 0;
    }
}


/* ---------- TABLETS ---------- */

@media (max-width: 1000px) {

    /* HEADER */

    .header {
        padding: 0 4%;
    }

    .menu {
        gap: 20px;
    }

    .menu-link {
        font-size: 13px;
    }

    .btn-whatsapp {
        margin-left: 20px;
    }


    /* HERO */

    .cabecalho,
    .servico-controle-acesso {
        min-height: 500px;
        height: auto;

        padding: 100px 6% 60px;
    }

    .hero-content {
        max-width: 560px;
    }

    .hero-content h1 {
        font-size: 40px;
    }


    /* PROJETOS */

    .projetos-caixas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* BENEFÍCIOS */

    .beneficios-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .beneficios-container2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* DIFERENCIAIS */

    .diferenciais-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .diferencial:nth-child(2) {
        border-right: none;
    }


    /* CARDS */

    .acesso-cartas-container,
    .racks-cartas-container,
    .solucoes-cartas-container,
    .redes-cartas-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* MONITORAMENTO */

    .monitoramento-cards {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .monitoramento-cards-titulo {
        grid-column: 1;
    }

    .monitoramento-cards::before {
        display: none;
    }

    .monitoramento-card:nth-child(1),
    .monitoramento-card:nth-child(2),
    .monitoramento-card:nth-child(3) {
        transform: none;
    }

    .monitoramento-card:nth-child(1):hover,
    .monitoramento-card:nth-child(2):hover,
    .monitoramento-card:nth-child(3):hover {
        transform: translateY(-8px);
    }


    /* PROCESSOS */

    .racks-processo-container,
    .solucoes-processo-container,
    .redes-processo-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .racks-processo-linha,
    .solucoes-processo-linha,
    .redes-processo-linha {
        display: none;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }


    /* CTA */

    .cta {
        padding: 25px 6%;
    }

    .cta-container {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 25px;
    }
}


/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 700px) {

    /* ---------- GERAL ---------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
    }

    section {
        scroll-margin-top: 70px;
    }

    img {
        max-width: 100%;
    }


    /* ---------- HEADER ---------- */

    .header {
        height: 60px;

        padding: 0 18px;
    }

    .logo {
        width: 90px;
        height: 45px;
    }

    .logo img:first-child {
        width: 90px;
    }

    .logo-o {
        width: 18px !important;
        height: 18px !important;

        left: 50px;
        top: 8px;
    }

    .navbar {
        margin-left: auto;
    }

    .menu {
        gap: 10px;
    }

    .menu-link {
        padding: 20px 0;

        font-size: 11px;
    }

    .menu-link::after {
        bottom: 10px;
    }

    /*
       Esconde apenas o botão do HEADER.
       O botão da CTA continua aparecendo.
    */

    .header .btn-whatsapp {
        display: none;
    }


    /* ---------- HERO ---------- */

    .cabecalho,
    .servico-controle-acesso {
        min-height: 560px;
        height: auto;

        padding: 100px 7% 65px;

        background-position: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        margin-bottom: 15px;

        font-size: 34px;
        line-height: 1.15;
    }

    .hero-content p {
        max-width: 100%;

        margin-bottom: 24px;

        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        gap: 15px;
    }

    .btn-primary {
        padding: 12px 19px;

        font-size: 13px;
    }

    .btn-secondary {
        font-size: 13px;
    }


    /* ---------- SOBRE ---------- */

    .sobre {
        padding: 55px 7%;
    }

    .sobre-conteudo {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sobre-texto {
        max-width: 100%;
    }

    .sobre-texto h2 {
        font-size: 27px;
    }

    .sobre-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sobre-imagem {
        margin-top: 5px;
    }

    .sobre-imagem > img {
        width: 100%;
        height: 300px;
    }

    .sobre-card {
        right: 12px;
        bottom: 12px;

        width: 180px;

        padding: 13px;
    }


    /* ---------- SERVIÇOS ---------- */

    .projetos {
        padding: 45px 6%;
    }

    .projetos-titulo {
        font-size: 22px;
    }

    .projetos-caixas {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .projetos-card {
        width: 100%;
        min-width: 0;

        padding: 14px;
    }

    .projetos-card img {
        height: 180px;
    }

    .info-projetos {
        font-size: 13px;
    }


    /* ---------- DIFERENCIAIS ---------- */

    .diferenciais {
        margin: 20px 0;

        padding: 25px 20px;
    }

    .diferenciais h2 {
        font-size: 19px;
    }

    .diferenciais-container {
        grid-template-columns: 1fr;
    }

    .diferencial {
        min-height: auto;

        padding: 16px 5px;

        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .diferencial:last-child {
        border-bottom: none;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .cta {
        width: 100%;
        max-width: 100%;

        margin-top: 35px;

        padding: 25px 7%;

        box-sizing: border-box;

        overflow: hidden;

        background:
            linear-gradient(
                90deg,
                #061b31,
                #003b7a
            );
    }

    .cta-container {
        width: 100%;
        max-width: 100%;

        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;

        gap: 12px;

        box-sizing: border-box;
    }

    .cta-text {
        width: 100%;
        min-width: 0;
    }

    .cta-container h2,
    .cta-text h2 {
        width: 100%;

        grid-column: 1;
        grid-row: 1;

        margin: 0 0 4px 0;

        font-size: 19px;
        line-height: 1.35;

        overflow-wrap: normal;
        word-break: normal;
        white-space: normal;
    }

    .cta-container p,
    .cta-text p {
        width: 100%;
        max-width: 100%;

        grid-column: 1;
        grid-row: 2;

        margin: 0;

        font-size: 12px;
        line-height: 1.6;

        overflow-wrap: normal;
        word-break: normal;
        white-space: normal;
    }

    .cta-container .btn-primary,
    .cta-container .btn-whatsapp {
        grid-column: 1;
        grid-row: 3;

        justify-self: start;

        margin: 0;

        max-width: 100%;

        white-space: nowrap;
    }


    /* ---------- CABEAMENTO ---------- */

    .cabeamento-conteudo {
        padding: 55px 7%;
    }

    .cabeamento-texto h2 {
        font-size: 27px;
    }

    .cabeamento-texto p {
        margin-bottom: 40px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* ---------- BENEFÍCIOS ---------- */

    .beneficios-container,
    .beneficios-container2 {
        width: 100%;

        padding: 0 7% 55px;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .beneficio-card,
    .beneficio-card2 {
        width: 100%;
        min-width: 0;

        padding: 22px;
    }

    .beneficio-card h3,
    .beneficio-card2 h3 {
        margin-bottom: 9px;

        font-size: 19px;

        /*
           Impede que palavras sejam quebradas no meio.
        */
        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
        hyphens: none;
    }

    .beneficio-card p,
    .beneficio-card2 p {
        font-size: 13px;
        line-height: 1.65;

        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
    }


    /* ---------- LISTA ---------- */

    .lista-beneficios {
        width: 100%;
    }

    .lista-beneficios li {
        align-items: flex-start;

        gap: 10px;

        margin-bottom: 14px;

        font-size: 14px;
        line-height: 1.5;

        min-width: 0;
    }

    .check {
        flex-shrink: 0;
    }


    /* ---------- MONITORAMENTO ---------- */

    .monitoramento-intro {
        padding: 60px 7% 40px;
    }

    .monitoramento-intro-texto h2,
    .monitoramento-cards-titulo h2 {
        font-size: 27px;
    }

    .monitoramento-intro-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .monitoramento-cards {
        padding: 30px 7% 65px;

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .monitoramento-card {
        width: 100%;
        min-width: 0;

        padding: 23px;
    }

    .monitoramento-card h3 {
        font-size: 19px;
    }

    .monitoramento-card p {
        font-size: 13px;
        line-height: 1.65;
    }

    .monitoramento-info {
        padding: 60px 7%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .monitoramento-info-texto h2 {
        font-size: 27px;
    }

    .monitoramento-info-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .monitoramento-info-imagem {
        padding: 20px;
    }

    .monitoramento-info-imagem img {
        height: 260px;
    }


    /* ---------- CONTROLE DE ACESSO ---------- */

    .acesso-cartas {
        padding: 60px 7% 70px;
    }

    .acesso-cartas-titulo {
        margin-bottom: 35px;
    }

    .acesso-cartas-titulo h2 {
        font-size: 27px;
    }

    .acesso-cartas-titulo p {
        font-size: 14px;
    }

    .acesso-cartas-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .acesso-carta {
        width: 100%;
        min-width: 0;
    }

    .acesso-carta-imagem {
        height: 200px;
    }

    .acesso-carta-conteudo {
        min-height: auto;

        padding: 23px;
    }

    .acesso-carta-conteudo h3 {
        font-size: 20px;
    }

    .acesso-carta-conteudo p {
        font-size: 13px;
        line-height: 1.7;
    }

    .acesso-info {
        padding: 60px 7%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .acesso-info-texto h2 {
        font-size: 27px;
    }

    .acesso-info-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .acesso-info-imagem {
        padding: 20px;
    }

    .acesso-info-imagem img {
        height: 260px;
    }


    /* ---------- RACKS ---------- */

    .racks-intro {
        padding: 60px 7% 40px;
    }

    .racks-intro-texto h2 {
        font-size: 27px;
    }

    .racks-intro-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .racks-cartas {
        padding: 25px 7% 65px;
    }

    .racks-cartas-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .racks-carta {
        width: 100%;
        min-width: 0;
    }

    .racks-carta-imagem {
        height: 200px;
    }

    .racks-carta-conteudo {
        min-height: auto;

        padding: 23px;
    }

    .racks-carta-conteudo h3 {
        font-size: 20px;
    }

    .racks-carta-conteudo p {
        font-size: 13px;
        line-height: 1.7;
    }

    .racks-processo {
        padding: 65px 7% 75px;
    }

    .racks-processo-titulo {
        margin-bottom: 45px;
    }

    .racks-processo-titulo h2 {
        font-size: 27px;
    }

    .racks-processo-titulo p {
        font-size: 14px;
    }

    .racks-processo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    /* ---------- SOLUÇÕES ---------- */

    .solucoes-intro {
        padding: 60px 7% 40px;
    }

    .solucoes-intro-texto h2 {
        font-size: 27px;
    }

    .solucoes-intro-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .solucoes-cartas {
        padding: 25px 7% 65px;
    }

    .solucoes-cartas-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solucoes-carta {
        width: 100%;
        min-width: 0;
    }

    .solucoes-carta-imagem {
        height: 200px;
    }

    .solucoes-carta-conteudo {
        min-height: auto;

        padding: 23px;
    }

    .solucoes-carta-conteudo h3 {
        font-size: 20px;
    }

    .solucoes-carta-conteudo p {
        font-size: 13px;
        line-height: 1.7;
    }

    .solucoes-processo {
        padding: 65px 7% 75px;
    }

    .solucoes-processo-titulo {
        margin-bottom: 45px;
    }

    .solucoes-processo-titulo h2 {
        font-size: 27px;
    }

    .solucoes-processo-titulo p {
        font-size: 14px;
    }

    .solucoes-processo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solucoes-info {
        padding: 60px 7%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .solucoes-info-texto h2 {
        font-size: 27px;
    }

    .solucoes-info-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .solucoes-info-imagem {
        padding: 20px;
    }

    .solucoes-info-imagem img {
        height: 260px;
    }


    /* ---------- REDES ---------- */

    .redes-intro {
        padding: 60px 7% 40px;
    }

    .redes-intro-texto h2 {
        font-size: 27px;
    }

    .redes-intro-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .redes-cartas {
        padding: 25px 7% 65px;
    }

    .redes-cartas-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .redes-carta {
        width: 100%;
        min-width: 0;
    }

    .redes-carta-imagem {
        height: 200px;
    }

    .redes-carta-conteudo {
        min-height: auto;

        padding: 23px;
    }

    .redes-carta-conteudo h3 {
        font-size: 20px;
    }

    .redes-carta-conteudo p {
        font-size: 13px;
        line-height: 1.7;
    }

    .redes-processo {
        padding: 65px 7% 75px;
    }

    .redes-processo-titulo {
        margin-bottom: 45px;
    }

    .redes-processo-titulo h2 {
        font-size: 27px;
    }

    .redes-processo-titulo p {
        font-size: 14px;
    }

    .redes-processo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .redes-info {
        padding: 60px 7%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .redes-info-texto h2 {
        font-size: 27px;
    }

    .redes-info-texto p {
        font-size: 14px;
        line-height: 1.7;
    }

    .redes-info-imagem {
        padding: 20px;
    }

    .redes-info-imagem img {
        height: 260px;
    }


    /* ---------- CLIENTES ---------- */

    .clientes {
        padding: 60px 7% 70px;
    }

    .clientes-titulo {
        margin-bottom: 35px;
    }

    .clientes-titulo h2 {
        font-size: 27px;
    }

    .clientes-titulo p {
        font-size: 14px;
    }

    .clientes-logos {
        grid-template-columns: 1fr 1fr;

        gap: 20px;

        justify-items: center;
    }

    .cliente-logo {
        width: 125px;
        height: 125px;
    }


    /* ---------- FOOTER ---------- */

    .footer {
        padding: 40px 7% 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-brand p {
        max-width: 100%;

        font-size: 13px;
        line-height: 1.6;
    }

    .footer-coluna {
        min-height: auto;

        padding: 20px 0 0;

        border-left: none;
        border-top: 1px solid var(--color-border);
    }

    .footer-coluna h3 {
        font-size: 13px;
    }

    .footer-coluna p {
        font-size: 12px;
    }

    .footer-bottom {
        margin-top: 25px;
    }

    .footer-bottom p {
        font-size: 9px;
        line-height: 1.5;
    }


    /* ---------- WHATSAPP FLUTUANTE ---------- */

    .whatsapp-flutuante {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;

        border-radius: 8px;
    }

    .whatsapp-flutuante img {
        width: 29px;
        height: 29px;
    }


    /* ---------- HEROES COM IMAGEM ---------- */

    .servico-certificacao,
    .servico-monitoramento,
    .servico-solucoes,
    .servico-redes {
        background-size: cover;
        background-position: center;
    }
}


/* =========================================================
   CELULARES MUITO PEQUENOS
========================================================= */

@media (max-width: 420px) {

    .header {
        padding: 0 14px;
    }

    .logo {
        width: 80px;
    }

    .logo img:first-child {
        width: 80px;
    }

    .logo-o {
        width: 16px !important;
        height: 16px !important;

        left: 45px;
    }

    .menu {
        gap: 8px;
    }

    .menu-link {
        font-size: 10px;
    }

    .cabecalho,
    .servico-controle-acesso {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .clientes-logos {
        grid-template-columns: 1fr;
    }

    .cliente-logo {
        width: 135px;
        height: 135px;
    }

    .cta {
        padding-left: 6%;
        padding-right: 6%;
    }

    .cta-container h2,
    .cta-text h2 {
        font-size: 18px;
    }

    .cta-container p,
    .cta-text p {
        font-size: 11px;
    }
}


/* =========================================================
   CORREÇÕES GERAIS DE OVERFLOW
========================================================= */

* {
    min-width: 0;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.projetos-card,
.beneficio-card,
.beneficio-card2,
.monitoramento-card,
.acesso-carta,
.racks-carta,
.solucoes-carta,
.redes-carta {
    min-width: 0;
}

.beneficio-card h3,
.beneficio-card p,
.beneficio-card2 h3,
.beneficio-card2 p,
.monitoramento-card h3,
.monitoramento-card p,
.acesso-carta-conteudo h3,
.acesso-carta-conteudo p,
.racks-carta-conteudo h3,
.racks-carta-conteudo p,
.solucoes-carta-conteudo h3,
.solucoes-carta-conteudo p,
.redes-carta-conteudo h3,
.redes-carta-conteudo p {
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
    hyphens: none;
}


/* =========================================================
   IMAGENS
========================================================= */

img {
    max-width: 100%;

    user-select: none;

    -webkit-user-drag: none;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-flutuante {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #22c350;

    border-radius: 8px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.35);

    z-index: 9999;

    transition: 0.3s ease;
}

.whatsapp-flutuante img {
    width: 32px;
    height: 32px;

    object-fit: contain;
}

.whatsapp-flutuante:hover {
    transform: translateY(-4px);

    background: #1faa48;
}


@media (max-width: 700px) {

    .whatsapp-flutuante {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;
    }

    .whatsapp-flutuante img {
        width: 29px;
        height: 29px;
    }
}

/* CTA - texto à esquerda e botão à direita */

.cta {
    margin-top: 45px;
    padding: 20px 9%;

    background:
        linear-gradient(
            90deg,
            #061b31,
            #003b7a
        );
}

.cta-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0px;
}

.cta-container h2 {
    grid-column: 1;
    margin: 0 0 15px 0;
}

.cta-container p {
    grid-column: 0;
    margin: 0;
    max-width: 700px;
}

.cta-container .btn-primary {
    grid-column: 2;
    grid-row: 1 / 3;
    white-space: nowrap;
}

.cta .btn-whatsapp,
.cta .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

.whatsapp-flutuante {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #22c350;
    border-radius: 8px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);

    z-index: 9999;

    transition: 0.3s ease;
}

.whatsapp-flutuante img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.whatsapp-flutuante:hover {
    transform: translateY(-4px);
    background: #1faa48;
}

.theme-toggle {
    width: 42px;
    height: 42px;

    border: 1px solid var(--color-primary-light);
    border-radius: 50%;

    background: transparent;
    color: var(--color-text);

    font-size: 18px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--color-primary-light);
    color: #fff;
}

/* =========================================
   LIGHT MODE - LUDOUTECH
========================================= */

body.light-mode {
    --color-bg: #eef6fc;
    --color-header: #d7eafa;

    --color-primary: #006bff;
    --color-primary-light: #008cff;

    --color-text: #102a43;
    --color-text-secondary: #36546d;

    --color-border: #b8d2e8;

    --color-zap: #22c350;
}


/* =========================================
   NAVBAR
========================================= */

/* LINKS DA NAVBAR - LIGHT MODE */

body.light-mode .menu li a {
    color: #f8f8f8 !important;
    opacity: 1;
}

body.light-mode .menu li a:hover {
    color: #006bff !important;
}

body.light-mode .header {
    background-color: #003b7a;
    border-bottom: 1px solid #b8d2e8;
}

body.light-mode .menu a {
    color: #102a43;
}

body.light-mode .menu a:hover {
    color: #006bff;
}


/* =========================================
   HERO
========================================= */

body.light-mode .cabecalho {
    background-color: #eef6fc;
}

body.light-mode .hero-content h1 {
    color: #f9f9fa;
}

body.light-mode .hero-content h1 span {
    color: #006bff;
}

body.light-mode .hero-content p {
    color: #36546d;
}


/* =========================================
   BOTÃO PRINCIPAL
========================================= */

body.light-mode .btn-primary {
    background-color: #006bff;
    color: #ffffff;
}

body.light-mode .btn-primary:hover {
    background-color: #008cff;
}


/* =========================================
   BOTÃO SAIBA MAIS
========================================= */

body.light-mode .btn-secondary {
    color: #edf0f3;
    border-color: #a9c7df;
}

body.light-mode .btn-secondary span {
    color: #006bff;
}

body.light-mode .btn-secondary:hover {
    color: #006bff;
    border-color: #006bff;
}

body.light-mode .btn-primary {
    background-color: #22c350;
    color: #ffffff;
}

body.light-mode .btn-primary:hover {
    background-color: #1da944;
}


/* =========================================
   SOBRE
========================================= */

body.light-mode .sobre {
    background-color: #eef6fc;
}

body.light-mode .sobre h2 {
    color: #102a43;
}

body.light-mode .sobre p {
    color: #36546d;
}


/* =========================================
   SERVIÇOS
========================================= */

body.light-mode .projetos {
    background-color: #dfeefa;
}

body.light-mode .projetos-titulo {
    color: #102a43;
}

body.light-mode .projetos-card {
    background-color: #eef6fc;
    border-color: #b8d2e8;
}

body.light-mode .info-projetos {
    color: #102a43;
}

body.light-mode .projetos-card p {
    color: #36546d;
}


/* =========================================
   CLIENTES
========================================= */

body.light-mode .clientes {
    background-color: #eef6fc;
}

body.light-mode .clientes h2 {
    color: #102a43;
}

body.light-mode .clientes p {
    color: #36546d;
}


/* =========================================
   DIFERENCIAIS
========================================= */

body.light-mode .diferenciais {
    background-color: #d7eafa;
}

body.light-mode .diferenciais h2 {
    color: #102a43;
}

body.light-mode .diferenciais h2 span {
    color: #006bff;
}

body.light-mode .diferencial {
    background-color: #eef6fc;
    border-color: #b8d2e8;
}

body.light-mode .diferencial h3 {
    color: #102a43;
}

body.light-mode .diferencial p {
    color: #36546d;
}


/* =========================================
   CTA
========================================= */

body.light-mode .cta {
    background-color: #c7e0f5;
}

body.light-mode .cta-text h2 {
    color: #eaedf0;
}

body.light-mode .cta-text p {
    color: #f0f0f0;
}


/* =========================================
   BOTÃO WHATSAPP
========================================= */

body.light-mode .btn-whatsapp {
    background-color: #22c350;
    color: #ffffff;
}


/* =========================================
   FOOTER
========================================= */

body.light-mode .footer {
    background-color: #061b31;
}

body.light-mode .footer h3,
body.light-mode .footer h4 {
    color: #fafafa;
}

body.light-mode .footer p {
    color: #ffffff;
}

body.light-mode .footer a {
    color: #ffffff;
}

body.light-mode .footer a:hover {
    color: #006bff;
}


/* =========================================
   BOTÃO DE TEMA
========================================= */

body.light-mode .theme-toggle {
    background-color: #eef6fc;
    border-color: #a9c7df;
    color: #102a43;
}

body.light-mode .theme-toggle:hover {
    background-color: #006bff;
    color: #ffffff;
}


/* =========================================
   BORDAS E ELEMENTOS GERAIS
========================================= */

body.light-mode hr {
    border-color: #b8d2e8;
}


/* =========================================
   TRANSIÇÃO DO TEMA
========================================= */

body,
.header,
.cabecalho,
.sobre,
.projetos,
.clientes,
.diferenciais,
.cta,
.footer,
.diferencial,
.projetos-card {
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

/* =========================
   TOGGLE DE TEMA
========================= */

.theme-toggle {
    width: 58px;
    height: 32px;
    padding: 0;

    border: 1px solid #263642;
    border-radius: 20px;

    background: #071219;

    position: relative;
    display: block;

    cursor: pointer;
    overflow: hidden;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

/* Bolinha */
.theme-slider {
    position: absolute;

    width: 26px;
    height: 26px;

    top: 2px;
    left: 2px;

    border-radius: 50%;

    background: #10202c;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.35s ease,
        background-color 0.3s ease;
}

/* Ícone */
.theme-slider img {
    width: 16px !important;
    height: 16px !important;

    max-width: 16px !important;
    max-height: 16px !important;

    object-fit: contain;
    display: block;

    transition:
        opacity 0.2s ease,
        transform 0.3s ease;
}

/* =========================
   MODO CLARO
========================= */

body.light-mode .theme-toggle {
    background: #c7e0f5;
    border-color: #a9c8df;
}

body.light-mode .theme-slider {
    transform: translateX(26px);
    background: #ffffff;
}


/* Bolinha */

.theme-slider {
    position: absolute;

    width: 26px;
    height: 26px;

    top: 2px;
    left: 2px;

    border-radius: 50%;

    background: var(--color-primary);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Imagem */

.theme-slider img {
    width: 16px !important;
    height: 16px !important;

    max-width: 16px !important;
    max-height: 16px !important;

    object-fit: contain;

    display: block;

    transition:
        opacity 0.25s ease,
        transform 0.4s ease;
}


/* =========================
   MODO CLARO
========================= */

body.light-mode .theme-slider {
    transform: translateX(26px);
}

body.light-mode .theme-toggle {
    background: #c7e0f5;
    border-color: #b8d2e8;
}
body.light-mode {
    --color-text: #102a43;
    --color-text-secondary: #36546d;
}
/* =========================
   CERTIFICAÇÃO - MODO CLARO
========================= */

body.light-mode .servico-certificacao {
    background-color: #030b11;
}

body.light-mode .servico-certificacao .hero-content h1 {
    color: #ffffff;
}

/* =========================
  MONITORAMENTO - MODO CLARO
========================= */

body.light-mode .servico-monitoramento {
    background-color: #030b11;
}

body.light-mode .servico-monitoramento .hero-content h1 {
    color: #ffffff;
}

body.light-mode .servico-monitoramento .hero-content h1 span {
    color: #006bff;
}

/* =========================
   TÍTULOS DOS SERVIÇOS - MODO CLARO
========================= */

body.light-mode .servico-cabeamento .hero-content h1,
body.light-mode .servico-fibra .hero-content h1,
body.light-mode .servico-controle-acesso .hero-content h1,
body.light-mode .servico-racks .hero-content h1,
body.light-mode .servico-infraestrutura .hero-content h1,
body.light-mode .servico-solucoes .hero-content h1 {
    color: #ffffff;
}

body.light-mode .servico-cabeamento .hero-content h1 span,
body.light-mode .servico-fibra .hero-content h1 span,
body.light-mode .servico-controle-acesso .hero-content h1 span,
body.light-mode .servico-racks .hero-content h1 span,
body.light-mode .servico-infraestrutura .hero-content h1 span,
body.light-mode .servico-solucoes .hero-content h1 span {
    color: #006bff;
}