
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-black: #0a0a0a;
            --secondary-black: #121212;
            --dark-gray: #1f1f1f;
            --medium-gray: #2a2a2a;
            --light-gray: #404040;
            --bronze-primary: #b8956a;
            --bronze-mid: #a0845a;
            --bronze-dark: #8b7355;
            --bronze-light: #c9a876;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --text-tertiary: #888888;
            --accent-red: #6b2c2c;
            --accent-red-light: #8b3a3a;
            --border-subtle: #303030;
            --border-bronze: #5a4a3a;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-black);
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            line-height: 1.65;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.03),
                    rgba(0, 0, 0, 0.03) 1px,
                    transparent 1px,
                    transparent 2px
                );
            pointer-events: none;
            z-index: -1; /* Mover para trás de tudo */
        }

        /* Estética Tática Limpa e Direta */
        body::after {
            display: none;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-black);
            border-left: 1px solid var(--bronze-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--bronze-dark);
            border-radius: 5px;
            border: 2px solid var(--primary-black);
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--bronze-dark);
        }

        ::selection {
            background: var(--bronze-primary);
            color: var(--primary-black);
            text-shadow: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
        }

        /* Header Moderno: Floating Glass Pill */
        header {
            position: fixed;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1400px;
            z-index: 1000;
            background: rgba(12, 12, 12, 0.65);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 1rem 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .header-container {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; /* Necessário para posicionar o menu mobile abaixo */
        }

        .logo-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            font-weight: 700;
            font-size: 18px;
            font-family: 'Roboto Condensed', sans-serif;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
        }



        .logo-header img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
        }



        .nav {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Roboto Condensed', sans-serif;
            padding: 8px 16px;
            border-radius: 20px;
            background: transparent;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.08); /* Efeito Pílula Elegante */
        }

        /* Scrolled state: Slightly tighter spacing and more blur feeling */
        header.scrolled {
            padding: 0.8rem 2rem;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
            background: rgba(12, 12, 12, 0.8);
        }

        /* Mobile Menu Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            font-size: 28px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .mobile-toggle:hover {
            color: var(--bronze-primary);
        }

        /* Dropdown Navigation */
        .nav-dropdown {
            position: relative;
        }

        .dropdown-toggle {
            background: transparent;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .dropdown-toggle:hover,
        .nav-dropdown.open .dropdown-toggle {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.08); /* Efeito Pílula Ativa */
        }

        .dropdown-toggle .chevron {
            font-size: 10px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .nav-dropdown:hover .chevron,
        .nav-dropdown.open .chevron {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(18, 18, 18, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            min-width: 210px;
            padding: 8px 0;
            box-shadow: 0 16px 40px rgba(0,0,0,0.8);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0, 1, 0.5, 1);
            z-index: 200;
            pointer-events: none;
        }

        /* Bridge the hover gap */
        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            right: 0;
            height: 20px;
            background: transparent;
        }

        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: var(--text-secondary);
            text-decoration: none;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            border-left: 2px solid transparent;
        }

        .dropdown-item:hover {
            color: var(--bronze-primary);
            background: rgba(184, 149, 106, 0.07);
            border-left-color: var(--bronze-primary);
            padding-left: 22px;
        }

        .dropdown-item i {
            font-size: 12px;
            color: var(--accent-red-light);
            width: 14px;
            text-align: center;
            flex-shrink: 0;
        }



        /* Hero */
        .hero {
            will-change: background-position;
            margin-top: 75px;
            padding: 7rem 2rem;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(18, 18, 18, 0.92) 100%), 
                        url('rifle-bg.webp') center/cover;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: 650px;
            justify-content: center;
            position: relative;
            /* Substituto para borda dura 3px de brutalismo: linha emissiva de luz na base do hero */
            box-shadow: inset 0 -3px 20px rgba(184, 149, 106, 0.15);
            border-bottom: 1px solid rgba(184, 149, 106, 0.4);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(184, 149, 106, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 2px,
                    rgba(184, 149, 106, 0.02) 2px,
                    rgba(184, 149, 106, 0.02) 4px
                );
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 62px;
            margin-bottom: 1.2rem;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            letter-spacing: 3px;
            font-weight: 700;
            text-shadow: 0 6px 20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(184, 149, 106, 0.2);
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 750px;
            margin: 0 auto 3rem;
            line-height: 1.9;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            font-family: 'Roboto Mono', monospace;
            letter-spacing: 0.5px;
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--bronze-primary) 0%, var(--bronze-mid) 100%);
            color: var(--primary-black);
            border: none;
            padding: 14px 40px; /* Mais encorpado para pílula */
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-family: 'Roboto Condensed', sans-serif;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 8px 24px rgba(184, 149, 106, 0.25), inset 0 2px 2px rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            border-radius: 50px; /* Formato Pílula Absoluto */
            z-index: 1;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--bronze-mid) 0%, var(--bronze-dark) 100%);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 35px rgba(184, 149, 106, 0.5), 0 0 20px rgba(184, 149, 106, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.3);
            color: #000;
        }

        .btn-primary:active {
            transform: translateY(0px) scale(0.97);
            box-shadow: 0 4px 16px rgba(184, 149, 106, 0.4);
        }

        .btn-secondary {
            background: rgba(18, 18, 18, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--bronze-primary);
            border: 1px solid rgba(184, 149, 106, 0.5);
            padding: 14px 40px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-family: 'Roboto Condensed', sans-serif;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-radius: 50px; /* Pílula Secundária em Vidro Fosco */
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-secondary:hover {
            background: rgba(184, 149, 106, 0.15);
            border-color: var(--bronze-primary);
            color: var(--bronze-primary);
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6), 0 0 15px rgba(184, 149, 106, 0.2);
        }

        .btn-secondary:active {
            transform: translateY(0px) scale(0.97);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        /* Section */
        .section {
            padding: 6rem 2rem;
            max-width: 1500px;
            margin: 0 auto;
            position: relative;
        }

        .section + .section {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .section-header {
            margin-bottom: 4rem;
            padding-left: 2rem;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .section-header::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 70%;
            background: linear-gradient(180deg, var(--bronze-primary), var(--bronze-dark));
            border-radius: 10px; /* Lindo marcador Pílula em vez de linha seca do Brutalismo */
            box-shadow: 0 0 15px rgba(184, 149, 106, 0.4);
        }

        .section-title {
            font-size: 42px;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            margin-bottom: 0.8rem;
            letter-spacing: 2px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .section-subtitle {
            font-size: 11px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: 'Roboto Mono', monospace;
        }

        /* Sections: offset for fixed header */
        section[id] {
            scroll-margin-top: 85px;
        }

        a.card {
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
        }

        a.card:visited {
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
            gap: 3rem;
        }

        .card {
            background: rgba(18, 18, 18, 0.4); /* Fundo de vidro translúcido */
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.04); /* Fim da borda pesada, início do delineamento fino */
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
            border-radius: 24px; /* Raio de canto luxuoso */
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(800px circle at top left, rgba(184, 149, 106, 0.15), transparent 40%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(184, 149, 106, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .card:hover {
            background: rgba(22, 22, 22, 0.6);
            border-color: rgba(184, 149, 106, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 149, 106, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .card:hover::before {
            opacity: 1; /* Iluminação orgânica radial de fundo */
        }

        .card:hover::after {
            opacity: 1;
        }

        .card-content {
            position: relative;
            z-index: 1;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-icon {
            font-size: 44px;
            color: var(--bronze-primary);
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            filter: drop-shadow(0 3px 8px rgba(184, 149, 106, 0.25));
        }

        .card:hover .card-icon {
            transform: translateY(-4px);
            filter: drop-shadow(0 4px 12px rgba(184, 149, 106, 0.4));
        }

        .card-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(107, 44, 44, 0.7) 0%, rgba(139, 58, 58, 0.7) 100%);
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            padding: 0.4rem 1rem;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
            letter-spacing: 1px;
            border: 1px solid var(--accent-red-light);
            width: fit-content;
            box-shadow: 0 4px 12px rgba(107, 44, 44, 0.4);
            font-family: 'Roboto Mono', monospace;
            border-radius: 4px;
        }

        .card-title {
            font-size: 22px;
            margin-bottom: 1rem;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            letter-spacing: 0.8px;
            line-height: 1.3;
        }

        .card-text {
            color: var(--text-secondary);
            margin-bottom: 1.8rem;
            line-height: 1.8;
            flex-grow: 1;
            font-size: 14px;
        }

        .card-meta {
            font-size: 11px;
            color: var(--text-tertiary);
            border-top: 1px solid var(--bronze-dark);
            padding-top: 1.2rem;
            letter-spacing: 0.5px;
            font-family: 'Roboto Mono', monospace;
        }

        .about-visual-fallback {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            opacity: 0.35;
            z-index: 1;
            position: relative;
        }

        .about-visual-fallback i {
            font-size: 80px;
            color: var(--bronze-primary);
            filter: drop-shadow(0 4px 16px rgba(184, 149, 106, 0.4));
        }

        .about-visual-fallback span {
            font-family: 'Roboto Mono', monospace;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--bronze-primary);
            text-transform: uppercase;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-visual {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(10, 10, 10, 0.7) 100%),
                        url('operation-bg.webp') center/cover;
            border: 1px solid rgba(184, 149, 106, 0.2);
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            border-radius: 24px;
        }

        .about-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(184, 149, 106, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.05),
                    rgba(0, 0, 0, 0.05) 1px,
                    transparent 1px,
                    transparent 2px
                );
            pointer-events: none;
        }

        .about-content h2 {
            font-size: 40px;
            margin-bottom: 1.8rem;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .about-content p {
            margin-bottom: 1.8rem;
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 15px;
        }

        .about-list {
            list-style: none;
            margin-top: 2.5rem;
        }

        .about-list li {
            margin-bottom: 1.4rem;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            color: var(--text-secondary);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .about-list li:hover {
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            padding-left: 0.8rem;
        }

        .about-list i {
            color: var(--bronze-primary);
            font-size: 22px;
            margin-top: 2px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(184, 149, 106, 0.3));
        }

        .about-list li:hover i {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(184, 149, 106, 0.5));
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: rgba(15, 15, 15, 0.5); /* Fundo Translúcido e limpo */
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(184, 149, 106, 0.15); /* Acaba com borda tracejada de 2010 */
            border-radius: 24px;
            padding: 2.2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.04);
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(184, 149, 106, 0.08) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .feature-card:hover {
            background: rgba(22, 22, 22, 0.6);
            border-color: rgba(184, 149, 106, 0.4);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 15px rgba(184, 149, 106, 0.15);
        }

        .feature-card:hover::before {
            opacity: 1; /* Iluminação radiante leve */
        }

        .feature-icon {
            font-size: 40px;
            color: var(--bronze-primary);
            margin-bottom: 1.2rem;
            transition: all 0.4s ease;
            filter: drop-shadow(0 3px 8px rgba(184, 149, 106, 0.25));
        }

        .feature-card:hover .feature-icon {
            transform: translateY(-3px) scale(1.05);
            filter: drop-shadow(0 6px 16px rgba(184, 149, 106, 0.5));
        }

        .feature-title {
            font-size: 18px;
            margin-bottom: 0.9rem;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            letter-spacing: 0.8px;
        }

        .feature-text {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(180deg, var(--primary-black) 0%, rgba(20, 20, 20, 0.9) 100%);
            border-top: 1px solid var(--bronze-dark);
            padding: 6rem 2rem;
            text-align: center;
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-title {
            color: var(--bronze-primary);
            font-size: 24px;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
        }

        .newsletter-text {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            width: 100%;
            border-radius: 50px; /* Formato Pílula Global */
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08); /* Brilho refinado */
            background: rgba(18, 18, 18, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .newsletter-form:focus-within {
            border-color: var(--bronze-primary);
            box-shadow: 0 0 20px rgba(184, 149, 106, 0.3);
        }

        .newsletter-input {
            flex-grow: 1;
            padding: 1.2rem 1.8rem;
            background: transparent; /* Herda o vidro da Pílula */
            border: none;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.03);
        }

        .newsletter-input::placeholder {
            color: var(--text-tertiary);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, var(--bronze-primary) 0%, var(--bronze-mid) 100%);
            color: var(--primary-black);
            border: none;
            border-left: 1px solid var(--bronze-dark);
            padding: 0 2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
            font-family: 'Roboto Condensed', sans-serif;
        }

        .newsletter-btn:hover {
            color: var(--primary-black);
            background: linear-gradient(135deg, var(--bronze-dark) 0%, var(--bronze-primary) 100%);
        }

        .newsletter-btn:active {
            transform: scale(0.97);
        }

        @media (max-width: 600px) {
            .newsletter-form {
                flex-direction: column;
                background: transparent;
                border: none;
                box-shadow: none;
            }
            .newsletter-input {
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 50px;
                text-align: center;
                background: rgba(18, 18, 18, 0.8);
                margin-bottom: 12px;
            }
            .newsletter-btn {
                padding: 1.2rem;
                border-radius: 50px;
                border: none;
            }
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, var(--primary-black) 100%);
            border-top: 1px solid rgba(184, 149, 106, 0.3);
            box-shadow: inset 0 2px 30px rgba(184, 149, 106, 0.08); /* Brilho suave */
            padding: 5rem 2rem 2.5rem;
        }

        .footer-container {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1.4fr 1.6fr;
            gap: 4rem;
            margin-bottom: 3.5rem;
        }

        .footer-brand h3 {
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            margin-bottom: 1.2rem;
            font-size: 17px;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        }

        .footer-brand p {
            color: var(--text-secondary);
            max-width: 320px;
            line-height: 1.85;
            font-size: 13px;
            margin-bottom: 1.5rem;
        }

        /* Nota Legal / Disclaimer */
        .footer-disclaimer {
            font-size: 11px;
            color: var(--text-tertiary);
            line-height: 1.6;
            border-left: 2px solid var(--bronze-dark);
            padding-left: 1rem;
            font-style: italic;
            max-width: 280px;
        }

        .footer-section h4 {
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-size: 12px;
            letter-spacing: 1.2px;
            font-family: 'Roboto Mono', monospace;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .footer-section h4::before {
            content: '';
            width: 4px;
            height: 12px;
            background: var(--bronze-primary);
            display: inline-block;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 13px;
            position: relative;
            padding-left: 0;
            display: inline-block;
        }

        .footer-links a::before {
            content: '▸';
            position: absolute;
            left: -18px;
            color: var(--bronze-primary);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--bronze-primary);
            padding-left: 18px;
            text-shadow: 0 0 8px rgba(184, 149, 106, 0.3);
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        /* Footer: contact link list (col 3) */
        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.6rem;
        }

        .footer-contact-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color 0.3s ease;
        }

        .footer-contact-link i {
            font-size: 15px;
            color: var(--bronze-primary);
            flex-shrink: 0;
        }

        .footer-contact-link:hover {
            color: var(--bronze-primary);
        }

        /* Footer: social icon row (col 3 bottom) */
        .footer-social-divider {
            font-family: 'Roboto Mono', monospace;
            font-size: 10px;
            color: var(--bronze-primary);
            letter-spacing: 2px;
            margin-bottom: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .footer-social-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--bronze-dark);
        }

        .footer-social-icons {
            display: flex;
            gap: 0.6rem;
        }

        .footer-social-icon {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--bronze-dark);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-icon:hover {
            background: rgba(184,149,106,0.12);
            border-color: var(--bronze-primary);
            color: var(--bronze-primary);
            transform: translateY(-3px);
        }

        .social-link {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, rgba(31, 31, 31, 0.8) 0%, rgba(18, 18, 18, 0.8) 100%);
            border: 1.5px solid var(--bronze-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bronze-primary);
            text-decoration: none;
            font-size: 20px;
            transition: all 0.35s ease;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-mid));
            transition: left 0.35s ease;
            z-index: -1;
        }

        .social-link:hover {
            color: var(--primary-black);
            border-color: var(--bronze-primary);
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(184, 149, 106, 0.4);
        }

        .social-link:hover::before {
            left: 0;
        }

        .social-link:active {
            transform: translateY(-2px) scale(0.95);
            transition: all 0.1s ease;
        }

        .footer-bottom {
            max-width: 1500px;
            margin: 0 auto;
            padding-top: 2.5rem;
            border-top: 1px solid var(--bronze-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-tertiary);
            font-size: 11px;
            font-family: 'Roboto Mono', monospace;
            letter-spacing: 0.5px;
        }

        /* FAQ */
        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-grid details {
            background: var(--secondary-black);
            border: 1px solid var(--bronze-dark);
            padding: 0;
            cursor: pointer;
            transition: border-color 0.3s, box-shadow 0.3s;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .faq-grid details::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: transparent;
            transition: background-color 0.3s ease;
            z-index: 2;
        }

        .faq-grid details[open] {
            border-color: var(--bronze-primary);
            box-shadow: 0 4px 20px rgba(184, 149, 106, 0.1);
        }

        .faq-grid details[open]::before {
            background-color: var(--bronze-primary);
        }

        .faq-grid details:hover {
            border-color: var(--bronze-primary);
        }

        .faq-grid summary {
            font-weight: 700;
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.4rem 1.6rem;
            font-size: 15px;
            letter-spacing: 0.3px;
            transition: color 0.3s, background-color 0.3s ease;
        }

        .faq-grid summary:hover {
            background-color: rgba(184, 149, 106, 0.03);
        }

        .faq-grid summary::-webkit-details-marker { display: none; }

        .faq-grid summary::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 20px;
            color: var(--bronze-primary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-grid details[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-grid details[open] summary {
            color: var(--bronze-light);
        }

        .faq-content {
            padding: 0 1.6rem 1.4rem;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.8;
            border-top: 1px solid var(--bronze-dark);
            margin-top: 0;
            padding-top: 1.2rem;
        }

        /* Estabilização de Visibilidade Máxima (Fix Áreas Pretas) */
        .section,
        .feature-card,
        .card,
        .boot-reveal {
            opacity: 1 !important;
            transform: none !important;
            visibility: visible !important;
            transition: none !important;
        }

        /* Already visible above fold */
        .hero {
            opacity: 1;
        }

        /* Staggered fade-in for grid children */
        .cards-grid .card:nth-child(1),
        .feature-grid .feature-card:nth-child(1) { transition-delay: 0ms; }
        .cards-grid .card:nth-child(2),
        .feature-grid .feature-card:nth-child(2) { transition-delay: 80ms; }
        .cards-grid .card:nth-child(3),
        .feature-grid .feature-card:nth-child(3) { transition-delay: 160ms; }
        .cards-grid .card:nth-child(4),
        .feature-grid .feature-card:nth-child(4) { transition-delay: 240ms; }
        .cards-grid .card:nth-child(5),
        .feature-grid .feature-card:nth-child(5) { transition-delay: 320ms; }
        .cards-grid .card:nth-child(6),
        .feature-grid .feature-card:nth-child(6) { transition-delay: 400ms; }

        /* Accessibility: focus outlines */
        a:focus-visible,
        button:focus-visible,
        details:focus-visible,
        summary:focus-visible {
            outline: 2px solid var(--bronze-primary);
            outline-offset: 3px;
        }

        /* Botão Scroll to Top */
        .back-to-top {
            will-change: transform, opacity;
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
            color: var(--primary-black);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            border: 2px solid var(--bronze-light);
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .hero {
                background-attachment: scroll;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0.8rem 1rem;
                width: 92%;
                top: 10px;
                border-radius: 16px;
            }

            .mobile-toggle {
                display: block;
            }

            .nav {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                position: absolute;
                top: calc(100% + 10px); /* Pop-out gap from the pill */
                left: 0;
                width: 100%;
                background: rgba(12, 12, 12, 0.75);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 16px;
                padding: 1.5rem;
                gap: 0.8rem;
                transform: translateY(-20px) scale(0.95);
                opacity: 0;
                pointer-events: none;
                transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
            }

            .nav.active {
                transform: translateY(0) scale(1);
                opacity: 1;
                pointer-events: auto;
            }

            /* Nav Links Mobile (Tipografia adaptada para o menu Pílula) */
            .nav-link {
                width: 100%;
                padding: 12px 14px;
                font-size: 15px;
                border-radius: 12px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            }

            .nav-link:last-child {
                border-bottom: none;
            }

            /* Mobile: Mobile-First UX (Sem herança visual confusa do desktop) */
            .nav-dropdown {
                width: 100%;
            }

            .dropdown-toggle {
                width: 100%;
                justify-content: space-between;
                padding: 12px 0; /* Área de toque ampliada */
                font-size: 15px; /* Mais legível em telas pequenas */
            }

            .dropdown-menu {
                position: static;
                transform: none;
                width: 100%;
                box-shadow: none;
                background: transparent;
                border: none;
                
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                padding: 0;
                margin: 0;
                
                transition: max-height 0.35s ease-in-out, opacity 0.3s ease-in-out, margin 0.3s ease;
            }

            .nav-dropdown:hover .dropdown-menu,
            .nav-dropdown.open .dropdown-menu {
                max-height: 250px; /* Expansão estrita ao conteúdo */
                opacity: 1;
                visibility: visible;
                pointer-events: auto; 
                padding: 0; 
                margin-top: 2px;
                margin-bottom: 0px; 
                transform: none;
            }

            /* Itens do Submenu (UX Nativo - Sem borders pulando ou padding shift) */
            .dropdown-item {
                display: block; 
                padding: 14px 14px 14px 24px; /* 42px+ de área de toque real (Mobile Gold Standard) e recuado (hierarquia) */
                color: var(--text-secondary);
                font-family: 'Roboto Condensed', sans-serif;
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 0.5px;
                background: transparent;
                border: none; /* Anula herança de bordas do desktop */
                border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Divisor utilitário sutil */
                transition: background-color 0.15s ease, color 0.15s ease;
            }

            .dropdown-item:last-child {
                border-bottom: none;
            }

            /* Estado Dinâmico Restrito (Sem saltos, apenas highlight de clique/toque) */
            .dropdown-item:hover,
            .dropdown-item:active {
                color: var(--text-primary);
                background: rgba(184, 149, 106, 0.08); /* Feedback tátil de bronze super leve */
                padding-left: 24px; /* Trava o padding para o texto NÃO andar! */
                border-left-color: transparent; /* Mata o marcador que aparecia do nada */
            }



            .hero {
                margin-top: 65px;
                padding: 4rem 1rem;
                min-height: 500px;
            }

            .hero-content h1 {
                font-size: 44px;
            }

            .section {
                padding: 4rem 1rem;
            }

            .section-title {
                font-size: 34px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-visual {
                height: 320px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .logo-header {
                font-size: 14px;
                gap: 0.5rem;
            }

            .logo-header img {
                width: 40px;
                height: 40px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .card {
                padding: 1.8rem;
            }

            .btn-primary, .btn-secondary {
                padding: 0.8rem 1.8rem;
                font-size: 11px;
            }

            .about-visual {
                height: 280px;
            }
        }
    
/* Responsive Table */
        .table-wrapper {
            overflow-x: auto;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            border-radius: 6px;
        }

        .table-tactical {
            width: 100%;
            border-collapse: collapse;
            background: rgba(18, 18, 18, 0.8);
            font-size: 14px;
            min-width: 600px;
        }

        .table-tactical th {
            background: linear-gradient(135deg, var(--bronze-dark), var(--bronze-primary));
            color: var(--primary-black);
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            padding: 1rem;
            text-align: left;
            letter-spacing: 1px;
        }

        .table-tactical td {
            padding: 1rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--bronze-dark);
        }

        .table-tactical tr:last-child td {
            border-bottom: none;
        }

        .table-tactical tr:hover td {
            background: rgba(184, 149, 106, 0.05);
            color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
        }

        .table-tactical a {
            color: var(--bronze-primary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .table-tactical a:hover {
            color: var(--bronze-light);
            text-decoration: underline;
        }


        /* Revelação Boot-up Tática */
        .boot-reveal {
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: opacity, transform;
        }

        .boot-reveal.booted {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Efeito de Escaneamento na Revelação */
        .section.boot-reveal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--bronze-primary);
            box-shadow: 0 0 15px var(--bronze-primary);
            opacity: 0;
            z-index: 10;
            pointer-events: none;
        }

        .section.boot-reveal.booted::before {
            animation: scanReveal 0.8s ease-out forwards;
        }

        @keyframes scanReveal {
            0% { top: 0; opacity: 1; }
            100% { top: 100%; opacity: 0; }
        }

[data-theme="light"] {
    --primary-black: #f0f0f0;
    --secondary-black: #e4e4e4;
    --dark-gray: #d4d4d4;
    --medium-gray: #c0c0c0;
    --text-primary: #121212;
    --text-secondary: #404040;
    --text-tertiary: #606060;
    --border-subtle: #cccccc;
    --border-bronze: #8b7355;
}

[data-theme="light"] body::before {
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 2px);
}

[data-theme="light"] .card, [data-theme="light"] .feature-card {
    background: linear-gradient(135deg, rgba(230,230,230,0.8), rgba(240,240,240,0.8));
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

[data-theme="light"] .table-tactical td {
    color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
}

.theme-btn {
    background: transparent;
    border: none;
    color: var(--bronze-primary);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-btn:hover {
    transform: rotate(20deg) scale(1.1);
    text-shadow: 0 0 10px rgba(184, 149, 106, 0.5);
}

/* ==========================================================
   NOVO DESIGN TÁTICO / HUD MILITAR / ANIMAÇÕES
   ========================================================== */

/* 1. Efeito Scanline / Radar na Hero */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(180deg, transparent, rgba(184, 149, 106, 0.4), transparent);
    opacity: 0.6;
    animation: radarScan 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes radarScan {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(800px); }
}

/* 2. Half-Hero (Páginas Internas) */
.half-hero {
    margin-top: 75px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(18, 18, 18, 0.90) 100%), 
                url('operation-bg.webp') center/cover;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 2px solid var(--bronze-dark);
    position: relative;
    overflow: hidden;
}

.half-hero h1 {
    font-size: 50px;
    color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
}

/* Estilo HUD Militar / Caixas de Alerta */
.hud-box {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.5) 0%, rgba(18, 18, 18, 0.7) 100%);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.hud-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bronze-primary);
}

.hud-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--bronze-primary);
}

