/* =========================================================
   CMPORT
   SISTEMAS ELETRÔNICOS DE SEGURANÇA
   CSS PRINCIPAL
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

    --navy: #0B1F3B;
    --navy-dark: #071426;
    --navy-light: #102B4D;

    --blue: #00A8FF;
    --blue-dark: #0089D1;
    --blue-light: #66CCFF;

    --gray: #6B7280;
    --gray-light: #A1A7B0;

    --ice: #F4F6FA;
    --white: #FFFFFF;
    --black: #111111;

    --border: #E3E7ED;

    --container: 1180px;

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow: 0 15px 45px rgba(11, 31, 59, 0.08);
    --shadow-hover: 0 25px 60px rgba(11, 31, 59, 0.15);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--ice);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(11, 31, 59, 0.94);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: background var(--transition);
}

.header-container {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 95px;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav > a {
    position: relative;

    color: rgba(255, 255, 255, 0.82);

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

    transition: var(--transition);
}

.main-nav > a:not(.nav-button)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--blue);

    transition: var(--transition);
}

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    width: 100%;
}


/* BOTÃO SOLICITAR ORÇAMENTO */

.nav-button {
    padding: 9px 15px;

    border-radius: 8px;

    background: var(--blue);
    color: var(--white) !important;

    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.2);

    transition: var(--transition);
}

.nav-button:hover {
    background: var(--white);
    color: var(--navy) !important;

    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

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

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;

    background: transparent;
    color: var(--white);

    font-size: 20px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 92vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--navy);
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 20, 38, 0.97) 0%,
            rgba(11, 31, 59, 0.86) 42%,
            rgba(11, 31, 59, 0.45) 100%
        ),
        url("Imagens/security-service-hero-img-bg.jpg")
        center center / cover no-repeat;

    transform: scale(1.02);
}

.hero-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(0, 168, 255, 0.18),
            transparent 32%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 74px;
}

.hero-text {
    max-width: 760px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-eyebrow span {
    width: 28px;
    height: 2px;

    background: var(--blue);
}

.hero h1 {
    max-width: 760px;

    color: var(--white);

    font-family: "Lato", sans-serif;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;

    font-weight: 900;
    letter-spacing: -2px;
}

.hero h1 strong {
    display: block;
    color: var(--blue);
}

.hero p {
    max-width: 650px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 34px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 22px;

    border-radius: 9px;

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

    transition: var(--transition);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);

    box-shadow: 0 12px 30px rgba(0, 168, 255, 0.22);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--navy);

    transform: translateY(-3px);

    box-shadow: 0 18px 35px rgba(0, 168, 255, 0.28);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.28);

    color: var(--white);

    background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
    border-color: var(--blue);

    background: rgba(0, 168, 255, 0.1);

    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 34px;

    margin-top: 42px;
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.55);
}

.hero-trust i {
    color: var(--blue);
    font-size: 19px;
}

.hero-trust span {
    display: flex;
    flex-direction: column;

    font-size: 11px;
    line-height: 1.4;
}

.hero-trust strong {
    color: var(--white);
    font-size: 13px;
}

.hero-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--blue),
        transparent
    );

    opacity: 0.8;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 110px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: center;
}

.section-label {
    display: inline-flex;

    color: var(--blue);

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

    letter-spacing: 2px;
}


/* =========================================================
   TÍTULOS
========================================================= */

.section-heading {
    margin-top: 15px;

    font-family: "Lato", sans-serif;

    color: var(--navy);

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;

    font-weight: 900;
    letter-spacing: -1.5px;
}

.section-top .section-heading {
    margin-top: 15px;
}

.why-title {
    margin-top: 15px;

    font-family: "Lato", sans-serif;

    color: var(--navy);

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;

    font-weight: 900;
    letter-spacing: -1.5px;
}

.section-heading span,
.why-title span {
    color: var(--blue);
}

