:root {
    --bg: #07111f;
    --text: #ffffff;
    --surface: #08131f;
    --surface-strong: rgba(0, 0, 0, 0.35);
    --surface-border: rgba(255, 255, 255, 0.06);
    --surface-border-2: rgba(255, 255, 255, 0.08);
    --muted: #cfd8e5;
    --muted-alt: #a8b8d3;
    --accent: #00c2ff;
    --btn-primary: linear-gradient(135deg, #00c2ff, #2563eb);
    --btn-danger: linear-gradient(135deg, #d10000, #960000);
    --overlay: rgba(0, 0, 0, 0.88);
}

html.theme-light {
    --bg: #f4f7fb;
    --text: #111827;
    --surface: #ffffff;
    --surface-strong: rgba(255, 255, 255, 0.98);
    --surface-border: rgba(15, 23, 42, 0.08);
    --surface-border-2: rgba(15, 23, 42, 0.15);
    --muted: #374151;
    --muted-alt: #6b7280;
    --accent: #2563eb;
    --btn-primary: linear-gradient(135deg, #2563eb, #0284c7);
    --btn-danger: linear-gradient(135deg, #dc2626, #b91c1c);
    --overlay: rgba(255, 255, 255, 0.95);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x:hidden;
}

html.access-blocked body > *:not(.access-gate),
body.locked > *:not(.access-gate) {
    display: none !important;
}

body.locked {
    overflow: hidden;
}

.theme-switcher {
    width: 44px;
    height: 44px;
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.theme-switcher:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.access-gate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.88);
    padding: 24px;
}

.access-card {
    width: min(420px, 100%);
    background: var(--surface);
    border: 1px solid var(--surface-border-2);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 18px;
    text-align: center;
}

.access-logo {
    width: 90px;
    margin: 0 auto;
}

.access-card h3 {
    margin: 0;
    font-size: 28px;
    color: #ffffff;
}

.access-card p {
    color: #cfd8e5;
    line-height: 1.7;
    margin: 0;
}

.access-card label {
    color: #a8b8d3;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
}

.access-card input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: #eef2f7;
    font-size: 16px;
}

.access-card input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.access-error {
    min-height: 22px;
    color: #f87171;
    font-size: 14px;
    text-align: left;
}

.btn-access {
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: 14px;
    background: var(--btn-danger);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.btn-access:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.hero{
    min-height:100vh;

    background:
    linear-gradient(rgba(4,10,20,0.82),rgba(4,10,20,0.85)),
    url('Imagens/Gps.jpeg');

    background-size:cover;
    background-position:center;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    z-index:1000;

    padding:22px 7%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background: var(--surface-strong);
    backdrop-filter:blur(14px);

    border-bottom:1px solid var(--surface-border);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center; /* padrão desktop */
}

.logo-area img {
    width: 100px;
    height: 55px;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
    .logo-area {
        justify-content: flex-start;   /* força o logo à esquerda */
        padding-left: 10px;            /* opcional: dá um respiro da borda */
    }
}



.logo-area h2{
    font-size:20px;
    font-weight:800;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color: var(--text);
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color: var(--accent);
}

.nav-btn{
    padding:14px 28px;

    border-radius:50px;

    background: var(--btn-primary);

    color:white;

    font-weight:600;

    transition:0.4s;
}

.nav-btn:hover{
    transform:translateY(-4px);
}

/* HERO */

.hero-content{
    min-height:100vh;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    padding:140px 7%;
}

.badge{
    display:inline-block;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.1);

    padding:12px 20px;

    border-radius:50px;

    margin-bottom:30px;

    color:#cfe6ff;
}

.hero-left h1{
    font-size:50px;
    line-height:1.05;

    margin-bottom:30px;

    font-weight:900;
}

.hero-left p{
    color:#c4cfdd;

    font-size:18px;

    line-height:1.8;

    max-width:650px;

    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:17px 32px;

    border-radius:50px;

    font-weight:600;

    transition:0.4s;
}

.btn-primary{
    background:linear-gradient(135deg,#00c2ff,#2563eb);
    color:white;
}

.btn-secondary{
    border:1px solid var(--surface-border);
    color: var(--text);
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}

.hero-right img{
    border-radius:35px;
    box-shadow:0 30px 70px rgba(0,0,0,0.45);
    height: 500px;
}

/* GENERAL */

section{
    padding:120px 7%;
}

.section-title{
    margin-bottom:70px;
}

.section-title span{
    color:#00c2ff;

    font-weight:700;

    letter-spacing:2px;
}

.section-title h2{
    margin-top:15px;

    font-size:52px;

    line-height:1.2;
}

.center{
    text-align:center;
}

/* ABOUT */

.about-section{
    background:#0b1728;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-images{
    position:relative;
}

.main-image{
    border-radius:35px;
}

.small-image{
    width:280px;

    position:absolute;

    right:-30px;
    bottom:-40px;

    border-radius:30px;

    border:6px solid #0b1728;
}

.about-content h3{
    font-size:42px;

    margin-bottom:25px;
}

.about-content p{
    color:#c4cfdd;

    margin-bottom:25px;

    line-height:1.8;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;
}

.stat-box{
    background:#101d31;

    padding:30px;

    border-radius:24px;

    transition:0.4s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h2{
    color:#00c2ff;

    font-size:42px;

    margin-bottom:10px;
}

/* SERVICES */

.services-section{
    background:#07111f;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.service-card{
    background:#0f1a2d;

    border-radius:30px;

    overflow:hidden;

    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-12px);
}

.service-card img{
    height:250px;
    object-fit:cover;
}

.service-content{
    padding:30px;
}

.service-icon{
    width:75px;
    height:75px;

    border-radius:22px;

    background:linear-gradient(135deg,#00c2ff,#2563eb);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    margin-bottom:20px;
}

.service-content h3{
    font-size:28px;

    margin-bottom:15px;
}

.service-content p{
    color:#c4cfdd;
    line-height:1.7;
}

/* TEAM */

.team-section{
    background:#0b1728;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.team-card{
    background:#0f1a2d;

    border-radius:30px;

    overflow:hidden;

    transition:0.4s;
}

.team-card:hover{
    transform:translateY(-12px);
}

.team-card img{
    height:320px;
    object-fit:cover;
}

.team-content{
    padding:30px;
    text-align:center;
}

.team-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.team-content p{
    color:#c4cfdd;
}

/* CTA */

.cta-section{
    position:relative;

    background:
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    text-align:center;
}

.cta-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.72);
}

.cta-content{
    position:relative;
    z-index:2;

    max-width:850px;

    margin:auto;
}

.cta-content h2{
    font-size:64px;

    margin-bottom:25px;
}

.cta-content p{
    color:#d6deea;

    font-size:18px;

    margin-bottom:35px;
}

/* CONTACT */

.contact-section{
    background:#07111f;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.contact-box{
    background:#0f1a2d;

    padding:45px 35px;

    border-radius:30px;

    text-align:center;

    transition:0.4s;
}

.contact-box:hover{
    transform:translateY(-10px);
}

.contact-box i{
    font-size:42px;

    color:#00c2ff;

    margin-bottom:20px;
}

.contact-box h3{
    font-size:28px;

    margin-bottom:15px;
}

.contact-box p{
    color:#c4cfdd;
}

/* =========================
   FOOTER MODERNO PREMIUM
========================= */

footer{
    position:relative;

    background:
    linear-gradient(
        135deg,
        #050b14 0%,
        #081120 40%,
        #0b1728 100%
    );

    padding:90px 7% 25px;

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,0.06);
}

/* EFEITO DE LUZ */

footer::before{
    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:#004cff;

    filter:blur(180px);

    opacity:0.15;

    top:-250px;
    right:-150px;
}

/* GRID */

.footer-container{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

    margin-bottom:60px;
}

/* LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:25px;
}

.footer-logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.footer-logo h2{
    font-size:26px;
    font-weight:800;
}

/* TEXTO */

.footer-about p{
    color:#aeb8c7;

    line-height:1.9;

    max-width:420px;

    margin-bottom:30px;
}

/* SOCIALS */

.footer-socials{
    display:flex;
    gap:15px;
}

.footer-socials a{
    width:50px;
    height:50px;

    border-radius:16px;

    background:rgba(255,255,255,0.05);

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    font-size:18px;

    transition:0.4s;

    border:1px solid rgba(255,255,255,0.06);
}

.footer-socials a:hover{
    background:linear-gradient(135deg,#00c2ff,#2563eb);

    transform:translateY(-6px);
}

/* TITULOS */

.footer-links h3,
.footer-contact h3{
    font-size:22px;

    margin-bottom:25px;

    position:relative;
}

.footer-links h3::after,
.footer-contact h3::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-10px;

    width:50px;
    height:3px;

    background:#00c2ff;

    border-radius:20px;
}

/* LINKS */

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:#aeb8c7;

    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#00c2ff;

    padding-left:6px;
}

