/* =========================================
   PERBRAS – Modern Dark Theme
   ========================================= */

/* ================================================
   VIDEO CAROUSEL — layout TOTVS-style
   Fundo escuro degradê, texto esquerda, vídeo direita
   ================================================ */

/* vc-outer: wrapper relativo que contém carousel + controles overlay */
.vc-outer {
    position: relative;
    width: 100%;
}

/* o carousel em si */
.video-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #03111e 0%, #071d33 60%, #0a2444 100%);
}

/* SVG que forma a onda localizada no centro da base do carousel */
.vc-bottom-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%; height: 70px;
    z-index: 20;
    pointer-events: none;
    display: block;
}

/* dots posicionados absolutamente no vc-outer (não cortados pelo clip-path) */
.vc-outer .vc-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}
.vc-outer .vc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 30;
}
.vc-outer .vc-prev { left: 24px; }
.vc-outer .vc-next { right: 24px; }

/* seta de scroll — no fundo da curva central */
.vc-wave-hint {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}
.vc-scroll-arrow {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    font-size: 1.4rem;
    animation: bounceDown 1.8s ease-in-out infinite;
    line-height: 1;
    padding: 4px;
}
@keyframes bounceDown {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(7px); }
}

/* cada slide empilhado, invisível por padrão */
.vc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}
.vc-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* ---- vídeo cobre o slide inteiro ---- */
.vc-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.vc-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* imagem estática ocupa o mesmo espaço */
.vc-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
}

/* overlay geral levíssimo para garantir legibilidade */
.vc-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(3,17,30,.82) 0%, rgba(3,17,30,.40) 45%, rgba(3,17,30,.0) 100%),
        linear-gradient(to top,   rgba(3,17,30,.55) 0%, transparent 45%);
    pointer-events: none;
}

/* ---- conteúdo textual (coluna esquerda) ---- */
.vc-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 6% 140px;
    max-width: 52%;
}

.vc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 40px;
    padding: 5px 14px;
    font-size: .72rem;
    color: rgba(255,255,255,.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    animation: vcFadeUp .6s ease both;
}
.vc-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent3);
    animation: blink 1.5s infinite;
}

.vc-title {
    font-size: clamp(2rem, 4.2vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 18px;
    animation: vcFadeUp .7s .1s ease both;
}
/* palavra de destaque em azul claro */
.vc-title .hl {
    color: var(--accent3);
}

.vc-subtitle {
    font-size: clamp(.9rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,.65);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: vcFadeUp .7s .22s ease both;
}

.vc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: vcFadeUp .7s .34s ease both;
}

/* stats abaixo dos botões */
.vc-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    flex-wrap: wrap;
    animation: vcFadeUp .7s .46s ease both;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.vc-stat { display: flex; flex-direction: column; gap: 2px; }
.vc-num  { font-size: 1.9rem; font-weight: 900; color: #fff; line-height: 1; }
.vc-lbl  { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; }

@keyframes vcFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ---- dots ---- */
.vc-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}
.vc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: 2px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .3s, transform .3s, border-color .3s;
    padding: 0;
}
.vc-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.25);
}
.vc-dot:hover { background: rgba(255,255,255,.7); }

/* ---- setas laterais ---- */
.vc-arrow {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
    backdrop-filter: blur(8px);
}
.vc-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.vc-outer .vc-prev { left: 24px; }
.vc-outer .vc-next { right: 24px; }

/* ---- barra de progresso ---- */
.vc-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.06);
    z-index: 15;
}
.vc-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent3));
    transition: width .1s linear;
}

/* ---- responsivo ---- */
@media (max-width: 900px) {
    .vc-video-wrap { inset: 0; }
    .vc-overlay {
        background: linear-gradient(to bottom, rgba(3,17,30,.75) 0%, rgba(3,17,30,.6) 100%);
    }
    .vc-content { max-width: 100%; padding: 100px 5% 140px; }
    .vc-title   { font-size: 2rem; }
    .vc-stats   { gap: 20px; }
}
@media (max-width: 560px) {
    .vc-title    { font-size: 1.7rem; }
    .vc-subtitle { font-size: .9rem; }
    .vc-num      { font-size: 1.5rem; }
    .vc-outer .vc-dots  { bottom: 70px; }
    .vc-outer .vc-arrow { display: none; }
}
:root {
    --bg:        #f0f4f8;
    --bg2:       #e6edf5;
    --bg3:       #dce6f0;
    --accent:    #006ba6;
    --accent2:   #004f7c;
    --accent3:   #0090d4;
    --accent-rgb: 0, 107, 166;
    --text:      #1a2636;
    --muted:     #5a7185;
    --border:    rgba(0,107,166,.12);
    --card:      #ffffff;
    --shadow:    0 4px 24px rgba(0,60,100,.10);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: #a8c4d8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- NAV ---- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 0 5%;
    transition: background .4s, box-shadow .4s;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}
.navbar.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 4px 20px rgba(0,60,100,.12);
    backdrop-filter: blur(12px);
}
.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem; font-weight: 900;
    letter-spacing: 3px; color: #fff;
    line-height: 1;
}
.nav-logo span { color: var(--accent); }
.nav-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    /* sobre o vídeo do hero: logo branca */
    filter: brightness(0) invert(1);
    transition: filter .3s;
}
/* após scroll o navbar fica branco — logo volta à cor original */
.navbar.scrolled .nav-logo-img {
    filter: none;
}