.section-heading + p,
.section-heading > p {
    max-width: 760px;

    margin-top: 18px;

    color: var(--gray);

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

.intro-text {
    padding-left: 30px;

    border-left: 2px solid var(--blue);
}

.intro-text p {
    margin-bottom: 18px;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.85;
}

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


/* =========================================================
   DIFFERENTIALS
========================================================= */

.differentials {
    position: relative;

    padding: 28px 0;

    background: var(--navy);
}

.differentials-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.differential-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-left: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    background: var(--white);

    box-shadow: var(--shadow);
}

.differential-item {
    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 82px;

    padding: 15px 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.differential-grid .differential-item {
    min-height: 105px;

    border-right: 1px solid var(--border);

    color: var(--navy);
}

.differential-grid .differential-item:last-child {
    border-right: 0;
}

.differential-icon {
    width: 44px;
    height: 44px;

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

    flex-shrink: 0;

    border-radius: 9px;

    background: rgba(0, 168, 255, 0.1);

    color: var(--blue);

    font-size: 17px;
}

.differential-grid .differential-item strong {
    color: var(--navy);
}

.differential-grid .differential-item span {
    color: var(--gray);
}

.differential-item div:last-child {
    display: flex;
    flex-direction: column;
}

.differential-item strong {
    color: var(--white);
    font-size: 13px;
}

.differential-item span {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
}


/* =========================================================
   SEÇÕES ESCURAS
   CORREÇÃO DE CONTRASTE
========================================================= */

.section-dark {
    padding: 110px 0;

    background: var(--navy);

    color: var(--white);
}

.section-dark .section-label {
    color: var(--blue);
}

.section-dark .section-heading,
.section-dark .why-title,
.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .section-heading span,
.section-dark .why-title span {
    color: var(--blue);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.68);
}

.section-dark .section-heading + p,
.section-dark .section-heading > p {
    color: rgba(255, 255, 255, 0.68);
}

.section-dark .solution-tags {
    margin-top: 35px;

    justify-content: flex-start;
}

.section-dark .solution-tags span {
    background: rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   SEÇÕES INTERNAS AZUIS / ESCURAS
   CORREÇÃO PARA QUEM SOMOS
========================================================= */

.section-dark .differential-item,
.section-dark .maintenance-feature {
    color: var(--white);
}

.section-dark .differential-item strong,
.section-dark .maintenance-feature strong {
    color: var(--white);
}

.section-dark .differential-item span,
.section-dark .maintenance-feature p,
.section-dark .maintenance-feature span {
    color: rgba(255, 255, 255, 0.64);
}

.section-dark .differential-icon {
    background: rgba(0, 168, 255, 0.12);
    color: var(--blue);
}


/* =========================================================
   SOLUÇÕES
========================================================= */

.solutions-section,
.section.services {
    padding: 120px 0;

    background: var(--ice);
}

.section-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 55px;
}

.section-top > p {
    max-width: 430px;

    color: var(--gray);

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

.services-grid,
.service-grid {
    display: grid;

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

    gap: 24px;
}

.service-card {
    position: relative;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: 0 8px 30px rgba(11, 31, 59, 0.04);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 168, 255, 0.35);

    box-shadow: var(--shadow-hover);
}

.service-image {
    position: relative;

    height: 225px;

    overflow: hidden;

    background: var(--navy);
}

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

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(7, 20, 38, 0.65) 100%
    );
}

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

    object-fit: cover;

    transition: transform 0.6s ease;
}

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

