:root {
    /* Color Palette - JR Solutions Official Identity */
    --bg-dark: #080b11; /* Azul escuro marinho profundo */
    --bg-card: rgba(17, 25, 39, 0.6); /* Navy translúcido */
    --bg-card-hover: rgba(26, 38, 57, 0.8);
    
    --primary-red: #da1818; /* Vermelho Oficial JR Solutions */
    --primary-red-glow: rgba(218, 24, 24, 0.35);
    --primary-blue: #2563eb; /* Azul Royal complementar */
    --primary-blue-glow: rgba(37, 99, 235, 0.35);
    --primary-navy: #111927; /* Azul Marinho oficial */
    --primary-navy-glow: rgba(17, 25, 39, 0.5);
    --primary-white: #ffffff;
    --primary-green: #10b981; /* Verde esmeralda de status online */
    --primary-green-glow: rgba(16, 185, 129, 0.35);

    --text-white: #ffffff;
    --text-slate: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(255, 255, 255, 0.15);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Grid & Widths */
    --container-max-width: 1240px;
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-slate);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.container {
    width: min(var(--container-max-width), calc(100% - 40px));
    margin: 0 auto;
}

/* ==========================================================================
   GLOWING CURSOR TRAIL
   ========================================================================== */

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(218, 24, 24, 0.09) 0%, rgba(37, 99, 235, 0.03) 50%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width 0.2s, height 0.2s;
    opacity: 0;
}

/* ==========================================================================
   CONNECTION STATUS GLOW BAR
   ========================================================================== */

.status-bar {
    width: 100%;
    background-color: #0c0f14;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-slate);
    z-index: 100;
    position: relative;
}

.status-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.green {
    background-color: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
    animation: pulseGlow 2s infinite;
}

.status-divider {
    color: rgba(255, 255, 255, 0.15);
}