/* footer logo — fundo escuro, então mantém branco */
.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9;
    margin-bottom: 12px;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
    letter-spacing: .5px; transition: color .2s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--muted); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff !important; padding: 9px 22px;
    border-radius: 40px; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.navbar.scrolled .hamburger span { background: var(--text); }

/* ---- DROPDOWN ---- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-chevron {
    font-size: .65rem;
    transition: transform .25s;
    position: relative; top: 1px;
}
.has-dropdown:hover .nav-chevron,
.has-dropdown.open   .nav-chevron { transform: rotate(180deg); }

/* painel do dropdown — colado ao trigger via padding-top, sem gap */
.nav-dropdown {
    position: absolute;
    top: 100%;           /* sem gap — padding-top cria a distância visual */
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 520px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,40,80,.18);
    padding: 20px 8px;
    padding-top: 28px;   /* distância visual entre navbar e conteúdo */
    list-style: none;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 200;
}
/* ponte invisível que preenche o espaço entre o link e o painel */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -16px; left: 0; right: 0;
    height: 16px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open   .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* grupo (coluna) */
.dropdown-group { padding: 4px 16px; }
.dropdown-group-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    padding: 4px 0 10px;
    white-space: nowrap;
}
.dropdown-group-label i { font-size: .85rem; }
.dropdown-group ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.dropdown-group ul a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: .86rem;
    font-weight: 500;
    color: var(--text) !important;
    transition: background .18s, color .18s;
    white-space: nowrap;
}
.dropdown-group ul a::after { display: none !important; }
.dropdown-group ul a i { color: var(--muted); font-size: .9rem; transition: color .18s; }
.dropdown-group ul a:hover { background: rgba(0,107,166,.08); color: var(--accent) !important; }
.dropdown-group ul a:hover i { color: var(--accent); }

/* divisor vertical */
.dropdown-divider {
    width: 1px;
    background: var(--border);
    margin: 4px 0;
    align-self: stretch;
}

/* dropdown de coluna única (Home) */
.nav-dropdown--simple {
    min-width: 220px;
    grid-template-columns: 1fr;
    padding: 12px 8px;
    padding-top: 20px;
    left: 0;
    transform: translateX(0) translateY(6px);
}
.nav-dropdown--simple::before { left: 0; right: 0; }
.has-dropdown:hover .nav-dropdown--simple,
.has-dropdown.open   .nav-dropdown--simple {
    transform: translateX(0) translateY(0);
}

/* sobre fundo claro (scrolled) os grupos ficam com texto escuro — já estão */
.navbar.scrolled .has-dropdown > a { color: var(--muted); }
.navbar.scrolled .has-dropdown:hover > a { color: var(--accent); }

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,107,166,.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0,144,212,.12) 0%, transparent 60%),
        linear-gradient(160deg, #d6e8f5 0%, #e8f2fa 50%, #cfe0f0 100%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,107,166,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,107,166,.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 120px 5% 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,107,166,.15); border: 1px solid rgba(0,107,166,.35);
    border-radius: 40px; padding: 6px 16px; margin-bottom: 24px;
    font-size: .8rem; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900; letter-spacing: -1px;
    color: var(--text); margin-bottom: 8px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted); max-width: 600px; margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff; padding: 14px 32px; border-radius: 40px;
    font-weight: 600; font-size: .95rem; transition: .3s;
    border: none; cursor: pointer;
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,107,166,.45); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--accent);
    padding: 13px 32px; border-radius: 40px;
    font-weight: 600; font-size: .95rem; transition: .3s;
    border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.hero-stats {
    display: flex; gap: 48px; margin-top: 64px;
    flex-wrap: wrap;
}
.hero-stat .num {
    font-size: 2.8rem; font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.hero-stat .label { font-size: .82rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--muted); font-size: .75rem; letter-spacing: 1px; text-transform: uppercase;
}
.scroll-dot {
    width: 20px; height: 30px; border: 2px solid rgba(255,255,255,.2);
    border-radius: 10px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot::before {
    content: ''; width: 4px; height: 8px; border-radius: 2px;
    background: var(--accent); animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:.3} }