.service-number {
    position: absolute;

    left: 20px;
    bottom: 17px;

    z-index: 2;

    color: var(--white);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.service-content,
.service-card-body {
    padding: 27px 27px 30px;
}

.service-category {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-content h3,
.service-card-body h3 {
    margin-top: 0;

    color: var(--navy);

    font-family: "Lato", sans-serif;

    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.service-content p,
.service-card-body p {
    margin-top: 13px;

    color: var(--gray);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   OUTRAS SOLUÇÕES
========================================================= */

.other-solutions {
    margin-top: 45px;

    padding: 27px 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.other-solutions-title {
    color: var(--navy);

    font-size: 13px;
    font-weight: 800;
}

.other-solutions-title span {
    color: var(--navy);

    font-size: 13px;
    font-weight: 800;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 8px;
}

.solution-tags span {
    padding: 8px 13px;

    border-radius: 100px;

    background: var(--ice);

    color: var(--gray);

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


/* =========================================================
   SECTION DARK
========================================================= */

.section-dark {
    padding: 110px 0;

    background: var(--navy);
}

.section-dark .section-heading {
    color: var(--white);
}

.section-dark .section-heading > p {
    color: rgba(255, 255, 255, 0.62);
}

.section-heading.light {
    color: var(--white);
}

.section-dark .solution-tags {
    margin-top: 35px;

    justify-content: flex-start;
}

.section-dark .solution-tags span {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   MANUTENÇÃO
========================================================= */

.maintenance-section,
.maintenance {
    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background: var(--navy);
}

.maintenance-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 20, 38, 0.96),
            rgba(11, 31, 59, 0.88)
        ),
        url("Imagens/manutencao-portao-automatico-1.jpg")
        center / cover no-repeat;
}

.maintenance-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(0, 168, 255, 0.18),
            transparent 32%
        );
}

.maintenance-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.maintenance-section .maintenance-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

    max-width: none;
}

.maintenance-text h2,
.maintenance-content > h2 {
    margin-top: 15px;

    max-width: 600px;

    color: var(--white);

    font-family: "Lato", sans-serif;

    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.05;

    font-weight: 900;
}

.maintenance-text h2 span {
    display: block;
    color: var(--blue);
}

.maintenance-text > p,
.maintenance-content > p {
    max-width: 700px;

    margin-top: 23px;

    color: rgba(255, 255, 255, 0.64);

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

.maintenance-text .btn {
    margin-top: 30px;
}

.maintenance-features {
    display: grid;

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

    gap: 18px;

    margin-top: 35px;
}

.maintenance-feature {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);
}

.maintenance-feature > i {
    color: var(--blue);

    font-size: 20px;

    margin-top: 3px;
}

.maintenance-feature > span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}

.maintenance-feature strong {
    display: block;

    color: var(--white);

    font-size: 14px;
}