/* CONTACTOS */

.footer-contact-item{
    display:flex;
    gap:15px;

    margin-bottom:22px;
}

.footer-contact-item i{
    color:#00c2ff;

    font-size:18px;

    margin-top:4px;
}

.footer-contact-item p{
    color:#aeb8c7;

    line-height:1.7;
}

/* BOTTOM */

.footer-bottom{
    position:relative;
    z-index:2;

    border-top:1px solid rgba(255,255,255,0.06);

    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    gap:20px;
}

.footer-bottom p{
    color:#93a3b8;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    color:#93a3b8;

    transition:0.3s;
}

.footer-bottom-links a:hover{
    color:#00c2ff;
}

/* RESPONSIVO */

@media(max-width:1100px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:700px){

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}
.footer-bottom a{
    color:#00c2ff;
    font-weight:600;
    transition:0.3s;
}

.footer-bottom a:hover{
    color:white;
}
/* =========================
   QUOTE PAGE PREMIUM
========================= */

.quote-page{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(3,8,18,0.92),
        rgba(3,8,18,0.95)
    ),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:80px 7%;
}

.quote-container{
    width:100%;
    max-width:1400px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:40px;
}

/* LEFT */

.contact-info{
    background:
    linear-gradient(
        135deg,
        rgba(15,26,45,0.92),
        rgba(19,35,61,0.92)
    );

    backdrop-filter:blur(15px);

    padding:60px;

    border-radius:35px;

    border:1px solid rgba(255,255,255,0.06);

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.quote-logo{
    width:240px;

    margin-bottom:30px;
}

.quote-badge{
    display:inline-block;

    width:max-content;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    margin-bottom:30px;
}

.contact-info h3{
    font-size:48px;

    line-height:1.2;

    margin-bottom:25px;
}

.contact-info p{
    color:#c4cfdd;

    line-height:1.9;

    margin-bottom:40px;

    font-size:17px;
}

.info-item{
    display:flex;
    align-items:center;

    gap:15px;

    margin-bottom:25px;
}

.info-item i{
    width:55px;
    height:55px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #00c2ff,
        #2563eb
    );

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;
}