/* ---- SLIDER ---- */
.slider-section { position: relative; height: 100vh; overflow: hidden; }
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity .8s ease;
    display: flex; align-items: center;
}
.slide.active { opacity: 1; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,10,20,.85) 0%, rgba(5,10,20,.4) 100%);
}
.slide-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 5%; width: 100%;
}
.slide-content h2 { font-size: clamp(2rem, 5vw, 4rem); color: #fff; margin-bottom: 16px; }
.slide-content p { font-size: 1.15rem; color: rgba(255,255,255,.7); max-width: 500px; margin-bottom: 32px; }
.slider-controls {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.3); cursor: pointer; transition: .3s;
    border: none;
}
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    color: #fff; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: .3s; z-index: 10; font-size: 1.2rem;
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ---- SECTIONS ---- */
.section { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-label {
    display: inline-block; color: var(--accent); font-size: .75rem;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

/* ---- ABOUT ---- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img {
    width: 100%; aspect-ratio: 4/3; border-radius: 16px;
    background: linear-gradient(135deg, var(--bg3), #c2d8eb);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    overflow: hidden;
}
.about-img-inner {
    font-size: 5rem; opacity: .15;
}
.about-img-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}

/* Imagens individuais da seção Sobre */
.about-img--sph {
    aspect-ratio: 1/1;
}
.about-img--sph .about-img-photo {
    object-fit: contain;
    background: var(--bg);
}
.about-img--sonda {
    aspect-ratio: 4/3;
}
.about-wrap--gap {
    gap: 64px;
}
.about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 16px; padding: 20px 24px; text-align: center;
    box-shadow: 0 20px 50px rgba(0,107,166,.45);
    max-width: 180px;
}
.about-badge-float .num { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.1; }
.about-badge-float .lbl { font-size: .75rem; color: rgba(255,255,255,.8); line-height: 1.4; margin-top: 4px; }
.about-text { display: flex; flex-direction: column; gap: 24px; }
.about-text p { color: var(--muted); line-height: 1.8; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.mvv-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px;
}
.mvv-card h4 { font-size: .8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.mvv-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.cert-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.cert-badge {
    background: rgba(0,107,166,.12); border: 1px solid rgba(0,107,166,.3);
    border-radius: 8px; padding: 8px 16px; font-size: .85rem;
    color: var(--accent); font-weight: 600;
    text-decoration: none; transition: background .2s, border-color .2s;
}
a.cert-badge:hover {
    background: rgba(0,107,166,.22);
    border-color: rgba(0,107,166,.55);
}

/* ---- SERVICES ---- */
.services-bg { background: var(--bg2); padding: 100px 0; }
.services-inner { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.services-tabs { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.service-tab {
    background: var(--card); border: 1px solid var(--border);
    color: var(--muted); padding: 10px 24px; border-radius: 40px;
    font-size: .9rem; font-weight: 500; cursor: pointer; transition: .3s;
}
.service-tab:hover { border-color: var(--accent); color: var(--accent); }
.service-tab.active { background: linear-gradient(135deg, var(--accent), var(--accent2)); border-color: transparent; color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }
.service-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 28px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: default;
    display: flex; flex-direction: column; align-items: flex-start;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,107,166,.4);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.service-icon {
    width: 54px; height: 54px; border-radius: 12px;
    background: rgba(0,107,166,.15); border: 1px solid rgba(0,107,166,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 10px; min-height: 2.6em; }
.service-card p {
    font-size: .88rem; color: var(--muted); line-height: 1.7;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden; flex: 1;
}
.service-tag {
    display: inline-block;
    font-size: .73rem; color: var(--accent2);
    background: rgba(0,107,166,.12); border-radius: 20px;
    padding: 3px 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}
.service-card-footer {
    margin-top: auto;
    padding-top: 24px;
    width: 100%;
    border-top: 1px solid var(--border);
}

/* ---- NUMBERS ---- */
.numbers-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    padding: 80px 5%; position: relative; overflow: hidden;
}
.numbers-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.numbers-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; text-align: center; }
.num-item .val {
    font-size: 3.5rem; font-weight: 900;
    color: #fff;
    line-height: 1;
}
.num-item .lbl { color: rgba(255,255,255,.75); font-size: .85rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ---- BRANCHES ---- */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.branch-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; padding: 24px; transition: .3s;
}
.branch-card:hover { border-color: rgba(0,107,166,.4); transform: translateY(-4px); }
.branch-state {
    font-size: 1rem; font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 8px;
}
.branch-city { font-size: .85rem; color: var(--muted); font-weight: 500; margin-top: 2px; }
.branch-phone { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* ---- NEWS ---- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.news-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden; transition: .3s;
}
.news-card:hover { border-color: rgba(0,107,166,.35); transform: translateY(-4px); }
.news-img { height: 180px; background: var(--bg3); overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 24px; }
.news-date { font-size: .78rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; letter-spacing: .5px; }
.news-body h3 { font-size: 1rem; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.news-read { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--accent); font-size: .85rem; font-weight: 500; transition: gap .2s; }
.news-card:hover .news-read { gap: 10px; }

/* ---- CONTACT TABS ---- */
.contact-tabs {
    display: flex; gap: 8px; margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}
.contact-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 10px 10px 0 0;
    font-size: .9rem; font-weight: 600; color: var(--muted);
    text-decoration: none; transition: color .2s, background .2s;
    border: 1px solid transparent; border-bottom: none;
    margin-bottom: -2px;
}
.contact-tab:hover { color: var(--accent); background: var(--card); }
.contact-tab.active {
    color: var(--accent); background: var(--bg);
    border-color: var(--border); border-bottom-color: var(--bg);
}
.contact-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0 16px 16px 16px;
    padding: 40px;
}
.contact-panel-header {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 32px; padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.contact-panel-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.contact-form-inner { display: flex; flex-direction: column; gap: 20px; }

/* ---- CONTACT (legacy grid) ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; padding: 20px; display: flex; gap: 16px; align-items: flex-start;
}
.contact-item .icon {
    width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
    background: rgba(0,107,166,.15); border: 1px solid rgba(0,107,166,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.1rem;
}
.contact-item h4 { font-size: .85rem; color: var(--text); margin-bottom: 4px; }
.contact-item p { font-size: .85rem; color: var(--muted); }
.contact-form {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--muted); font-size: .83rem; margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: #fff; border: 1.5px solid #d0dde8;
    border-radius: 10px; padding: 12px 16px; color: var(--text); font-size: .9rem;
    transition: border-color .2s, box-shadow .2s; outline: none;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,107,166,.12);
}
.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

/* ---- FOOTER ---- */
footer {
    background: #1a2e40;
    border-top: none;
    padding: 60px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1400px; margin: 0 auto 48px; }
.footer-brand .logo { font-size: 1.6rem; font-weight: 900; letter-spacing: 3px; color: #fff; margin-bottom: 12px; }
.footer-brand .logo span { color: rgba(255,255,255,.7); }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: 1.1rem; transition: .3s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-col h4 { font-size: .85rem; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    max-width: 1400px; margin: 0 auto;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom a:hover { color: #fff; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 8px 24px rgba(37,211,102,.4);
    transition: transform .3s; animation: pulse-wa 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa {
    0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,.7); }
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed; bottom: 28px; left: 28px; z-index: 999;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(0,107,166,.18); border: 1px solid rgba(0,107,166,.35);
    color: var(--accent); display: none; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: .3s; cursor: pointer;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--accent); color: #fff; }

/* ---- PORTAL COLABORADOR ---- */
.footer-portal {
    text-align: left;
    padding: 24px 5% 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.portal-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: 8px;
    background: var(--accent); color: #fff; border: none;
    font-size: .875rem; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .2s;
}
.portal-btn i { font-size: 1.1rem; }
.portal-btn:hover {
    background: var(--accent2);
    transform: translateY(-1px);
}
.portal-modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 24px;
}
.portal-modal-box {
    position: relative; width: 100%; max-width: 860px;
    height: min(90vh, 700px); background: #fff;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.portal-modal-close {
    position: absolute; top: 12px; right: 12px; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,.55); color: #fff; border: none;
    font-size: 1rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background .2s;
}
.portal-modal-close:hover { background: rgba(0,0,0,.8); }
.portal-modal-frame {
    width: 100%; height: 100%; border: none; display: block;
}

