*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --blue: #38BDF8;
    --blue-dark: #0EA5E9;
    --blue-deep: #0284C7;
    --green: #4ADE80;
    --green-dark: #22C55E;
    --dark: #0A0A0A;
    --dark2: #111111;
    --white: #FFFFFF;
    --gray: #F9FAFB;
    --text: #111827;
    --muted: #6B7280;
    --border: #E5E7EB;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); overflow-x: hidden; }
.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 6%;
    transition: background .3s;
}
nav.scrolled { background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); }
.nl { display: flex; align-items: center; gap: 36px; }
.nav-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .3s; }
.nav-link:hover { color: white; }
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.nav-logo img { display: block; width: auto; height: 46px; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta {
    background: #0EA5E9; color: white;
    padding: 10px 22px; border-radius: 6px;
    font-weight: 700; font-size: 13px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 7px;
    transition: opacity .3s, transform .2s;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 0 6%;
}
.hero-bg {
    position: absolute; inset: 0;
    background: var(--dark);
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: right center;
    opacity: 0.45;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(7,30,61,0.72);
}
.hero-vertical-text {
    position: absolute; left: 28px; top: 50%; transform: translateY(-50%) rotate(-90deg);
    font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 4px;
    color: rgba(255,255,255,0.18); text-transform: uppercase; white-space: nowrap;
}
.hero-inner {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: flex-start; width: 100%;
    padding-top: 80px; max-width: 680px;
}
.hero-pre {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--blue); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.hero-pre::before { content: ''; display: block; width: 28px; height: 2px; background: #0EA5E9; }
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(58px, 8vw, 108px);
    line-height: 0.92; color: white; margin-bottom: 16px;
}
.hero h1 .green { color: #22C55E; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 420px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-g {
    background: #0EA5E9; color: white;
    padding: 16px 32px; border-radius: 6px;
    font-weight: 700; font-size: 14px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .3s; text-transform: uppercase; letter-spacing: .5px;
}
.btn-g:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,.3); }
.btn-outline {
    background: transparent; color: white;
    padding: 16px 28px; border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,.25);
    font-weight: 600; font-size: 14px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 9px;
    transition: all .3s; text-transform: uppercase; letter-spacing: .5px;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.hero-stats-wrap {
    display: flex; flex-direction: column; align-items: flex-end; gap: 24px;
}
.hero-stats {
    background: white; border-radius: 12px; padding: 20px 24px;
    box-shadow: 0 12px 48px rgba(0,0,0,.35);
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px;
}
.hs { text-align: center; }
.hs strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 30px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hs span { font-size: 11px; color: var(--muted); font-weight: 500; }
.hero-badge {
    background: var(--grad); color: white; border-radius: 10px;
    padding: 14px 20px; display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 700;
}
.hero-badge i { font-size: 22px; }