.maintenance-feature p,
.maintenance-feature span {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   WHY CMPORT
========================================================= */

.why-section {
    padding: 120px 0;

    background: var(--white);

    overflow: hidden;
}

.why-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

/*
   O sticky foi removido para impedir que o título
   "Por que CMPORT?" fique visualmente sobreposto
   ao conteúdo durante o scroll.
*/

.why-title {
    position: static;

    margin-top: 0;
}

.why-list {
    border-top: 1px solid var(--border);

    min-width: 0;
}

.why-item {
    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 22px;

    padding: 27px 0;

    border-bottom: 1px solid var(--border);

    min-width: 0;
}

.why-icon {
    width: 48px;
    height: 48px;

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

    border-radius: 10px;

    background: rgba(0, 168, 255, 0.08);

    color: var(--blue);

    font-size: 17px;
}

.why-item h3 {
    color: var(--navy);

    font-family: "Lato", sans-serif;

    font-size: 18px;
    font-weight: 900;

    line-height: 1.3;
}

.why-item p {
    margin-top: 6px;

    color: var(--gray);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PÁGINAS INTERNAS
   AJUSTES GERAIS DE TEXTO
========================================================= */

.page-content {
    overflow: hidden;
}

.page-content section {
    overflow: hidden;
}

.page-content h2,
.page-content h3 {
    overflow-wrap: break-word;
}

.page-content p {
    overflow-wrap: break-word;
}


/* =========================================================
   SEÇÕES INTERNAS ESCURAS
   REFORÇO DE CONTRASTE
========================================================= */

.section-dark .section-top > p,
.section-dark .intro-text p,
.section-dark .why-item p,
.section-dark .maintenance-text > p {
    color: rgba(255, 255, 255, 0.68);
}

.section-dark .why-item {
    border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .why-item h3 {
    color: var(--white);
}

.section-dark .why-icon {
    background: rgba(0, 168, 255, 0.12);
    color: var(--blue);
}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {
    padding: 80px 0;

    background: var(--ice);
}

.final-cta-box {
    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 60px 65px;

    border-radius: var(--radius-lg);

    background: var(--navy);

    box-shadow: var(--shadow);
}

.final-cta-box::after {
    content: "";

    position: absolute;

    right: -120px;
    top: -180px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(0, 168, 255, 0.09);
}

.final-cta-box > * {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    margin-top: 10px;

    color: var(--white);

    font-family: "Lato", sans-serif;

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

    font-weight: 900;

    line-height: 1.1;
}

.final-cta p {
    max-width: 650px;

    margin-top: 8px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;

    line-height: 1.7;
}

.btn-white {
    background: var(--white);
    color: var(--navy);

    white-space: nowrap;

    width: auto;
    flex-shrink: 0;
}

.btn-white:hover {
    background: var(--blue);
    color: var(--white);

    transform: translateY(-3px);
}


/* =========================================================
   CTA FINAL — PÁGINAS INTERNAS
========================================================= */

.internal-final-cta {
    padding: 55px 0;
}

.internal-final-cta .final-cta-box {
    padding: 45px 50px;
}

.internal-final-cta .final-cta h2 {
    font-size: clamp(30px, 3.2vw, 42px);
}

.internal-final-cta .final-cta p {
    font-size: 13px;
}

.internal-final-cta .btn {
    width: auto;
    min-width: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--navy-dark);

    color: var(--white);
}


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

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;

    gap: 70px;

    padding: 70px 0 60px;
}


/* =========================================================
   MARCA
========================================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
}

.footer-brand img {
    width: 90px;
    height: auto;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
    line-height: 1.7;
}

.footer-brand > a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: var(--blue);

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

    transition: var(--transition);
}

.footer-brand > a:last-child:hover {
    color: var(--white);

    transform: translateX(3px);
}

.footer-brand > a:last-child i {
    font-size: 16px;
}


/* =========================================================
   COLUNAS
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;

    min-width: 0;
}

.footer-column h3,
.footer-contact h3 {
    margin-bottom: 9px;

    color: var(--white);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.6px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;
    line-height: 1.5;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--blue);

    transform: translateX(3px);
}

.footer-column a.active {
    color: var(--blue);

    font-weight: 700;
}


/* =========================================================
   ATENDIMENTO
========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 13px;

    min-width: 0;

    margin-top: 0;
}

.footer-contact h3 {
    margin-bottom: 2px;
}

.footer-contact p {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;
    line-height: 1.5;
}

.footer-contact p i {
    width: 17px;

    flex-shrink: 0;

    color: var(--blue);

    font-size: 13px;

    text-align: center;
}


/* =========================================================
   TEXTO "SIGA A CMPORT"
========================================================= */

/*
   Mantém o texto pequeno como os demais textos do rodapé,
   mas com peso maior para funcionar como destaque.
*/

.site-footer strong {
    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;

    line-height: 1.5;

    font-weight: 700;
}


/* =========================================================
   RODAPÉ INFERIOR
========================================================= */

.footer-bottom {
    display: flex;

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

    gap: 25px;

    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.footer-bottom > div {
    display: flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}

.footer-bottom > div a {
    width: 34px;
    height: 34px;

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

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.04);

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.footer-bottom > div a:hover {
    color: var(--white);

    background: var(--blue);

    border-color: var(--blue);

    transform: translateY(-3px);
}

.footer-bottom > div a i {
    display: block;

    line-height: 1;
}


/* =========================================================
   PÁGINAS INTERNAS
========================================================= */

.page-hero {
    min-height: 380px;

    display: flex;
    align-items: center;

    padding-top: 74px;

    background:
        linear-gradient(
            90deg,
            rgba(7, 20, 38, 0.96),
            rgba(11, 31, 59, 0.75)
        ),
        url("Imagens/security-service-hero-img-bg.jpg")
        center / cover no-repeat;
}


/* =========================================================
   TOPO INTERNO — ALINHADO À ESQUERDA
========================================================= */

.page-hero-content {
    width: 100%;
    max-width: 760px;

    margin: 0;

    color: var(--white);

    text-align: left;
}

.page-hero-content h1 {
    max-width: 850px;

    margin: 12px 0 0;

    color: var(--white);

    font-family: "Lato", sans-serif;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -1.5px;
}

.page-hero-content p {
    max-width: 720px;

    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   COMPATIBILIDADE COM O HTML ATUAL
========================================================= */

.page-hero .eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.page-hero .eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--blue);
}


/* =========================================================
   CONTAINER DO HERO INTERNO
========================================================= */

.page-hero > .container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    text-align: left;
}