/* ---- ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- ALERT ---- */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 16px; font-size: .9rem; }
.alert-success { background: #e6f9f0; border: 1px solid #7dd3aa; color: #1a7a4a; }
.alert-danger  { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(255,255,255,.98); flex-direction: column; padding: 24px;
        border-bottom: 1px solid var(--border); gap: 4px; backdrop-filter: blur(12px);
        overflow-y: auto; max-height: calc(100vh - 72px); }
    .nav-links a { color: var(--muted) !important; }
    .nav-links a:hover, .nav-links a.active { color: var(--accent) !important; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    /* dropdown mobile: inline, sem posicionamento absoluto */
    .nav-dropdown {
        position: static !important;
        transform: none !important;
        min-width: 0 !important;
        width: 100%;
        grid-template-columns: 1fr !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: rgba(0,107,166,.05) !important;
        padding: 4px 0 8px 16px !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        display: none !important;
        backdrop-filter: none !important;
    }
    .has-dropdown.open .nav-dropdown { display: grid !important; }
    .dropdown-divider { display: none; }
    .has-dropdown > a { justify-content: space-between; width: 100%; padding: 10px 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero-stats { gap: 28px; }
    .mvv-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
    .section { padding: 70px 4%; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
}

/* ============================================================
   OFFSHORE PAGE
   ============================================================ */

/* HERO */
.offshore-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #020c18 0%, #041628 50%, #071f3a 100%);
}
.offshore-hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(150deg, rgba(2,12,24,.82) 0%, rgba(4,22,40,.75) 50%, rgba(7,31,58,.70) 100%),
        url('../img/rov.webp') center/cover no-repeat,
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0,107,166,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(0,144,212,.12) 0%, transparent 60%);
    pointer-events: none;
}
/* partículas flutuantes */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,144,212,.35);
    animation: floatParticle linear infinite;
    pointer-events: none;
}
@keyframes floatParticle {
    0%   { transform: translateY(0) scale(1);   opacity: .6; }
    50%  { transform: translateY(-30px) scale(1.2); opacity: .3; }
    100% { transform: translateY(0) scale(1);   opacity: .6; }
}
.offshore-hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 5% 120px;
    width: 100%;
}
.offshore-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.05;
}
.offshore-hero-content .hero-sub {
    color: rgba(255,255,255,.65);
    max-width: 560px;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.offshore-hero-content .highlight {
    background: linear-gradient(135deg, var(--accent3), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.offshore-hero-content .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.35);
}
.offshore-hero-content .btn-outline:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
/* wave de saída do hero */
.offshore-hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%; height: 70px;
    z-index: 10; pointer-events: none; display: block;
}

/* INTRO STRIP */
.offshore-intro {
    background: var(--card);
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5;
}
.offshore-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.offshore-intro-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 36px;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}
.offshore-intro-item i {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
}
.offshore-intro-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.offshore-intro-item span {
    font-size: .78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .8px;
}
.offshore-intro-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* SERVICES SECTION */
.offshore-services { background: var(--bg); }
.offshore-services-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.highlight-text {
    color: var(--accent);
}

