
/* =========================================================
   PÁGINA - HOME (VERTICAIS)
   ========================================================= */

.verticals {
    width: 100%;

    padding: 90px 0 100px;

    background-color: #ffffff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.verticals-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 40px;
}


/* =========================================================
   CABEÇALHO DA SEÇÃO
   ========================================================= */

.verticals-header {
    margin-bottom: 50px;

    text-align: center;
}


.verticals-header h2 {
    margin: 0 0 12px;

    color: #121e2d;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 36px;
    font-weight: 600;

    line-height: 1.2;
}


.verticals-header p {
    margin: 0 auto;

    max-width: 650px;

    color: #697684;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   GRID
   ========================================================= */

.verticals-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   CARD
   ========================================================= */

.vertical-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid #e3e7eb;

    border-radius: 3px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   HOVER DO CARD
   ========================================================= */

.vertical-card:hover {
    transform: translateY(-6px);

    border-color: #cbd3da;

    box-shadow:
        0 12px 30px rgba(18, 30, 45, 0.12);
}


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

.vertical-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #e9edf1;
}


.vertical-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


/* =========================================================
   ZOOM DA IMAGEM
   ========================================================= */

.vertical-card:hover .vertical-image img {
    transform: scale(1.06);
}


/* =========================================================
   GRADIENTE SOBRE A IMAGEM
   ========================================================= */

.vertical-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(18, 30, 45, 0) 50%,
            rgba(18, 30, 45, 0.25) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CONTEÚDO DO CARD
   ========================================================= */

.vertical-content {
    min-height: 90px;

    padding: 16px 14px 15px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
}


/* =========================================================
   NOME DA VERTICAL
   ========================================================= */

.vertical-content h3 {
    margin: 0;

    color: #121e2d;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.35;
}


/* =========================================================
   LINK
   ========================================================= */

.vertical-content span {
    margin-top: 10px;

    color: #697684;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 600;

    transition:
        color 0.3s ease;
}


.vertical-card:hover .vertical-content span {
    color: #121e2d;
}


/* =========================================================
   BOTÃO
   ========================================================= */

.verticals-footer {
    margin-top: 45px;

    display: flex;

    justify-content: center;
}


.verticals-button {
    display: inline-flex;

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

    min-height: 46px;

    padding: 0 26px;

    background-color: #121e2d;

    color: #ffffff;

    border: 1px solid #121e2d;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.verticals-button:hover {
    background-color: transparent;

    color: #121e2d;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .verticals-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}


/* =========================================================
   TABLET PEQUENO
   ========================================================= */

@media (max-width: 800px) {

    .verticals {
        padding: 70px 0 80px;
    }


    .verticals-container {
        padding: 0 25px;
    }


    .verticals-header h2 {
        font-size: 30px;
    }


    .verticals-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

}


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

@media (max-width: 500px) {

    .verticals {
        padding: 60px 0 70px;
    }


    .verticals-container {
        padding: 0 18px;
    }


    .verticals-header {
        margin-bottom: 35px;
    }


    .verticals-header h2 {
        font-size: 27px;
    }


    .verticals-header p {
        font-size: 14px;
    }


    .verticals-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .vertical-card {
        display: grid;

        grid-template-columns: 120px 1fr;

        min-height: 120px;
    }


    .vertical-image {
        aspect-ratio: 1 / 1;

        height: 120px;
    }


    .vertical-content {
        min-height: 120px;

        padding: 18px;
    }


    .vertical-content h3 {
        font-size: 15px;
    }


    .verticals-footer {
        margin-top: 35px;
    }
}


/* ========================================================= SOLUÇÕES ========================================================= */
.solutions {
    width: 100%;
    padding: 110px 0;
    background-color: #f5f7f9;
}

/* ========================================================= CONTAINER ========================================================= */
.solutions-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================================= CABEÇALHO ========================================================= */
.solutions-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.solutions-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #6b7885;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.solutions-header h2 {
    margin: 0 0 18px;
    color: #121e2d;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.15;
}

.solutions-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #687684;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   GRID / MOSAICO
   ========================================================= */

.solutions-grid {
    display: grid;

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

    grid-template-rows:
        repeat(3, 220px);

    grid-template-areas:
        "bms      sdai     cftv"
        "acesso   sdai     cftv"
        "intrusao sdai     cftv";

    gap: 18px;
}


/* =========================================================
   POSICIONAMENTO DOS CARDS
   ========================================================= */

.solution-bms {
    grid-area: bms;
}


.solution-access {
    grid-area: acesso;
}


.solution-intrusion {
    grid-area: intrusao;
}


.solution-fire {
    grid-area: sdai;
}


.solution-cctv {
    grid-area: cftv;
}