/* --------- HUD Interativo de Campos --------- */
.hud-filters {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.radar-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.radar-search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bronze-primary);
    font-size: 16px;
    pointer-events: none;
}

.radar-input {
    width: 100%;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Brilho utilitário limpo */
    border-radius: 50px; /* Formato Pílula Global HUD */
    padding: 14px 20px 14px 45px; /* Acomodação tátil */
    color: var(--text-primary); transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), inset 0 2px 5px rgba(0, 0, 0, 0.6);
}

.radar-input:focus {
    outline: none;
    border-color: var(--bronze-primary);
    background: rgba(22, 22, 22, 0.8);
    box-shadow: 0 0 20px rgba(184, 149, 106, 0.3), inset 0 2px 5px rgba(0, 0, 0, 0.6);
}

.region-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--bronze-light);
    border-color: var(--bronze-dark);
}

.filter-btn.active {
    background: rgba(184, 149, 106, 0.15);
    color: var(--bronze-primary);
    border-color: var(--bronze-primary);
    box-shadow: 0 0 10px rgba(184, 149, 106, 0.2);
}

.op-today-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 125, 50, 0.15);
    color: #4CAF50;
    border: 1px solid #2E7D32;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Roboto Mono', monospace;
    margin-left: 10px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 5px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.card-hidden {
    display: none !important;
}