/* Service row — alternado */
.os-service-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.os-service-row:last-child { border-bottom: none; }
.os-service-row--reverse {
    grid-template-columns: 1fr 280px;
}
.os-service-row--reverse .os-service-visual { order: 2; }
.os-service-row--reverse .os-service-body   { order: 1; }

.os-service-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}
.os-service-icon-wrap {
    width: 120px; height: 120px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0,107,166,.35);
    transition: transform .3s;
}
.os-service-visual:hover .os-service-icon-wrap { transform: translateY(-6px); }
.os-service-visual--highlight .os-service-icon-wrap {
    background: linear-gradient(135deg, #006ba6 0%, #004f7c 100%);
    box-shadow: 0 16px 40px rgba(0,107,166,.5);
}
.os-service-tag {
    display: inline-block;
    background: rgba(0,107,166,.1);
    color: var(--accent);
    border: 1px solid rgba(0,107,166,.25);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.os-service-tag--gold {
    background: rgba(212,160,0,.12);
    color: #a07800;
    border-color: rgba(212,160,0,.3);
}
/* badge 7 anos slickline */
.os-slickline-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0,107,166,.1), rgba(0,107,166,.05));
    border: 1px solid rgba(0,107,166,.2);
    border-radius: 16px;
    padding: 12px 20px;
    margin-top: 4px;
}
.os-slickline-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.os-slickline-txt {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    line-height: 1.4;
}
.os-service-body h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}
.os-service-body p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: .97rem;
}
.os-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}
.os-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .87rem;
    color: var(--text);
    font-weight: 500;
}
.os-feature-list i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ACTIVITIES */
.os-activities-bg {
    background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 60%, var(--accent3) 100%);
    padding: 100px 5%;
    text-align: center;
}
.os-activities-inner { max-width: 1100px; margin: 0 auto; }
.os-activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.os-activity-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: background .25s, transform .25s;
    backdrop-filter: blur(6px);
}
.os-activity-card:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-4px);
}
.os-activity-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    margin: 0 auto 16px;
}
.os-activity-card h4 {
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.os-activity-card p {
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    line-height: 1.6;
}

/* PRESENCE */
.os-presence { text-align: center; }
.os-presence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.os-presence-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: left;
    transition: box-shadow .25s, transform .25s;
}
.os-presence-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.os-presence-role {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
}
.os-presence-state {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.os-presence-city {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.os-presence-city i { color: var(--accent); font-size: .8rem; }
.os-presence-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--accent);
    font-weight: 600;
    transition: color .2s;
}
.os-presence-phone:hover { color: var(--accent2); }

/* CTA */
.os-cta {
    background: linear-gradient(135deg, #020c18 0%, #041628 50%, #071f3a 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.os-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,107,166,.18), transparent);
    pointer-events: none;
}
.os-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.os-cta .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
.os-cta .btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .os-service-row,
    .os-service-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }
    .os-service-row--reverse .os-service-visual,
    .os-service-row--reverse .os-service-body { order: unset; }
    .os-service-visual { flex-direction: row; justify-content: flex-start; }
    .os-activities-grid { grid-template-columns: repeat(2, 1fr); }
    .os-presence-grid   { grid-template-columns: repeat(2, 1fr); }
    .offshore-intro-sep { display: none; }
    .offshore-intro-item { padding: 12px 20px; }
}
@media (max-width: 560px) {
    .os-activities-grid { grid-template-columns: 1fr; }
    .os-presence-grid   { grid-template-columns: 1fr; }
    .os-feature-list    { grid-template-columns: 1fr; }
    .offshore-intro-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ONSHORE PAGE — variações de cor sobre a base offshore
   ============================================================ */

/* HERO */
.onshore-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #0d1a0a 0%, #122010 50%, #1a2e14 100%);
}
.onshore-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 65% 38%, rgba(34,120,20,.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 45% at 15% 72%, rgba(0,107,166,.1) 0%, transparent 55%);
    pointer-events: none;
}
.onshore-hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 5% 120px;
    width: 100%;
}
.onshore-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.05;
}
.onshore-hero-content .hero-sub {
    color: rgba(255,255,255,.65);
    max-width: 580px;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.onshore-hero-content .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.35);
}
.onshore-hero-content .btn-outline:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
/* destaque verde-petróleo no título */
.onshore-hl {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* wave de saída */
.onshore-hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%; height: 70px;
    z-index: 10; pointer-events: none; display: block;
}

/* ícones e tags com cor onshore (verde) */
.onshore-icon {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%) !important;
    box-shadow: 0 16px 40px rgba(46,125,50,.35) !important;
}
.os-service-visual:hover .onshore-icon { transform: translateY(-6px); }

.onshore-tag {
    background: rgba(46,125,50,.1) !important;
    color: #2e7d32 !important;
    border-color: rgba(46,125,50,.25) !important;
}