/* ============================================ CARDS ================================================ */
.solution-card {
    position: relative;
    display: flex;
    overflow: hidden;
    background-color: #121e2d;
    border-radius: 3px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(18, 30, 45, 0.08);
}

/* ========================================================= IMAGEM ========================================================= */
.solution-card>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.solution-card:hover>img {
    transform: scale(1.06);
}

/* ========================================================= OVERLAY ========================================================= */
.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 17, 28, 0.88) 0%, rgba(8, 17, 28, 0.48) 45%, rgba(8, 17, 28, 0.08) 100%);
    transition: background 0.4s ease;
}

.solution-card:hover .solution-overlay {
    background: linear-gradient(to top, rgba(8, 17, 28, 0.92) 0%, rgba(8, 17, 28, 0.52) 55%, rgba(8, 17, 28, 0.15) 100%);
}

/* ========================================================= CONTEÚDO ========================================================= */
.solution-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    padding: 28px;
}

/* ========================================================= TÍTULO ========================================================= */
.solution-content h3 {
    max-width: 400px;
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
}

/* ========================================================= DESCRIÇÃO ========================================================= */
.solution-content p {
    max-width: 400px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
}

/* ========================================================= LINK ========================================================= */
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease, gap 0.3s ease;
}

.solution-link span {
    font-size: 16px;
}

.solution-card:hover .solution-link {
    gap: 12px;
    opacity: 1;
}

/* ========================================================= CTA ========================================================= */
.solutions-footer {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.solutions-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 25px;
    color: #121e2d;
    border: 1px solid #121e2d;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.solutions-button:hover {
    background-color: #121e2d;
    color: #ffffff;
    gap: 14px;
}

/* ========================================================= TABLET ========================================================= */
@media (max-width: 850px) {
    .solutions {
        padding: 80px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 260px 260px;
    }

    .solution-bms {
        grid-column: 1;
        grid-row: 1;
    }

    .solution-access {
        grid-column: 2;
        grid-row: 1;
    }

    .solution-intrusion {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        height: auto;
        grid-column: 1;
        grid-row: 2;
    }

    .solution-fire {
        grid-column: 2;
        grid-row: 2;
    }

    .solution-cctv {
        grid-column: 1 / 3;
        grid-row: 3;
    }
}

/* ========================================================= MOBILE ========================================================= */
@media (max-width: 550px) {
    .solutions {
        padding: 65px 0;
    }

    .solutions-container {
        padding: 0 18px;
    }

    .solutions-header {
        margin-bottom: 35px;
    }

    .solutions-header h2 {
        font-size: 28px;
    }

    .solutions-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .solution-card {
        min-height: 300px;
        height: 300px;
    }

    .solution-intrusion,
    .solution-fire,
    .solution-cctv {
        width: 100%;
        height: 300px;
    }

    .solution-content {
        padding: 22px;
    }

    .solution-content h3 {
        font-size: 19px;
    }

}


/* =========================================================
   CLIENTES
   ========================================================= */