/* TAGLINE */
.tagline-sec { background: #DCFCE7; padding: 80px 6%; text-align: center; }
.tagline-label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.tagline-big { font-size: clamp(28px, 5vw, 54px); font-weight: 800; color: var(--text); line-height: 1.15; max-width: 820px; margin: 0 auto 16px; }
.tagline-big .grad-word { color: #0EA5E9; }
.tagline-sub { color: var(--muted); font-size: 16px; max-width: 560px; margin: 20px auto 0; line-height: 1.75; }

/* SERVICES */
.service-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.srv-content { padding: 80px 7%; display: flex; flex-direction: column; justify-content: center; }
.srv-num { font-family: 'Bebas Neue', sans-serif; font-size: 80px; line-height: 1; color: rgba(0,0,0,.06); margin-bottom: -20px; }
.srv-num.light { color: rgba(14,165,233,.07); }
.srv-tag { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-deep); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.srv-tag::before { content: ''; display: block; width: 20px; height: 2px; background: #22C55E; }
.srv-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 5vw, 60px); line-height: 1.0; color: var(--text); margin-bottom: 18px; }
.srv-content p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 28px; max-width: 440px; }
.srv-features { list-style: none; margin-bottom: 32px; }
.srv-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); padding: 7px 0; }
.srv-features li i { color: var(--blue-dark); font-size: 13px; flex-shrink: 0; }
.srv-visual { position: relative; overflow: hidden; }
.srv-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.srv-visual:hover img { transform: scale(1.04); }
.srv-visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA SERVIÇOS */
.srv-cta { background: white; padding: 48px 6%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.srv-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap; width: 100%;
}
.srv-cta-pre { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #0EA5E9; margin-bottom: 6px; }
.srv-cta-inner h2 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.srv-cta-sub { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 480px; }
.srv-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-outline-dark {
    background: transparent; color: var(--text);
    padding: 16px 28px; border-radius: 6px;
    border: 1.5px solid var(--border);
    font-weight: 600; font-size: 14px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 9px;
    transition: all .3s; text-transform: uppercase; letter-spacing: .5px;
}
.btn-outline-dark:hover { border-color: var(--blue-dark); color: var(--blue-dark); }
@media (max-width: 900px) {
    .srv-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* VANTAGENS */
.vant-section { background: var(--dark); padding: 100px 6%; }
.vant-head { text-align: center; margin-bottom: 64px; }
.vant-head .pre { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #22C55E; display: block; margin-bottom: 16px; }
.vant-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 5vw, 66px); color: white; }
.vant-head h2 span { color: #22C55E; }
.vant-head p { color: rgba(255,255,255,.5); font-size: 15px; max-width: 540px; margin: 16px auto 0; line-height: 1.75; }
.vant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.vant-card {
    background: #141414; padding: 40px 36px;
    display: flex; flex-direction: column; gap: 18px;
    transition: background .3s;
    border: 1px solid #1f1f1f;
}
.vant-card:hover { background: #1a1a1a; }
.vant-ico {
    width: 52px; height: 52px; border-radius: 10px;
    background: #0EA5E9;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white;
}
.vant-card:nth-child(even) .vant-ico { background: #22C55E; }
.vant-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: white; letter-spacing: .5px; }
.vant-card p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; }

/* ABOUT */
.about-full {
    background: #DCFCE7; padding: 100px 6%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-label { font-size: 12px; font-weight: 700; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.about-label::before { content: ''; display: block; width: 24px; height: 2px; background: #22C55E; }
.about-full h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px,5vw,60px); line-height: 1.05; color: var(--text); margin-bottom: 22px; }
.about-full h2 span { color: #22C55E; }
.about-full p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.about-visual { position: relative; height: 500px; }
.av-main {
    position: absolute; top: 0; right: 0; width: 80%; height: 87%;
    border-radius: 12px; overflow: hidden;
}
.av-main img { width: 100%; height: 100%; object-fit: cover; }
.av-sec {
    position: absolute; bottom: 0; left: 0; width: 52%; height: 50%;
    border-radius: 12px; overflow: hidden;
    border: 5px solid #E0F2FE;
}
.av-sec img { width: 100%; height: 100%; object-fit: cover; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; border: 1.5px solid rgba(14,165,233,.2); border-radius: 10px; overflow: hidden; }
.mvv-item { padding: 24px 20px; border-right: 1.5px solid rgba(14,165,233,.2); }
.mvv-item:last-child { border-right: none; }
.mvv-item strong { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue-dark); margin-bottom: 8px; }
.mvv-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* GALLERY */
.gallery-section { background: #DBEAFE; padding: 100px 6%; }
.gallery-head { text-align: center; margin-bottom: 60px; }
.gallery-head .pre-label { font-size: 12px; font-weight: 700; color: #0EA5E9; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; display: block; }
.gallery-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px,5vw,64px); color: var(--text); }
.gallery-head h2 span { color: #0EA5E9; }
.gallery-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; aspect-ratio: 4/3; width: calc((100% - 20px) / 3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%); opacity: 0; transition: opacity .35s; display: flex; align-items: flex-end; padding: 18px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-label { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; }

/* PARCEIROS */
.parceiros-section { background: white; padding: 80px 6%; }
.parceiros-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.parceiros-text .pre { font-size: 12px; font-weight: 700; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.parceiros-text .pre::before { content: ''; display: block; width: 20px; height: 2px; background: #0EA5E9; }
.parceiros-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 54px); line-height: 1.05; color: var(--text); margin-bottom: 18px; }
.parceiros-text p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.parceiros-img { border-radius: 12px; overflow: hidden; }
.parceiros-img img { width: 100%; height: auto; display: block; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.93); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 85vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 32px; color: white; cursor: pointer; background: none; border: none; line-height: 1; transition: opacity .2s; }
.lightbox-close:hover { opacity: .6; }

/* FINAL CTA */
.cta2 { background: #166534; padding: 100px 6%; text-align: center; }
.cta2 h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(50px, 7vw, 88px); color: white; line-height: 0.95; margin-bottom: 20px; }
.cta2 p { color: rgba(255,255,255,.75); font-size: 16px; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.cta2-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--text); padding: 17px 34px; border-radius: 6px; font-weight: 800; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all .3s; text-transform: uppercase; }
.btn-white:hover { background: #F0F9FF; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.btn-dark2 { background: rgba(0,0,0,.15); color: white; padding: 17px 28px; border-radius: 6px; font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; border: 1.5px solid rgba(255,255,255,.35); transition: all .3s; text-transform: uppercase; }
.btn-dark2:hover { background: rgba(0,0,0,.3); border-color: white; }

/* FOOTER */
.foot2 { background: var(--dark2); padding: 40px 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.f2logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.f2logo img { display: block; width: auto; height: 44px; }
.f2copy { color: #4B5563; font-size: 12px; }
.f2copy strong { color: #9CA3AF; }
.f2links { display: flex; gap: 10px; }
.f2link { width: 36px; height: 36px; border-radius: 6px; background: #1F1F1F; display: flex; align-items: center; justify-content: center; color: #4B5563; text-decoration: none; font-size: 14px; transition: all .3s; }
.f2link:hover { background: #0EA5E9; color: white; }

/* RESPONSIVE */
@media (max-width: 900px) {
    nav .nl { display: none; }
    .hero-bg img { object-position: 80% center; }
    .hero-inner { grid-template-columns: 1fr; padding-top: 100px; }
    .hero-stats-wrap { align-items: flex-start; }
    .service-section { grid-template-columns: 1fr; }
    .srv-visual { min-height: 280px; order: 1; }
    .srv-content { order: 0; }
    .about-full { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 320px; }
    .vant-grid { grid-template-columns: 1fr; gap: 2px; }
    .gallery-item { width: calc((100% - 10px) / 2); }
    .parceiros-inner { grid-template-columns: 1fr; gap: 40px; }
    .parceiros-img { height: auto; }
    .parceiros-img img { height: auto; width: 100%; object-fit: unset; }
    .foot2 { flex-direction: column; align-items: center; text-align: center; }
    .mvv-grid { grid-template-columns: 1fr; }
    .mvv-item { border-right: none; border-bottom: 1.5px solid rgba(14,165,233,.2); }
    .mvv-item:last-child { border-bottom: none; }
}