/* FORM */

.quote-form{
    background:
    rgba(10,20,35,0.88);

    backdrop-filter:blur(20px);

    padding:55px;

    border-radius:35px;

    border:1px solid rgba(255,255,255,0.06);
}

.quote-form h2{
    font-size:42px;

    margin-bottom:35px;
}

.input-group{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;

    background:#081120;

    border:1px solid rgba(255,255,255,0.08);

    padding:18px 20px;

    border-radius:18px;

    color:white;

    font-size:16px;

    outline:none;

    transition:0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:#00c2ff;
}

.quote-form textarea{
    resize:none;

    margin-top:20px;
}

.quote-form button{
    width:100%;

    margin-top:25px;

    border:none;

    padding:18px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #00c2ff,
        #2563eb
    );

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.quote-form button:hover{
    transform:translateY(-5px);
}

/* RESPONSIVO */

@media(max-width:1100px){

    .quote-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .input-group{
        grid-template-columns:1fr;
    }

    .quote-form,
    .contact-info{
        padding:35px;
    }

    .contact-info h3{
        font-size:36px;
    }

}
/* =========================
   COMPANY PROFILE
========================= */

.profile-section{
    padding:100px 7%;

    background:#0b1728;
}

.profile-card{
    background:
    linear-gradient(
        135deg,
        #0f1a2d,
        #13233d
    );

    border-radius:35px;

    padding:60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.06);
}