.clients {
    width: 100%;

    padding: 100px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clients-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 40px;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.clients-header {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.clients-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #6b7885;

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

    letter-spacing: 2.5px;
}


.clients-header h2 {
    margin: 0 0 16px;

    color: #121e2d;

    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;

    line-height: 1.2;
}


.clients-header p {
    margin: 0;

    color: #687684;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   CARROSSEL
   ========================================================= */

.clients-carousel {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;
}


/* =========================================================
   VIEWPORT
   ========================================================= */

.clients-viewport {
    width: 100%;

    overflow: hidden;

    padding: 10px 0;
}


/* =========================================================
   TRACK
   ========================================================= */

.clients-track {
    display: flex;

    align-items: center;

    gap: 20px;

    width: max-content;

    transition:
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =========================================================
   LOGO
   ========================================================= */

.client-logo {
    width: 190px;
    height: 110px;

    flex: 0 0 190px;

    display: flex;

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

    padding: 22px;

    background-color: #ffffff;

    border: 1px solid #edf0f2;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.client-logo:hover {
    border-color: #d9dee3;

    box-shadow:
        0 8px 25px rgba(18, 30, 45, 0.08);

    transform: translateY(-3px);
}


.client-logo img {
    display: block;

    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 55px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.65;

    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


.client-logo:hover img {
    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.04);
}


/* =========================================================
   SETAS
   ========================================================= */

.clients-arrow {
    position: relative;

    z-index: 5;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;

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

    padding: 0;

    color: #121e2d;

    background-color: #ffffff;

    border: 1px solid #dfe4e8;

    border-radius: 50%;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.clients-arrow span {
    font-size: 28px;

    font-weight: 300;

    line-height: 1;
}


.clients-arrow:hover {
    color: #ffffff;

    background-color: #121e2d;

    border-color: #121e2d;

    transform: scale(1.05);
}


.clients-arrow:active {
    transform: scale(0.95);
}


.clients-arrow-prev {
    margin-right: 20px;
}


.clients-arrow-next {
    margin-left: 20px;
}


/* =========================================================
   PROGRESSO
   ========================================================= */

.clients-progress {
    width: 100%;

    max-width: 300px;

    height: 2px;

    margin: 35px auto 0;

    background-color: #e8ecef;

    overflow: hidden;
}


.clients-progress-line {
    display: block;

    width: 25%;

    height: 100%;

    background-color: #121e2d;

    transition:
        transform 0.6s ease;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .clients {
        padding: 80px 0;
    }


    .clients-container {
        padding: 0 25px;
    }


    .client-logo {
        width: 170px;
        height: 100px;

        flex-basis: 170px;
    }


    .clients-track {
        gap: 15px;
    }

}


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

@media (max-width: 600px) {

    .clients {
        padding: 70px 0;
    }


    .clients-container {
        padding: 0 18px;
    }


    .clients-header {
        margin-bottom: 35px;
    }


    .clients-header h2 {
        font-size: 28px;
    }


    .clients-header p {
        font-size: 14px;
    }


    .clients-arrow {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .clients-arrow-prev {
        margin-right: 10px;
    }


    .clients-arrow-next {
        margin-left: 10px;
    }


    .client-logo {
        width: 150px;
        height: 90px;

        flex-basis: 150px;

        padding: 18px;
    }


    .client-logo img {
        max-height: 45px;
    }

}


/* =========================================================
   SOBRE NÓS — HOME
   ========================================================= */

.about-home {
    width: 100%;

    padding: 110px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.about-home-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    padding: 0 40px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.about-home-content {
    max-width: 570px;
}


.about-home-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #6b7885;

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

    letter-spacing: 2.5px;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.about-home-content h2 {
    margin: 0 0 28px;

    color: #121e2d;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 600;

    line-height: 1.12;

    letter-spacing: -1px;
}


.about-home-content h2 span {
    display: block;

    color: #52677b;
}


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

.about-home-text {
    max-width: 530px;
}


.about-home-text p {
    margin: 0 0 18px;

    color: #687684;

    font-size: 15px;

    line-height: 1.75;
}


.about-home-text p:last-child {
    margin-bottom: 0;
}


.about-home-text strong {
    color: #121e2d;

    font-weight: 600;
}


/* =========================================================
   BOTÃO
   ========================================================= */

.about-home-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    min-height: 48px;

    padding: 0 24px;

    color: #ffffff;

    background-color: #121e2d;

    border: 1px solid #121e2d;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease,
        transform 0.3s ease;
}


.about-home-button span {
    font-size: 18px;

    line-height: 1;
}


.about-home-button:hover {
    color: #121e2d;

    background-color: transparent;

    gap: 17px;

    transform: translateY(-2px);
}


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

.about-home-image {
    position: relative;

    width: 100%;

    min-height: 520px;

    overflow: hidden;

    background-color: #121e2d;
}


.about-home-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.about-home-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.about-home-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8, 17, 28, 0.80),
            rgba(8, 17, 28, 0.05) 65%
        );
}


/* =========================================================
   LEGENDA DA IMAGEM
   ========================================================= */

.about-home-image-caption {
    position: absolute;

    right: 32px;
    bottom: 30px;
    left: 32px;

    display: flex;

    flex-direction: column;

    gap: 7px;

    color: #ffffff;
}


.about-home-image-caption span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0.75;
}


.about-home-image-caption strong {
    max-width: 400px;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .about-home {
        padding: 80px 0;
    }


    .about-home-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 0 25px;
    }


    .about-home-content {
        max-width: 720px;
    }


    .about-home-text {
        max-width: 680px;
    }


    .about-home-image {
        min-height: 450px;
    }

}


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

@media (max-width: 550px) {

    .about-home {
        padding: 65px 0;
    }


    .about-home-container {
        padding: 0 18px;

        gap: 35px;
    }


    .about-home-content h2 {
        margin-bottom: 22px;

        font-size: 30px;

        letter-spacing: -0.5px;
    }


    .about-home-text p {
        font-size: 14px;

        line-height: 1.7;
    }


    .about-home-button {
        width: 100%;

        justify-content: center;
    }


    .about-home-image {
        min-height: 360px;
    }


    .about-home-image-caption {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }


    .about-home-image-caption strong {
        font-size: 18px;
    }

}
.menu-hamburguer {
    display: none;
}

@media (max-width: 992px) {

    .site-control__inner {
        position: relative;
    }

    .menu-hamburguer {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .site-control__inline-links {
        display: none;
    }

    .site-control__inline-links.ativo {
        display: block;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

}



/* =========================================================
   FIM DA PÁGINA HOME 
========================================================= */