/* badge capacidade sonda */
.onshore-badge {
    background: linear-gradient(135deg, rgba(46,125,50,.1), rgba(46,125,50,.05)) !important;
    border-color: rgba(46,125,50,.2) !important;
}
.onshore-num { color: #2e7d32 !important; }

/* seção de atividades — verde escuro */
.onshore-activities-bg {
    background: linear-gradient(135deg, #1b2e1a 0%, #1e3b1c 60%, #264d23 100%) !important;
}

/* CTA onshore */
.onshore-cta {
    background: linear-gradient(135deg, #0a150a 0%, #0d1e0c 50%, #122010 100%) !important;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* HERO */
.about-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #020c18 0%, #041628 55%, #071f3a 100%);
}
.about-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 68% 40%, rgba(0,107,166,.2) 0%, transparent 60%),
        radial-gradient(ellipse 35% 45% at 12% 75%, rgba(0,144,212,.1) 0%, transparent 55%);
    pointer-events: none;
}
.about-hero-content {
    position: relative; z-index: 5;
    max-width: 1200px; margin: 0 auto;
    padding: 130px 5% 110px; width: 100%;
}
.about-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900; color: #fff;
    letter-spacing: -1px; margin-bottom: 20px; line-height: 1.05;
}
.about-hero-content .hero-sub {
    color: rgba(255,255,255,.65);
    max-width: 580px; font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.about-hl {
    background: linear-gradient(135deg, var(--accent3), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: 70px; z-index: 10; pointer-events: none; display: block;
}

/* NÚMEROS STRIP */
.about-numbers {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative; z-index: 5;
}
.about-numbers-inner {
    max-width: 1100px; margin: 0 auto; padding: 32px 5%;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
}
.about-num-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 40px; flex: 1; min-width: 130px;
}
.about-num-val {
    font-size: 2.2rem; font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.about-num-lbl {
    font-size: .72rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 6px;
    text-align: center;
}
.about-num-sep {
    width: 1px; height: 48px; background: var(--border); flex-shrink: 0;
}

/* TIMELINE */
.about-timeline {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 0;
    border-left: 2px solid var(--border);
    padding-left: 24px;
}
.abt-item {
    position: relative; padding-bottom: 24px;
}
.abt-item::before {
    content: '';
    position: absolute; left: -31px; top: 4px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg);
    box-shadow: 0 0 0 3px rgba(0,107,166,.2);
}
.abt-item:last-child { padding-bottom: 0; }
.abt-year {
    font-size: .78rem; font-weight: 800; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}
.abt-text { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* SEDE GRID */
.about-sede-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}
.about-sede-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 24px;
    transition: box-shadow .25s, transform .25s;
}
.about-sede-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.about-sede-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; margin-bottom: 16px;
}
.about-sede-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.about-sede-card p  { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* MVV GRID */
.about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}
.about-mvv-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px 28px;
    transition: box-shadow .25s, transform .25s;
    position: relative; overflow: hidden;
}
.about-mvv-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent3));
}
.about-mvv-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.about-mvv-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,107,166,.12), rgba(0,107,166,.06));
    border: 1px solid rgba(0,107,166,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent); margin-bottom: 20px;
}
.about-mvv-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.about-mvv-card p  { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* CERTIFICAÇÕES */
.about-certs-grid {
    display: flex; flex-wrap: wrap; gap: 16px;
    justify-content: center; margin-top: 48px;
}
.about-cert-card {
    display: flex; align-items: center; gap: 10px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 40px; padding: 12px 24px;
    font-size: .92rem; font-weight: 700; color: #fff;
}
.about-cert-card i { color: #4ade80; font-size: 1.1rem; }

/* RESPONSABILIDADE SOCIAL */
.about-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}
.about-social-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px;
    transition: box-shadow .25s, transform .25s;
}
.about-social-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.about-social-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; margin-bottom: 16px;
}
.about-social-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.about-social-card p  { font-size: .86rem; color: var(--muted); line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-sede-grid  { grid-template-columns: 1fr; }
    .about-mvv-grid   { grid-template-columns: 1fr; }
    .about-social-grid { grid-template-columns: repeat(2, 1fr); }
    .about-num-sep    { display: none; }
    .about-num-item   { padding: 12px 20px; }
}
@media (max-width: 560px) {
    .about-social-grid { grid-template-columns: 1fr; }
    .about-numbers-inner { flex-direction: column; gap: 0; }
}

/* ============================================================
   CLIENTS PAGE
   ============================================================ */

/* HERO */
.clients-hero {
    position: relative;
    min-height: 68vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #020c18 0%, #041628 55%, #071f3a 100%);
}
.clients-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 65% 38%, rgba(0,107,166,.22) 0%, transparent 60%),
        radial-gradient(ellipse 35% 45% at 10% 75%, rgba(0,144,212,.1) 0%, transparent 55%);
    pointer-events: none;
}
.clients-hero-content {
    position: relative; z-index: 5;
    max-width: 1200px; margin: 0 auto;
    padding: 130px 5% 110px; width: 100%;
}
.clients-hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 900; color: #fff;
    letter-spacing: -1px; margin-bottom: 20px; line-height: 1.08;
}
.clients-hero-content .hero-sub {
    color: rgba(255,255,255,.65);
    max-width: 560px; font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.clients-hl {
    background: linear-gradient(135deg, var(--accent3), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.clients-hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: 70px; z-index: 10; pointer-events: none; display: block;
}

/* shared inner width */
.clients-inner { max-width: 1100px; margin: 0 auto; }
.clients-section { text-align: center; }

/* GRID ÚNICO — todos os clientes, sem distinção */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.client-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 16px 22px;
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    cursor: default;
}
.client-card:hover {
    box-shadow: 0 10px 36px rgba(0,60,100,.13);
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--c) 35%, transparent);
}
.client-icon-wrap {
    width: 100px; height: 64px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid color-mix(in srgb, var(--c) 22%, transparent);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.client-card:hover .client-icon-wrap {
    transform: scale(1.06);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--c) 25%, transparent);
}
.client-logo {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    padding: 10px;
    filter: grayscale(30%);
    transition: filter .25s;
}
.client-logo[src=""], .client-logo:not([src]) { display: none; }
.client-card:hover .client-logo { filter: grayscale(0%); }
.client-card-name {
    font-size: .84rem; font-weight: 700;
    color: var(--text); text-align: center; line-height: 1.3;
}