/* EFEITO */

.profile-card::before{
    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:#00c2ff;

    filter:blur(180px);

    opacity:0.12;

    top:-180px;
    right:-120px;
}

.profile-left{
    position:relative;
    z-index:2;

    max-width:650px;
}

.profile-badge{
    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    margin-bottom:25px;

    color:#dce8f5;

    font-weight:600;
}

.profile-left h2{
    font-size:52px;

    line-height:1.15;

    margin-bottom:25px;
}

.profile-left p{
    color:#c4cfdd;

    line-height:1.9;

    font-size:17px;
}

.profile-right{
    position:relative;
    z-index:2;
}

.download-btn{
    display:flex;
    align-items:center;

    gap:15px;

    padding:22px 35px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        #00c2ff,
        #2563eb
    );

    color:white;

    font-size:18px;

    font-weight:700;

    transition:0.4s;

    box-shadow:
    0 15px 40px rgba(0,194,255,0.25);
}

.download-btn i{
    font-size:24px;
}

.download-btn:hover{
    transform:translateY(-6px) scale(1.02);
}

/* RESPONSIVO */

@media(max-width:950px){

    .profile-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .profile-left h2{
        font-size:40px;
    }

}

@media(max-width:650px){

    .profile-card{
        padding:35px;
    }

    .profile-left h2{
        font-size:32px;
    }

    .download-btn{
        width:100%;
        justify-content:center;
    }

}
/* =========================
   ABOUT HERO
========================= */

.about-hero{
    position:relative;

    min-height:75vh;

    background:
    linear-gradient(
        rgba(3,8,18,0.82),
        rgba(3,8,18,0.88)
    ),
    url('Imagens/about-banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 7%;
}

.about-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(0,194,255,0.18),
        transparent 35%
    );
}

.about-hero-content{
    position:relative;
    z-index:2;

    max-width:900px;
}

.about-badge{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    margin-bottom:30px;

    color:#dce8f5;

    font-weight:600;
}

.about-hero-content h1{
    font-size:78px;

    line-height:1.08;

    margin-bottom:25px;
}

.about-hero-content p{
    color:#c4cfdd;

    font-size:18px;

    line-height:1.9;
}


/* =========================
   ABOUT SECTION
========================= */

.about-page-section{
    background:#0b1728;

    padding:120px 7%;
}

.about-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-page-images{
    position:relative;
}

.about-main-image{
    border-radius:35px;

    height:650px;

    object-fit:cover;
}

.about-small-image{
    width:260px;

    position:absolute;

    right:-30px;
    bottom:-40px;

    border-radius:28px;

    border:6px solid #0b1728;
}

.section-mini-title{
    color:#00c2ff;

    letter-spacing:2px;

    font-weight:700;
}

.about-page-content h2{
    font-size:56px;

    line-height:1.15;

    margin:20px 0 30px;
}

.about-page-content p{
    color:#c4cfdd;

    line-height:1.9;

    margin-bottom:25px;

    font-size:17px;
}

/* STATS */

.about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:40px;
}

.about-stat-box{
    background:#101d31;

    padding:30px;

    border-radius:25px;

    text-align:center;

    transition:0.4s;
}