/* Cartões de Inteligência (Intel Cards) - Página de Campos */
.intel-card {
    background: rgba(15, 15, 15, 0.7); /* Acrílico escuro para legibilidade Tática */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px; /* Premium UI */
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.intel-card:hover {
    border-color: var(--bronze-primary);
    box-shadow: 0 0 25px rgba(184, 149, 106, 0.15);
    transform: translateY(-5px);
}

.intel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 10px);
    pointer-events: none;
    z-index: 0;
}

.intel-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.intel-header {
    border-bottom: 1px dashed var(--border-subtle);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.intel-status {
    width: 100%;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    color: var(--accent-red);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.intel-card h3 {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: 'Roboto Condensed', sans-serif;
}


.intel-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bronze-primary);
    color: var(--secondary-black);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(184, 149, 106, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
    height: fit-content;
}

.intel-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    color: var(--bronze-primary);
    margin-right: 8px;
    letter-spacing: 1px;
}

.intel-info {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.intel-info i {
    margin-top: 4px;
    margin-right: 8px;
    color: var(--accent-red);
}

.intel-actions {
    margin-top: auto;
    padding-top: 0.8rem; /* Reduced from 1.5rem */
    display: flex;
    gap: 0.5rem;
}

/* Indicadores de Dias (Campos Parceiros) */
.day-indicators-container {
    display: flex;
    flex-wrap: wrap; /* Permits the badge or days to drop elegantly down if constrained */
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    margin-bottom: 0.5rem; /* Reduced from 1.5rem */
}

.day-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Maior área Touch */
    height: 32px;
    border-radius: 50%; /* Bolhas flutuantes táticas perfeitas */
    background: rgba(30, 30, 30, 0.8);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif; /* Abandonando fonte mono miúda */
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Soft delineador */
}