/* CTA */
.clients-cta {
    background: linear-gradient(135deg, #020c18 0%, #041628 55%, #071f3a 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative; overflow: hidden;
}
.clients-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(0,107,166,.16), transparent);
    pointer-events: none;
}
.clients-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.clients-cta-quote {
    position: relative;
    padding: 0 32px;
}
.clients-cta-quote > i {
    font-size: 3rem; color: var(--accent3);
    opacity: .4; line-height: 1; display: block; margin-bottom: 16px;
}
.clients-cta-quote p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,.75); line-height: 1.8;
    font-style: italic;
}
.clients-cta-quote span {
    display: block; margin-top: 20px;
    font-size: .8rem; color: rgba(255,255,255,.4);
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* RESPONSIVE */
@media (max-width: 1024px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ============================================================
   SHARED HERO BASE — used by all secondary service pages
   (fabricação, manutenção-industrial, manutencao-eletrica,
    movimentacao-cargas, apoio-maritimo, instrumentacao, facilities)
   ============================================================ */
.os-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #020c18 0%, #041628 50%, #071f3a 100%);
}
.os-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0,107,166,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(0,144,212,.12) 0%, transparent 60%);
    pointer-events: none;
}
.os-hero-content {
    position: relative; z-index: 5;
    max-width: 1200px; margin: 0 auto;
    padding: 130px 5% 120px; width: 100%;
}
.os-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900; color: #fff;
    letter-spacing: -1px; margin-bottom: 20px; line-height: 1.05;
}
.os-hero-content .hero-sub {
    color: rgba(255,255,255,.65);
    max-width: 560px;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.os-hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: 70px;
    z-index: 10; pointer-events: none; display: block;
}