.page-hero > .container h1 {
    max-width: 850px;

    margin: 18px 0 0;

    color: var(--white);

    font-family: "Lato", sans-serif;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -1.5px;
}

.page-hero > .container p {
    max-width: 720px;

    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   ANIMAÇÕES
========================================================= */

.animate-on-scroll {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

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

    gap: 9px;

    padding: 13px 17px;

    min-height: 48px;

    border-radius: 100px;

    background: #25D366;

    color: #FFFFFF !important;

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.20);

    transition: var(--transition);
}

.whatsapp-float i {
    display: block;

    color: #FFFFFF !important;

    font-size: 20px;

    line-height: 1;
}

.whatsapp-float span {
    display: inline;

    color: #FFFFFF !important;

    white-space: nowrap;
}

.whatsapp-float:hover {
    background: #1ebe5d;

    color: #FFFFFF !important;

    transform: translateY(-3px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   RESPONSIVO 1000PX
========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .intro-grid {
        gap: 50px;
    }

    .differentials-grid,
    .differential-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differential-item:nth-child(1),
    .differential-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .differential-grid .differential-item:nth-child(1),
    .differential-grid .differential-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .services-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .maintenance-content {
        gap: 50px;
    }

    .maintenance-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        gap: 50px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;

        gap: 45px;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}


/* =========================================================
   RESPONSIVO 800PX
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(100% - 34px, 600px);
    }

    .header-container {
        min-height: 68px;
    }

    .logo img {
        width: 90px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;

        top: 68px;
        left: 17px;
        right: 17px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        border: 1px solid rgba(255, 255, 255, 0.1);

        border-radius: 14px;

        background: rgba(7, 20, 38, 0.98);

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a {
        padding: 14px;

        border-radius: 8px;
    }

    .main-nav > a:not(.nav-button)::after {
        display: none;
    }

    .main-nav > a:hover,
    .main-nav > a.active {
        background: rgba(0, 168, 255, 0.08);
    }

    .nav-button {
        padding: 9px 15px;

        text-align: center;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 105px;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 60px);
    }

    .hero-buttons {
        align-items: stretch;

        flex-direction: column;

        max-width: 320px;
    }

    .hero-trust {
        flex-direction: column;

        gap: 15px;
    }

    .intro-section,
    .solutions-section,
    .maintenance-section,
    .why-section,
    .section.services,
    .section-dark {
        padding: 80px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-text {
        padding-left: 20px;
    }

    .section-top {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .maintenance-section .maintenance-content {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-title {
        position: static;
    }

    .why-item {
        grid-template-columns: 50px 1fr;

        gap: 17px;
    }

    .final-cta-box {
        align-items: flex-start;

        flex-direction: column;

        padding: 45px 35px;
    }

    .internal-final-cta .final-cta-box {
        padding: 38px 30px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

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

        gap: 40px 30px;

        padding: 60px 0 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
    }
}


/* =========================================================
   RESPONSIVO 600PX
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 500px);
    }

    .logo img {
        width: 90px;
    }

    .hero {
        min-height: 730px;
    }

    .hero-background {
        background:
            linear-gradient(
                180deg,
                rgba(7, 20, 38, 0.97),
                rgba(11, 31, 59, 0.82)
            ),
            url("Imagens/security-service-hero-img-bg.jpg")
            center / cover no-repeat;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-trust {
        margin-top: 30px;
    }

    .differentials-grid,
    .differential-grid {
        grid-template-columns: 1fr;
    }

    .differential-grid .differential-item {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .differential-grid .differential-item:last-child {
        border-bottom: 0;
    }

    .differential-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .differential-item:last-child {
        border-bottom: 0;
    }

    .services-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 230px;
    }

    .other-solutions {
        align-items: flex-start;

        flex-direction: column;

        padding: 24px;
    }

    .solution-tags {
        justify-content: flex-start;
    }

    .maintenance-feature {
        display: flex;
        align-items: flex-start;
    }

    .final-cta {
        padding: 55px 0;
    }

    .final-cta-box {
        padding: 38px 25px;
    }

    .internal-final-cta {
        padding: 45px 0;
    }

    .internal-final-cta .final-cta-box {
        padding: 34px 24px;
    }

    .internal-final-cta .final-cta h2 {
        font-size: 30px;
    }

    .internal-final-cta .final-cta p {
        font-size: 12px;
    }

    .internal-final-cta .btn-white {
        width: auto;
        align-self: flex-start;
    }


    /* =====================================================
       QUEM SOMOS — CELULAR
    ===================================================== */

    .section-heading,
    .why-title {
        font-size: clamp(31px, 9vw, 42px);
        letter-spacing: -1px;
    }

    .section-top {
        margin-bottom: 38px;
    }

    .why-section {
        padding: 70px 0;
    }

    .why-list {
        margin-top: 10px;
    }

    .why-item {
        padding: 23px 0;
    }

    .why-item h3 {
        font-size: 17px;
    }

    .why-item p {
        font-size: 12px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

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

        gap: 35px;

        padding: 50px 0 40px;
    }

    .footer-brand,
    .footer-column,
    .footer-contact {
        grid-column: auto;
    }

    .footer-brand img {
        width: 85px;
    }

    .footer-brand p {
        max-width: 300px;

        font-size: 11px;
    }

    .footer-column h3,
    .footer-contact h3 {
        font-size: 12px;
    }

    .footer-column a {
        font-size: 11px;
    }

    .footer-contact p {
        font-size: 11px;
    }

    .site-footer strong {
        font-size: 11px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        padding: 18px 0 25px;
    }

    .footer-bottom p {
        font-size: 9px;
    }

    .footer-bottom > div {
        gap: 8px;
    }

    .footer-bottom > div a {
        width: 34px;
        height: 34px;
    }


    /* =====================================================
       HERO DAS PÁGINAS INTERNAS — CELULAR
    ===================================================== */

    .page-hero {
        min-height: 420px;

        padding-top: 85px;
    }

    .page-hero-content {
        max-width: 100%;

        text-align: left;
    }

    .page-hero-content h1 {
        max-width: 100%;

        margin: 12px 0 0;

        font-size: clamp(36px, 11vw, 48px);
    }

    .page-hero-content p {
        max-width: 100%;

        margin: 18px 0 0;

        font-size: 14px;
    }

    .page-hero > .container {
        text-align: left;
    }

    .page-hero > .container h1 {
        max-width: 100%;

        margin: 18px 0 0;

        font-size: clamp(36px, 11vw, 48px);
    }

    .page-hero > .container p {
        max-width: 100%;

        margin: 18px 0 0;

        font-size: 14px;
    }


    /* =====================================================
       WHATSAPP NO CELULAR — SOMENTE CÍRCULO
    ===================================================== */

    .whatsapp-float {
        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;

        min-height: 52px;

        padding: 0;

        border-radius: 50%;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float i {
        font-size: 23px;
    }
}