.day-indicator.active {
    background: rgba(184, 149, 106, 0.15);
    color: var(--bronze-primary);
    border-color: rgba(184, 149, 106, 0.6);
    box-shadow: 0 0 15px rgba(184, 149, 106, 0.3), inset 0 0 10px rgba(184, 149, 106, 0.1);
}

/* Legal Pages (regras, legislacao) */
.legal-page .section {
    opacity: 1;
    transform: none;
}

.op-today-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 60, 60, 0.15);
    color: var(--accent-red);
    font-size: 11px;
    font-family: 'Roboto Mono', monospace;
    padding: 3px 8px;
    border-radius: 4px;
    vertical-align: middle;
    border: 1px solid rgba(255, 60, 60, 0.3);
    margin-left: 4px; /* Apenas folga leve da bolinha de domingo */
    text-shadow: none; 
    letter-spacing: 1px;
    white-space: nowrap;
}

/* 4. Títulos com Gradiente Metálico Premium */
.gradient-text {
    background: linear-gradient(to right, var(--bronze-light), var(--bronze-dark), var(--bronze-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Canais de Comunicação e Redes Sociais — 4 colunas fixas, responsivo */
#contato .cards-grid,
#redes-sociais .cards-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 900px) {
    #contato .cards-grid,
    #redes-sociais .cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 500px) {
    #contato .cards-grid,
    #redes-sociais .cards-grid {
        grid-template-columns: 1fr !important;
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--secondary-black);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item::before {
    content: 'CAM ONLINE';
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10,10,10,0.8);
    color: var(--bronze-light);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-family: 'Roboto Mono', monospace;
    z-index: 2;
    border-left: 2px solid var(--accent-red);
}

.gallery-item::after {
    content: 'REC';
    position: absolute;
    top: 12px;
    right: 15px;
    color: var(--accent-red);
    font-size: 10px;
    font-family: 'Roboto Mono', monospace;
    z-index: 2;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, var(--dark-gray), var(--dark-gray) 10px, var(--secondary-black) 10px, var(--secondary-black) 20px);
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item:hover .gallery-image-placeholder {
    transform: scale(1.05);
    opacity: 0.8;
}

.gallery-item:hover {
    border-color: var(--bronze-primary);
    box-shadow: 0 0 20px rgba(184, 149, 106, 0.2);
}

/* 7. Efeito Glitch Tático (Hover) */
        @keyframes glitch {
            0% { transform: translate(0); text-shadow: -2px 0 var(--accent-red), 2px 0 var(--bronze-primary); }
            25% { transform: translate(-2px, 2px); text-shadow: -2px 0 var(--accent-red), 2px 0 var(--bronze-primary); }
            50% { transform: translate(2px, -2px); text-shadow: 2px 0 var(--accent-red), -2px 0 var(--bronze-primary); }
            75% { transform: translate(-2px, -2px); text-shadow: -2px 0 var(--accent-red), 2px 0 var(--bronze-primary); }
            100% { transform: translate(0); text-shadow: -2px 0 var(--accent-red), 2px 0 var(--bronze-primary); }
        }

        .glitch-hover:hover {
            animation: glitch 0.3s cubic-bezier(.25,.46,.45,.94) both infinite;
            color: var(--text-primary);
        }

        /* 8. Barra de Progresso de Leitura */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 2000;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(to right, var(--bronze-dark), var(--bronze-primary), var(--bronze-light));
            width: 0%;
            transition: width 0.1s ease-out;
            box-shadow: 0 0 10px rgba(184, 149, 106, 0.6);
        }

        /* 9. Tooltips Táticos Estilizados */
        [data-tooltip] {
            position: relative;
            cursor: help;
            border-bottom: 1px dotted var(--bronze-primary);
        }

        [data-tooltip]::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(18, 18, 18, 0.95);
            color: var(--bronze-light);
            padding: 8px 12px;
            font-size: 11px;
            font-family: 'Roboto Mono', monospace;
            white-space: nowrap;
            border: 1px solid var(--bronze-dark);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 100;
            box-shadow: 0 10px 30px rgba(0,0,0,0.8);
            pointer-events: none;
        }

        [data-tooltip]:hover::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* 10. Skeleton Loading Shimmer */
        .skeleton {
            background: linear-gradient(
                90deg,
                rgba(31, 31, 31, 0.6) 25%,
                rgba(42, 42, 42, 0.8) 50%,
                rgba(31, 31, 31, 0.6) 75%
            );
            background-size: 200% 100%;
            animation: skeleton-shimmer 2s infinite linear;
            border-radius: 8px;
            display: inline-block;
        }

        @keyframes skeleton-shimmer {
            from { background-position: 200% 0; }
            to { background-position: -200% 0; }
        }

        /* 11. Elementos HUD Decorativos */
        .hud-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid var(--bronze-dark);
            opacity: 0.5;
            pointer-events: none;
            z-index: 5;
        }

        .hud-corner-tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
        .hud-corner-tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
        .hud-corner-bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
        .hud-corner-br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

        .hero:hover .hud-corner {
            opacity: 1;
            border-color: var(--bronze-primary);
            transition: all 0.3s ease;
        }

        /* 12. Mira Tática (Custom Cursor) */
        @media (pointer: fine) {
            body { cursor: none; }
            a, button, .card, .mobile-toggle, summary, .btn-primary, .btn-secondary { cursor: none; }

            .tactical-cursor-dot {
                width: 6px;
                height: 6px;
                background-color: var(--bronze-primary);
                position: fixed;
                top: 0;
                left: 0;
                border-radius: 50%;
                pointer-events: none;
                z-index: 9999;
                transform: translate(-50%, -50%);
                transition: background-color 0.3s ease, box-shadow 0.3s ease;
                box-shadow: 0 0 10px var(--bronze-primary);
            }

            .tactical-cursor-outline {
                width: 40px;
                height: 40px;
                border: 1px solid rgba(184, 149, 106, 0.5);
                position: fixed;
                top: 0;
                left: 0;
                border-radius: 50%;
                pointer-events: none;
                z-index: 9998;
                transform: translate(-50%, -50%);
                transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .tactical-cursor-outline::before,
            .tactical-cursor-outline::after {
                content: '';
                position: absolute;
                background-color: var(--bronze-primary);
                opacity: 0.5;
            }

            .tactical-cursor-outline::before { width: 100%; height: 1px; left: 0; background: linear-gradient(90deg, var(--bronze-primary) 0%, transparent 40%, transparent 60%, var(--bronze-primary) 100%); }
            .tactical-cursor-outline::after { width: 1px; height: 100%; top: 0; background: linear-gradient(180deg, var(--bronze-primary) 0%, transparent 40%, transparent 60%, var(--bronze-primary) 100%); }

            body.cursor-hover .tactical-cursor-dot { background-color: #fff; box-shadow: 0 0 15px #fff; transform: translate(-50%, -50%) scale(1.2); }
            body.cursor-hover .tactical-cursor-outline { width: 30px; height: 30px; border-color: var(--bronze-primary); border-width: 2px; }
        }

/* ==========================================================================
   LEGAL & SECONDARY PAGES (Padronização Textual/Design)
   ========================================================================== */

/* Page Headers (Hero Substitutos) */
.page-hero {
    padding-top: 120px;
    padding-bottom: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.campos-hero-bg {
    background: url('operation-bg.webp') center/cover fixed;
    background-color: var(--secondary-black);
    background-blend-mode: multiply;
}

.campos-hero {
    padding-top: 120px;
    padding-bottom: 60px;
}

.page-header {
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
}

.campos-hero .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.campos-hero .intel-status {
    font-size: 14px;
    margin-bottom: 1rem;
    display: inline-block;
}


.page-title {
    font-size: 38px;
    margin-bottom: 0.5rem;
}

.back-action {
    margin-top: 4rem;
    text-align: center;
}

.back-action .btn-primary {
    display: inline-flex;
}

.campos-hero .page-title {
    font-size: 46px;
    text-shadow: 0 0 20px rgba(184, 149, 106, 0.4);
}

.page-subtitle {
    color: var(--bronze-primary);
    font-size: 16px;
}

.campos-hero .page-subtitle {
    color: var(--bronze-light);
}

.campos-hero-divider {
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: var(--bronze-primary); 
    box-shadow: 0 0 15px rgba(184, 149, 106, 0.6); 
    margin: 2rem auto;
}

/* Legal Content Component */
.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px; /* Margem inferior de respiro global */
}

/* Typography Hierarchy inside Legal Content */
.legal-content h2 {
    color: var(--text-primary);
    font-size: 24px;
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
}

/* First H2 variant (Resumo Geral) */
.legal-content h2:first-of-type {
    margin-top: 2rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

/* Callout / Highlight Paragraphs */
.legal-content p.callout {
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    font-size: 17px;
    padding: 1.5rem;
    background: rgba(184, 149, 106, 0.05);
    border-left: 3px solid var(--bronze-primary);
    border-radius: 4px;
}

.legal-content ul {
    list-style-type: none;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content li strong {
    color: var(--text-primary);
}

/* Bronze List Indicators overrides */
.legal-content ul > li::before {
    content: "▸";
    color: var(--bronze-primary);
    margin-right: 8px;
    display: inline-block;
}

/* Nested lists (Circled defaults) */
.legal-content ul ul {
    list-style-type: circle;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
}

.legal-content ul ul > li::before {
    content: none; /* remove the triangle for nested */
}

.legal-content a:not([class*="btn-"]) {
    color: var(--bronze-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:not([class*="btn-"]):hover {
    color: var(--bronze-light);
    text-decoration: underline;
}

/* Custom classes inside Intel Cards (Campos) */
.link-clean {
    color: inherit;
    text-decoration: none;
}

.intel-label {
    display: block;
    margin-bottom: 8px;
}

.intel-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.intel-actions .btn-secondary,
.intel-actions .btn-primary {
    flex: 1;
    text-align: center;
    font-size: 13px;
}