.about-stat-box:hover{
    transform:translateY(-8px);
}

.about-stat-box h3{
    font-size:42px;

    color:#00c2ff;

    margin-bottom:10px;
}

.about-stat-box span{
    color:#c4cfdd;
}


/* =========================
   OBJECTIVE
========================= */

.objective-section{
    background:#07111f;

    padding:100px 7%;
}

.objective-card{
    max-width:1000px;

    margin:auto;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #0f1a2d,
        #13233d
    );

    padding:70px;

    border-radius:40px;

    border:1px solid rgba(255,255,255,0.06);
}

.objective-icon{
    width:100px;
    height:100px;

    margin:auto auto 30px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        #00c2ff,
        #2563eb
    );

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:40px;
}

.objective-card h2{
    font-size:50px;

    margin-bottom:25px;
}

.objective-card p{
    color:#c4cfdd;

    line-height:1.9;

    font-size:18px;
}


/* =========================
   MVV
========================= */

.mvv-section{
    background:#0b1728;

    padding:120px 7%;
}

.mvv-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.mvv-card{
    background:#101d31;

    padding:45px;

    border-radius:30px;

    transition:0.4s;
}

.mvv-card:hover{
    transform:translateY(-10px);
}

.mvv-icon{
    width:85px;
    height:85px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        #00c2ff,
        #2563eb
    );

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;

    margin-bottom:25px;
}

.mvv-card h3{
    font-size:34px;

    margin-bottom:20px;
}

.mvv-card p{
    color:#c4cfdd;

    line-height:1.8;
}


/* =========================
   CTA
========================= */

.about-cta{
    position:relative;

    padding:130px 7%;

    text-align:center;

    background:
    url('Imagens/security-bg.jpg');

    background-size:cover;
    background-position:center;
}

.about-cta-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.72);
}

.about-cta-content{
    position:relative;
    z-index:2;

    max-width:850px;

    margin:auto;
}

.about-cta-content h2{
    font-size:64px;

    margin-bottom:25px;
}

.about-cta-content p{
    color:#d6deea;

    line-height:1.9;

    margin-bottom:35px;

    font-size:18px;
}


/* =========================
   RESPONSIVO
========================= */

@media(max-width:1100px){

    .about-page-grid{
        grid-template-columns:1fr;
    }

    .about-hero-content h1{
        font-size:55px;
    }

    .about-page-content h2{
        font-size:44px;
    }

    .objective-card h2{
        font-size:40px;
    }

    .about-cta-content h2{
        font-size:46px;
    }

}

@media(max-width:750px){

    .about-hero-content h1{
        font-size:40px;
    }

    .about-page-content h2{
        font-size:34px;
    }

    .about-stats{
        grid-template-columns:1fr;
    }

    .about-main-image{
        height:500px;
    }

    .about-small-image{
        width:180px;
        right:-10px;
    }

    .objective-card{
        padding:40px 30px;
    }

    .objective-card h2{
        font-size:32px;
    }

    .mvv-card{
        padding:35px;
    }

    .about-cta-content h2{
        font-size:34px;
    }

}
/* =========================
   CLIENTS SLIDER
========================= */

.clients-section{
    padding:110px 0;

    background:#07111f;

    overflow:hidden;
}

.clients-slider{
    position:relative;

    width:100%;

    margin-top:70px;
}

.clients-track{
    display:flex;

    align-items:center;

    gap:35px;

    width:max-content;

    animation:scrollClients 28s linear infinite;
}

.client-box{
    min-width:240px;
    height:140px;

    background:
    linear-gradient(
        135deg,
        #0f1a2d,
        #13233d
    );

    border-radius:30px;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px;

    border:1px solid rgba(255,255,255,0.06);

    transition:0.4s;
}

.client-box:hover{
    transform:translateY(-10px);
}