.status-metric {
    font-family: monospace;
    color: var(--text-white);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid rgba(17, 25, 39, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.header-inner {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.nav-logo {
    height: 58px;
    width: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-navy);
}

.nav-link.active {
    border-bottom-color: var(--primary-red);
}

.nav-cta-btn {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    background-color: #25d366;
    padding: 10px 18px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.nav-cta-btn:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(17, 25, 39, 0.08);
    border-radius: 8px;
    background: transparent;
    color: var(--primary-navy);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
    margin: auto;
    position: relative;
    transition: var(--transition-smooth);
}

.menu-toggle span::before { position: absolute; top: -7px; }
.menu-toggle span::after { position: absolute; top: 7px; }

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

.hero {
    position: relative;
    padding: 100px 0;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow-red {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 24, 24, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.hero-glow-blue {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary-red);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-slate);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    color: var(--bg-dark);
    background-color: var(--text-white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(218, 24, 24, 0.3);
    background-color: var(--primary-red);
    color: var(--text-white);
}

.btn-secondary {
    color: var(--text-white);
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ==========================================================================
   THE SENTINEL CHARACTER CARD (BEHANCE SPEC)
   ========================================================================== */

.image-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.image-frame-glow {
    position: absolute;
    inset: -10px;
    border-radius: calc(var(--border-radius-lg) + 10px);
    background: radial-gradient(circle, var(--primary-red) 0%, var(--primary-blue) 40%, transparent 70%);
    filter: blur(30px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.image-frame {
    position: relative;
    background: #111927;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.showcase-img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame:hover .showcase-img {
    transform: scale(1.03);
}

.image-overlay-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(17, 25, 39, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    z-index: 3;
}

.overlay-brand-logo {
    height: 24px;
    width: auto;
}

/* ==========================================================================
   SECTIONS GENERAL STYLES
   ========================================================================== */

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: #060709;
}

.section-head {
    max-width: 680px;
    margin-bottom: 60px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-top: 12px;
}

.section-head p {
    font-size: 16px;
    color: var(--text-slate);
    margin-top: 16px;
}

/* ==========================================================================
   THE CONCEPT GRID
   ========================================================================== */

/* ==========================================================================
   SEÇÕES CLARAS & LAYOUT DE GRID CORPORATIVO
   ========================================================================== */

.section-light {
    background-color: #ffffff;
    color: #4b5563;
}

.section-light .eyebrow {
    color: var(--primary-red);
}

.section-light h2 {
    color: var(--primary-navy);
}

.section-light p {
    color: #4b5563;
}

/* Company grid layout */
.company-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.company-showcase {
    position: relative;
}

.company-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(17, 25, 39, 0.08);
    border: 1px solid rgba(17, 25, 39, 0.05);
    object-fit: cover;
    aspect-ratio: 1.25;
}

.company-content {
    display: flex;
    flex-direction: column;
}

.company-lead {
    font-size: 18px;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.company-content p {
    color: #4b5563;
    margin-bottom: 16px;
    font-size: 15.5px;
    line-height: 1.7;
}

/* Philosophy Cards (Mission, Vision, Values) in Light Section */
.section-light .vmv-card {
    background-color: #f9fafb;
    border: 1px solid rgba(17, 25, 39, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 34px;
    transition: var(--transition-smooth);
}

.section-light .vmv-card:hover {
    border-color: rgba(218, 24, 24, 0.2);
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(17, 25, 39, 0.05);
    transform: translateY(-4px);
}

.section-light .vmv-card h3 {
    color: var(--primary-navy);
}

.section-light .vmv-card p {
    color: #4b5563;
}

.section-light .vmv-icon {
    color: var(--primary-red);
}

/* Services section specific grid layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #060709;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-img {
    transform: scale(1.04);
    opacity: 0.85;
}

.service-content {
    padding: 34px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 14px;
}

.service-content p {
    font-size: 14.5px;
    color: var(--text-slate);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 13.5px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-features li i {
    display: none;
}

.service-features li::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('assets/brand/symbol.png');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Location Layout styling */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-lead {
    font-size: 17px;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
}

.address-details {
    display: grid;
    gap: 20px;
}

.address-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.address-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(218, 24, 24, 0.08);
    border: 1px solid rgba(218, 24, 24, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-red);
    font-size: 18px;
    flex-shrink: 0;
}

.address-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.address-item p {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.5;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(17, 25, 39, 0.08);
    border: 1px solid rgba(17, 25, 39, 0.08);
}

/* ==========================================================================
   INTERACTIVE NOC TELEMETRY SECTION
   ========================================================================== */

.noc-dashboard {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    background-color: #0c0f14;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    overflow: hidden;
}

.noc-canvas-container {
    background-color: #060709;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.network-svg {
    width: 100%;
    height: 100%;
}

.network-link {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.15;
    transition: var(--transition-smooth);
}

.link-red { stroke: var(--primary-red); }
.link-blue { stroke: var(--primary-blue); }
.link-slate { stroke: var(--text-slate); }
.link-green { stroke: var(--primary-green); }

.network-link.active {
    opacity: 0.9;
    stroke-width: 3.5;
    stroke-dasharray: 8 8;
    animation: dashPulse 25s linear infinite;
}

@keyframes dashPulse {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Map Nodes styling */
.map-node {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.node-bg {
    fill: rgba(0, 0, 0, 0.7);
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 1;
    transition: var(--transition-smooth);
}

.node-core {
    fill: rgba(20, 25, 35, 0.95);
    stroke-width: 2;
    transition: var(--transition-smooth);
}

.border-glow { stroke: var(--primary-red); }
.cgnat-glow { stroke: var(--primary-blue); }
.proxmox-glow { stroke: var(--text-slate); }
.switch-glow { stroke: var(--primary-green); }

.map-node:hover .node-core {
    fill: var(--text-white);
    transform: scale(1.1);
}

.map-node:hover .node-bg {
    fill: rgba(255, 255, 255, 0.02);
    transform: scale(1.05);
}

.node-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    fill: var(--text-white);
    text-anchor: middle;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.node-sublabel {
    font-family: monospace;
    font-size: 9px;
    fill: var(--text-muted);
    text-anchor: middle;
}

/* Telemetry Panel styling */
.noc-telemetry-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.telemetry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.telemetry-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 0.1em;
}

.telemetry-tag {
    font-family: monospace;
    font-size: 10px;
    font-weight: 800;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.telemetry-stats {
    display: grid;
    gap: 12px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
}

.stat-row .label {
    color: var(--text-slate);
    font-weight: 600;
}

.stat-row .value {
    font-family: monospace;
    color: var(--text-white);
    font-weight: 700;
}

.cyan-text { color: var(--primary-blue) !important; }
.green-text { color: var(--primary-green) !important; }

.telemetry-traceroute h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.terminal-body {
    background-color: #060709;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    font-family: monospace;
    font-size: 11px;
    color: var(--text-slate);
    height: 140px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.term-line {
    line-height: 1.4;
    word-break: break-all;
}

.system-line { color: var(--text-muted); }
.success-line { color: var(--primary-green); }
.ping-line { color: var(--primary-blue); }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px;
}

.about-header {
    max-width: 800px;
    margin-bottom: 50px;
}

.about-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-top: 12px;
}

.about-lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-slate);
    margin-top: 20px;
}

.about-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.about-detail-card .icon-circle {
    width: 48px;
    height: 48px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 20px;
}

.about-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.about-detail-card p {
    font-size: 13.5px;
    line-height: 1.6;
}

/* ==========================================================================
   INSTITUTIONAL (MISSION, VISION, VALUES)
   ========================================================================== */

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vmv-card {
    background-color: #0c0f14;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 34px;
    transition: var(--transition-smooth);
}

.vmv-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
}

.vmv-icon {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.vmv-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.vmv-card p {
    font-size: 13.5px;
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION & FORM (PREMIUM DESIGN)
   ========================================================================== */

.contact {
    background: linear-gradient(180deg, #060709 0%, #0c0f14 100%);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-top: 12px;
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 16px;
    color: var(--text-slate);
    margin-bottom: 34px;
}

.contact-methods {
    display: grid;
    gap: 14px;
}

.contact-link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    transition: var(--transition-smooth);
}

.contact-link-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(4px);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.method-icon {
    font-size: 22px;
    color: var(--text-white);
}

.contact-link-card small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-link-card strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.contact-link-card .arrow {
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.contact-link-card:hover .arrow {
    color: var(--text-white);
    transform: translateX(2px);
}

/* Contact Form wrapper & elements */
.contact-form-wrapper {
    background-color: #0c0f14;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 44px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.contact-form p {
    font-size: 14px;
    color: var(--text-slate);
    margin-bottom: 30px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.field label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
    background-color: #060709;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-white);
    outline: none;
    transition: var(--transition-smooth);
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238f9cae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px var(--primary-red-glow);
}

.form-submit {
    width: 100%;
    background-color: var(--text-white);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 16px 20px;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.form-submit:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px var(--primary-red-glow);
    color: var(--text-white);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted) !important;
    margin-top: 14px;
    margin-bottom: 0 !important;
}

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

.site-footer {
    background-color: #060709;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    height: 50px;
    width: auto;
    align-self: flex-start;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px var(--primary-green);
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
        box-shadow: 0 0 18px var(--primary-green);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-lead {
        margin-inline: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .division-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .division-card .division-image-container {
        order: -1;
        width: 100%;
        max-width: 480px;
        margin-inline: auto;
    }
    
    .noc-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-grid;
    }
    
    .nav-list {
        position: absolute;
        inset: 84px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 24px;
        background: #ffffff;
        border-bottom: 1px solid rgba(17, 25, 39, 0.08);
        box-shadow: 0 30px 40px rgba(0,0,0,0.1);
    }
    
    .nav-list.is-open {
        display: flex;
    }
    
    .nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: none;
    }
    
    .nav-cta-btn {
        margin-top: 14px;
        justify-content: center;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ==========================================================================
   BRAND WATERMARK BG
   ========================================================================== */

.brand-watermark-bg {
    position: relative;
}

.brand-watermark-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/brand/symbol.png');
    background-repeat: no-repeat;
    background-position: center 80%;
    background-size: 350px;
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
}

.section-dark.brand-watermark-bg::before {
    opacity: 0.035;
}

.brand-watermark-bg > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   FRENTES DE OPERAÇÃO DIGITAL (NOC AGENTS)
   ========================================================================== */

.noc-agents-title {
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
}

.noc-agents-title h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--text-white);
    margin-top: 8px;
}

.noc-agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.agent-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.agent-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.agent-img-frame {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #060709;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.agent-card:hover .agent-img {
    transform: scale(1.03);
}

.agent-info {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.agent-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.agent-role {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.agent-desc {
    font-size: 13.5px;
    color: var(--text-slate);
    line-height: 1.6;
}

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

.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    font-family: var(--font-body);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    animation: bounceBadge 2s infinite;
}

.whatsapp-btn-text {
    letter-spacing: 0.02em;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    background-color: #20ba59;
}

.whatsapp-bubble {
    width: 320px;
    background-color: #111927;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    padding: 22px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.whatsapp-bubble.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.whatsapp-bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 26px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #111927 transparent;
    display: block;
    width: 0;
}

.whatsapp-bubble-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-bubble-close:hover {
    color: var(--text-white);
}

.whatsapp-bubble-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-bubble-title::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-green);
}

.whatsapp-bubble-text {
    font-size: 13px;
    color: var(--text-slate);
    line-height: 1.5;
    margin-bottom: 16px;
}

.whatsapp-bubble-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #25d366;
    color: #ffffff;
    padding: 10px;
    border-radius: var(--border-radius-md);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.whatsapp-bubble-btn:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
}

@keyframes bounceBadge {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.1); }
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .noc-agents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-bubble {
        width: 280px;
    }
}