/* ---- FABRICAÇÃO ---- */
.fab-hero { background: linear-gradient(150deg, #0d0a00 0%, #1a1000 50%, #251500 100%); }
.fab-hero .os-hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(192,57,43,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(230,126,34,.12) 0%, transparent 60%);
}
.fab-hl {
    background: linear-gradient(135deg, #f39c12, #c0392b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fab-icon  { background: linear-gradient(135deg, #c0392b 0%, #922b21 100%) !important; }
.fab-tag   { background: rgba(192,57,43,.15) !important; color: #e74c3c !important; border-color: rgba(192,57,43,.3) !important; }
.fab-badge { border-color: rgba(192,57,43,.35) !important; }
.fab-num   { color: #e74c3c !important; }
.fab-activities-bg { background: linear-gradient(135deg, #1a0800 0%, #2d1000 100%); }
.fab-cta   { background: linear-gradient(135deg, #0d0500 0%, #1a0a00 55%, #261000 100%); }

/* ---- MANUTENÇÃO INDUSTRIAL ---- */
.maint-hl {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.maint-hero { background: linear-gradient(150deg, #0a0800 0%, #141000 50%, #1e1500 100%); }
.maint-hero .os-hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(230,126,34,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(243,156,18,.12) 0%, transparent 60%);
}
.maint-icon  { background: linear-gradient(135deg, #e67e22 0%, #ba6010 100%) !important; }
.maint-tag   { background: rgba(230,126,34,.15) !important; color: #e67e22 !important; border-color: rgba(230,126,34,.3) !important; }
.maint-badge { border-color: rgba(230,126,34,.35) !important; }
.maint-num   { color: #e67e22 !important; }
.maint-activities-bg { background: linear-gradient(135deg, #120800 0%, #1e1000 100%); }
.maint-cta   { background: linear-gradient(135deg, #0a0500 0%, #150a00 55%, #1e0f00 100%); }

/* ---- MANUTENÇÃO ELÉTRICA ---- */
.elec-hl {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.elec-hero { background: linear-gradient(150deg, #080b00 0%, #0e1200 50%, #141a00 100%); }
.elec-hero .os-hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(241,196,15,.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(243,156,18,.10) 0%, transparent 60%);
}
.elec-icon  { background: linear-gradient(135deg, #d4a017 0%, #a37800 100%) !important; }
.elec-tag   { background: rgba(241,196,15,.15) !important; color: #d4ac0d !important; border-color: rgba(241,196,15,.3) !important; }
.elec-badge { border-color: rgba(241,196,15,.35) !important; }
.elec-num   { color: #d4ac0d !important; }
.elec-activities-bg { background: linear-gradient(135deg, #080700 0%, #100e00 100%); }
.elec-cta   { background: linear-gradient(135deg, #060500 0%, #0d0c00 55%, #141200 100%); }

/* ---- MOVIMENTAÇÃO DE CARGAS ---- */
.cargo-hl {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cargo-hero { background: linear-gradient(150deg, #0a0012 0%, #120020 50%, #1a0030 100%); }
.cargo-hero .os-hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(142,68,173,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(155,89,182,.12) 0%, transparent 60%);
}
.cargo-icon  { background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%) !important; }
.cargo-tag   { background: rgba(142,68,173,.15) !important; color: #9b59b6 !important; border-color: rgba(142,68,173,.3) !important; }
.cargo-badge { border-color: rgba(142,68,173,.35) !important; }
.cargo-num   { color: #9b59b6 !important; }
.cargo-activities-bg { background: linear-gradient(135deg, #080010 0%, #110018 100%); }
.cargo-cta   { background: linear-gradient(135deg, #050008 0%, #0a0012 55%, #10001c 100%); }

/* ---- APOIO MARÍTIMO ---- */
.maritime-hl {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.maritime-hero { background: linear-gradient(150deg, #001412 0%, #001e1a 50%, #002824 100%); }
.maritime-hero .os-hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(26,188,156,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(22,160,133,.12) 0%, transparent 60%);
}
.maritime-icon  { background: linear-gradient(135deg, #16a085 0%, #0e7260 100%) !important; }
.maritime-tag   { background: rgba(22,160,133,.15) !important; color: #1abc9c !important; border-color: rgba(22,160,133,.3) !important; }
.maritime-badge { border-color: rgba(22,160,133,.35) !important; }
.maritime-num   { color: #1abc9c !important; }
.maritime-activities-bg { background: linear-gradient(135deg, #001210 0%, #001c18 100%); }
.maritime-cta   { background: linear-gradient(135deg, #000e0c 0%, #001412 55%, #001c18 100%); }

/* ---- INSTRUMENTAÇÃO ---- */
.inst-hl {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.inst-hero { background: linear-gradient(150deg, #001400 0%, #001e00 50%, #002800 100%); }
.inst-hero .os-hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(22,160,133,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(46,204,113,.12) 0%, transparent 60%);
}
.inst-icon  { background: linear-gradient(135deg, #16a085 0%, #0e7260 100%) !important; }
.inst-tag   { background: rgba(22,160,133,.15) !important; color: #1abc9c !important; border-color: rgba(22,160,133,.3) !important; }
.inst-badge { border-color: rgba(22,160,133,.35) !important; }
.inst-num   { color: #1abc9c !important; }
.inst-activities-bg { background: linear-gradient(135deg, #001200 0%, #001c00 100%); }
.inst-cta   { background: linear-gradient(135deg, #000f00 0%, #001500 55%, #001e00 100%); }

/* ---- FACILITIES ---- */
.fac-hl {
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fac-hero { background: linear-gradient(150deg, #00080e 0%, #000e18 50%, #001220 100%); }
.fac-hero .os-hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(52,152,219,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(41,128,185,.12) 0%, transparent 60%);
}
.fac-icon  { background: linear-gradient(135deg, #2980b9 0%, #1a6fa3 100%) !important; }
.fac-tag   { background: rgba(41,128,185,.15) !important; color: #3498db !important; border-color: rgba(41,128,185,.3) !important; }
.fac-badge { border-color: rgba(41,128,185,.35) !important; }
.fac-num   { color: #3498db !important; }
.fac-activities-bg { background: linear-gradient(135deg, #00060c 0%, #000e18 100%); }
.fac-cta   { background: linear-gradient(135deg, #000408 0%, #00080e 55%, #000c14 100%); }

/* ---- CATÁLOGO ---- */
.catalog-hero { /* reuses clients-hero */ }
.catalog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 4px solid var(--bar);
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow .25s, transform .25s;
    color: inherit;
    display: block;
}
.catalog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.catalog-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.catalog-card h3 {
    font-size: 1.15rem; font-weight: 800;
    margin-bottom: 10px; color: var(--text);
}
.catalog-card p {
    color: var(--text2); font-size: .9rem;
    line-height: 1.65; margin-bottom: 16px;
}
.catalog-card-tags {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.catalog-card-tags span {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: .72rem; font-weight: 600;
    color: var(--muted);
    text-transform: uppercase; letter-spacing: .5px;
}
.catalog-card-cta {
    font-size: .85rem; font-weight: 700;
    color: var(--bar);
    display: flex; align-items: center; gap: 6px;
    transition: gap .2s;
}
.catalog-card:hover .catalog-card-cta { gap: 10px; }

/* ---- ACOES INTERNAS / IDEOLOGIA hero overlays ---- */
.acoes-hero .clients-hero-bg,
.ideo-hero .clients-hero-bg {
    background:
        radial-gradient(ellipse 60% 70% at 30% 50%, rgba(0,107,166,.22), transparent),
        radial-gradient(ellipse 40% 50% at 75% 30%, rgba(0,144,212,.12), transparent);
}

/* ---- ONSHORE activities bg ---- */
.onshore-activities-bg {
    background: linear-gradient(135deg, #0a1e0a 0%, #122012 50%, #162a16 100%);
}
.onshore-cta {
    background: linear-gradient(135deg, #060e06 0%, #0c1a0c 55%, #121f12 100%);
}

/* ============================================================
   RESPONSIVE — new pages
   ============================================================ */
@media (max-width: 768px) {
    .os-hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .catalog-card { padding: 24px; }
}