.client-box img{
    max-width:140px;

    max-height:70px;

    object-fit:contain;

    filter:grayscale(100%) brightness(1.2);

    opacity:0.8;

    transition:0.4s;
}

.client-box:hover img{
    filter:none;

    opacity:1;
}

/* ANIMAÇÃO */

@keyframes scrollClients{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* RESPONSIVO */

@media(max-width:768px){

    .client-box{
        min-width:190px;
        height:120px;
    }

    .client-box img{
        max-width:110px;
    }

}
/* =========================================
   RESPONSIVIDADE COMPLETA PROFISSIONAL
   STANDARD SECURITY
========================================= */

/* EVITA OVERFLOW */

html,
body{
    width:100%;
    overflow-x:hidden;
}

/* IMAGENS */

img{
    max-width:100%;
    height:auto;
}

/* CONTAINERS */

.hero-content,
.about-grid,
.about-page-grid,
.quote-container,
.footer-container,
.services-grid,
.team-grid,
.contact-grid,
.mvv-grid,
.about-stats,
.stats-grid{
    width:100%;
}

/* =========================================
   DESKTOP GRANDE
========================================= */

@media screen and (max-width:1400px){

    .hero-left h1{
        font-size:60px;
    }

    .section-title h2{
        font-size:46px;
    }

}

/* =========================================
   LAPTOP
========================================= */

@media screen and (max-width:1200px){

    .hero-content,
    .about-grid,
    .about-page-grid,
    .quote-container{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-left p{
        margin:auto auto 35px;
    }

    .hero-right{
        display:flex;
        justify-content:center;
    }

    .hero-right img{
        width:100%;
        max-width:700px;
        height:auto;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

/* =========================================
   TABLETS
========================================= */

@media screen and (max-width:992px){

    section{
        padding:90px 5%;
    }

    .navbar{
        padding:18px 5%;
    }

    .hero-content{
        gap:50px;
    }

    .hero-left h1{
        font-size:50px;
    }

    .section-title h2{
        font-size:40px;
    }

    .about-content h3,
    .about-page-content h2,
    .profile-left h2{
        font-size:38px;
    }

    .cta-content h2,
    .about-cta-content h2{
        font-size:42px;
    }

    .contact-info h3{
        font-size:36px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width:768px){

    *{
        max-width:100%;
    }

    body{
        overflow-x:hidden;
    }

    section{
        padding:80px 5%;
    }

    /* NAVBAR */

    .navbar{
        flex-direction:column;
        gap:18px;

        padding:15px 5%;
    }

    .logo-area{
        width:100%;
        justify-content:center;
    }

    .logo-area img{
        width:70px;
        height:45px;
    }

    .logo-area h2{
        font-size:18px;
    }

    .nav-links{
        width:100%;

        justify-content:center;

        flex-wrap:wrap;

        gap:14px;
    }

    .nav-links a{
        font-size:14px;
    }

    .nav-btn{
        width:100%;

        text-align:center;
    }

    /* HERO */

    .hero{
        min-height:auto;
    }

    .hero-content{
        grid-template-columns:1fr;

        padding:190px 5% 100px;

        text-align:center;
    }

    .hero-left h1{
        font-size:38px;
        line-height:1.2;
    }

    .hero-left p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-right img{
        width:100%;
        height:auto;

        border-radius:24px;
    }

    /* TITULOS */

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2{
        font-size:30px;
    }

    /* ABOUT */

    .about-grid,
    .about-page-grid{
        grid-template-columns:1fr;

        gap:50px;
    }

    .about-content h3,
    .about-page-content h2{
        font-size:30px;
    }

    .stats-grid,
    .about-stats{
        grid-template-columns:1fr;
    }

    .main-image,
    .about-main-image{
        width:100%;
        height:auto;
    }

    .small-image,
    .about-small-image{
        display:none;
    }

    /* SERVICES */

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        width:100%;
    }

    .service-card img{
        width:100%;
        height:220px;
    }

    .service-content{
        padding:25px;
    }

    .service-content h3{
        font-size:24px;
    }

    /* TEAM */

    .team-grid{
        grid-template-columns:1fr;
    }

    .team-card img{
        height:260px;
    }

    /* CTA */

    .cta-content h2,
    .about-cta-content h2{
        font-size:32px;
    }

    .cta-content p,
    .about-cta-content p{
        font-size:16px;
    }

    /* CONTACT */

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-box{
        padding:35px 25px;
    }

    /* FOOTER */

    footer{
        padding:70px 5% 30px;
    }

    .footer-container{
        grid-template-columns:1fr;

        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;

        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;

        flex-wrap:wrap;
    }

    /* QUOTE */

    .quote-page{
        padding:180px 5% 100px;
    }

    .quote-container{
        grid-template-columns:1fr;
    }

    .contact-info,
    .quote-form{
        width:100%;

        padding:30px 22px;
    }

    .contact-info h3{
        font-size:30px;
    }

    .quote-form h2{
        font-size:28px;
    }

    .input-group{
        grid-template-columns:1fr;
    }

    .quote-form input,
    .quote-form textarea,
    .quote-form select{
        width:100%;
    }

    .quote-logo{
        width:170px;
    }

    /* PROFILE */

    .profile-card{
        flex-direction:column;

        align-items:flex-start;

        padding:35px 25px;
    }

    .profile-left h2{
        font-size:30px;
    }

    .download-btn{
        width:100%;

        justify-content:center;
    }

    /* OBJECTIVE */

    .objective-card{
        padding:40px 25px;
    }

    .objective-card h2{
        font-size:30px;
    }

    /* MVV */

    .mvv-grid{
        grid-template-columns:1fr;
    }

    .mvv-card{
        padding:35px 25px;
    }

    .mvv-card h3{
        font-size:26px;
    }

    /* CLIENTS */

    .clients-track{
        gap:20px;
    }

    .client-box{
        min-width:170px;
        height:100px;
    }

}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media screen and (max-width:480px){

    section{
        padding:70px 4%;
    }

    .hero-content{
        padding:210px 4% 90px;
    }

    .hero-left h1{
        font-size:30px;
    }

    .section-title h2{
        font-size:26px;
    }

    .about-content h3,
    .about-page-content h2,
    .profile-left h2{
        font-size:26px;
    }

    .cta-content h2,
    .about-cta-content h2{
        font-size:28px;
    }

    .contact-info h3{
        font-size:26px;
    }

    .quote-form h2{
        font-size:24px;
    }

    .objective-card h2{
        font-size:26px;
    }

    .footer-logo{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-socials{
        flex-wrap:wrap;
    }

    .service-content,
    .team-content,
    .mvv-card,
    .contact-box{
        padding:22px;
    }

}
/* =========================================
   MOBILE MENU HAMBURGUER
========================================= */

/* BOTÃO HAMBURGUER */

.menu-toggle{
    display:none;

    font-size:28px;

    color:white;

    cursor:pointer;
}

/* MOBILE */

@media screen and (max-width:768px){

    .navbar{
        position:fixed;

        top:0;
        left:0;

        width:100%;

        flex-direction:row;

        justify-content:space-between;

        align-items:center;

        padding:18px 5%;
    }

    /* ESCONDER MENU */

    .nav-links{
        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:#081120;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:35px 0;

        transform:translateY(-200%);

        opacity:0;

        visibility:hidden;

        transition:0.4s;

        border-top:1px solid rgba(255,255,255,0.06);
    }

    /* MENU ACTIVO */

    .nav-links.active{
        transform:translateY(0);

        opacity:1;

        visibility:visible;
    }

    .nav-links li{
        width:100%;

        text-align:center;
    }

    .nav-links a{
        font-size:18px;
    }

    /* BOTÃO */

    .nav-btn{
        display:none;
    }

    /* MOSTRAR HAMBURGUER */

    .menu-toggle{
        display:block;
    }

}