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

        :root {
            color-scheme: dark;
            --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: #bfbfbf;
            --text-tertiary: #9a9a9a;
            --text-muted: var(--text-tertiary);
            --accent-red: #6b2c2c;
            --accent-red-light: #8b3a3a;
            --border-subtle: #303030;
            --border-bronze: #5a4a3a;
            --focus-ring-color: var(--bronze-light);
            --focus-ring-width: 2px;
            --focus-ring-offset: 3px;
            --radius-ui: 8px; /* cantos leves — footer, dropdown, newsletter */
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        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;
            min-height: 100vh;
            min-height: 100dvh;
        }

        body.nav-open {
            overflow: hidden;
        }

        .shell-warning {
            background: rgba(107, 44, 44, 0.95);
            color: #fff;
            text-align: center;
            padding: 0.75rem 1rem;
            font-size: 14px;
            line-height: 1.5;
            position: relative;
            z-index: 10001;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .shell-warning-retry {
            display: inline;
            margin: 0 0 0 0.35rem;
            padding: 0;
            border: none;
            background: none;
            color: #ffd89b;
            font: inherit;
            font-weight: 700;
            text-decoration: underline;
            cursor: pointer;
        }

        .shell-warning-retry:hover {
            color: #fff;
        }

        .shell-warning-retry:focus-visible {
            outline: 2px solid #ffd89b;
            outline-offset: 3px;
        }

        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 */
        ::-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: 0.85rem;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 17px;
            font-family: 'Roboto Condensed', sans-serif;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            transition: color 0.25s ease, opacity 0.25s ease;
            position: relative;
        }

        .logo-header:hover {
            color: var(--bronze-light);
        }

        .logo-header-text {
            line-height: 1.15;
            max-width: 11em;
        }



        .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: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: color 0.2s ease, background 0.2s ease;
            position: relative;
            font-family: 'Roboto Condensed', sans-serif;
            padding: 8px 14px;
            border-radius: 999px;
            background: transparent;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.07);
            font-weight: 600;
        }

        /* 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);
            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: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--text-secondary);
            transition: color 0.2s ease, background 0.2s ease;
            position: relative;
            padding: 8px 14px;
            border-radius: 999px;
        }

        .dropdown-toggle:hover,
        .nav-dropdown.open .dropdown-toggle {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.07);
            font-weight: 600;
        }

        .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(16, 16, 16, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            min-width: 232px;
            padding: 6px 0;
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(184, 149, 106, 0.12);
            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;
            margin: 0 6px;
            border-radius: 8px;
            color: var(--text-secondary);
            text-decoration: none;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: background 0.18s ease, color 0.18s ease;
            border-left: none;
        }

        .dropdown-item:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.06);
        }

        .dropdown-item.active {
            color: var(--bronze-light);
            background: rgba(184, 149, 106, 0.12);
            font-weight: 600;
        }

        .nav-dropdown:has(.dropdown-item.active) .dropdown-toggle {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .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 -2px 12px rgba(184, 149, 106, 0.08);
            border-bottom: 1px solid rgba(184, 149, 106, 0.25);
            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.012) 2px,
                    rgba(184, 149, 106, 0.012) 4px
                );
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            animation: fadeInDown 0.8s ease-out;
        }

        /* Faixa de orientação — primeira visita */
        .entry-nav {
            background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(18, 18, 18, 0.95) 100%);
            border-bottom: 1px solid rgba(184, 149, 106, 0.22);
            padding: 1.25rem 1.5rem;
        }

        .entry-nav-inner {
            max-width: 920px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.85rem;
            text-align: center;
        }

        .entry-nav-label {
            font-family: 'Roboto Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--bronze-primary);
            margin: 0;
            font-weight: 600;
        }

        .entry-nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 0.65rem;
            margin: 0;
            padding: 0;
        }

        .entry-nav-list a {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 1rem;
            border-radius: 999px;
            border: 1px solid rgba(184, 149, 106, 0.35);
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            font-family: 'Roboto Condensed', sans-serif;
            letter-spacing: 0.03em;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .entry-nav-list a:hover {
            color: var(--bronze-light);
            border-color: var(--bronze-primary);
            background: rgba(184, 149, 106, 0.08);
        }

        @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);
            letter-spacing: 2px;
            font-weight: 700;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75), 0 0 18px rgba(184, 149, 106, 0.12);
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 750px;
            margin: 0 auto 3rem;
            line-height: 1.85;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.02em;
        }

        .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 6px 18px rgba(184, 149, 106, 0.18), 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(-2px) scale(1.01);
            box-shadow: 0 10px 26px rgba(184, 149, 106, 0.35), 0 0 12px rgba(184, 149, 106, 0.18), inset 0 2px 2px rgba(255, 255, 255, 0.28);
            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 6px 18px rgba(0, 0, 0, 0.32);
            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(-2px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 10px rgba(184, 149, 106, 0.12);
        }

        .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.section-tight-top {
            padding-top: 0;
        }

        .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 8px rgba(184, 149, 106, 0.22);
        }

        .section-title {
            font-size: 42px;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
            letter-spacing: 2px;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
            text-wrap: balance;
        }

        .section-subtitle {
            font-size: 11px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 600;
        }

        /* Sections: offset for fixed header */
        section[id] {
            scroll-margin-top: 85px;
        }

        a.card {
            color: var(--text-primary);
        }

        a.card:visited {
            color: var(--text-primary);
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, 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 8px 28px rgba(0, 0, 0, 0.45), 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(-4px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 14px rgba(184, 149, 106, 0.1), 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(-2px);
            filter: drop-shadow(0 3px 8px rgba(184, 149, 106, 0.3));
        }

        .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);
            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);
            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-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin: 0 auto;
}

.about-image {
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 149, 106, 0.15);
    border-radius: 24px;
    height: 380px;
    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;
    margin: 0 auto;
}

.about-image::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;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.75));
    pointer-events: none;
    z-index: 2;
    border-radius: 24px;
}

.about-image:hover {
    background: rgba(22, 22, 22, 0.6);
    border-color: rgba(184, 149, 106, 0.3);
    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);
}

.about-image:hover::after {
    border-color: rgba(184, 149, 106, 0.3);
}

.about-image:hover::before {
    opacity: 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.about-content h2 {
    color: #c9a876;
    font-size: 2.2rem;
    margin-bottom: 1.4rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.about-list {
    margin-top: 2rem;
    list-style: none;
}

.about-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list i {
    color: #b8956a;
    margin-top: 3px;
    font-size: 1.1rem;
}

/* Responsivo */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .about-image {
        max-width: 520px;
        margin: 0 auto;
    }
    
    .about-content h2 {
        font-size: 1.9rem;
    }
}

        /* 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(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 12px rgba(184, 149, 106, 0.1);
        }

        .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(-2px) scale(1.02);
            filter: drop-shadow(0 4px 12px rgba(184, 149, 106, 0.35));
        }

        .feature-title {
            font-size: 18px;
            margin-bottom: 0.9rem;
            color: var(--text-primary);
            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-hint {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.55;
            margin: -1rem auto 1.25rem;
            max-width: 520px;
        }

        .newsletter-hint a {
            color: var(--bronze-primary);
            font-weight: 600;
        }

        .newsletter-hint a:hover {
            color: var(--bronze-light);
            text-decoration: underline;
        }

        /* Formulário boletim: e-mail + botão em linha (raio alinhado ao resto do site) */
        .newsletter-form {
            display: flex;
            gap: 0;
            align-items: stretch;
            width: 100%;
            border-radius: var(--radius-ui);
            overflow: visible;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            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 14px rgba(184, 149, 106, 0.18);
        }

        .newsletter-input {
            flex-grow: 1;
            min-width: 0;
            padding: 1.2rem 1.25rem 1.2rem 1.8rem;
            background: transparent;
            border: none;
            border-radius: var(--radius-ui) 0 0 var(--radius-ui);
            color: var(--text-primary);
            font-size: 15px;
            font-family: inherit;
            transition: background 0.3s ease;
        }

        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.03);
        }

        .newsletter-input:focus-visible {
            outline-offset: 3px;
            position: relative;
            z-index: 1;
        }

        .newsletter-input::placeholder {
            color: var(--text-tertiary);
        }

        .newsletter-btn {
            flex-shrink: 0;
            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);
            border-radius: 0 var(--radius-ui) var(--radius-ui) 0;
            padding: 0 1.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.15s ease;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
            font-family: 'Roboto Condensed', sans-serif;
        }

        .newsletter-btn:focus-visible {
            outline-offset: 3px;
            position: relative;
            z-index: 1;
        }

        .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);
        }

        .newsletter-success {
            display: none;
            color: #4ade80;
            margin-top: 15px;
            font-weight: 500;
            font-size: 0.9rem;
            text-align: center;
        }

        .newsletter-success.is-visible {
            display: block;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, rgba(14, 14, 14, 0.97) 0%, var(--primary-black) 100%);
            border-top: 1px solid rgba(184, 149, 106, 0.22);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
            padding: 4.5rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(200px, 1.35fr) repeat(4, minmax(0, 1fr));
            gap: 2.25rem 2rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        .footer-brand h3 {
            color: var(--text-primary);
            margin-bottom: 0.85rem;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: none;
            font-family: 'Roboto Condensed', sans-serif;
        }

        .footer-brand p {
            color: var(--text-secondary);
            max-width: 300px;
            line-height: 1.75;
            font-size: 13px;
            margin-bottom: 1.25rem;
        }

        /* Nota Legal / Disclaimer */
        .footer-disclaimer {
            font-size: 11px;
            color: var(--text-tertiary);
            line-height: 1.55;
            border-left: 2px solid rgba(184, 149, 106, 0.35);
            padding-left: 0.9rem;
            font-style: normal;
            max-width: 280px;
        }

        .footer-section h4 {
            color: var(--text-primary);
            text-transform: uppercase;
            margin-bottom: 0.35rem;
            font-size: 11px;
            letter-spacing: 0.14em;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 600;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }

        .footer-section h4::before {
            content: '';
            width: 3px;
            height: 14px;
            border-radius: 2px;
            background: linear-gradient(180deg, var(--bronze-primary), var(--bronze-dark));
            display: inline-block;
            flex-shrink: 0;
        }

        .footer-section-desc {
            font-size: 11px;
            color: var(--text-tertiary);
            line-height: 1.45;
            margin: 0 0 1rem;
            max-width: 220px;
            opacity: 0.92;
        }

        .footer-section--contact .footer-section-desc,
        .footer-section--social .footer-section-desc {
            max-width: none;
        }

        .footer-section--social .footer-social-icons {
            flex-wrap: wrap;
        }

        .footer-links {
            list-style: none;
            padding-inline-start: 0;
            margin-block: 0;
        }

        .footer-links li {
            margin-bottom: 0.65rem;
        }

        .footer-links--dense li {
            margin-bottom: 0.45rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
            font-size: 13px;
            position: relative;
            padding: 0.15rem 0;
            display: inline-block;
            border-bottom: 1px solid transparent;
        }

        .footer-links a:hover {
            color: var(--bronze-light);
            border-bottom-color: rgba(184, 149, 106, 0.45);
        }

        /* Footer: contact link list */
        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 0;
        }

        .footer-contact-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color 0.2s ease, background 0.2s ease;
            padding: 0.35rem 0.5rem;
            margin: 0 -0.5rem;
            border-radius: 8px;
        }

        .footer-contact-link i {
            font-size: 15px;
            color: var(--bronze-primary);
            flex-shrink: 0;
            opacity: 0.9;
        }

        .footer-contact-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .footer-social-icons {
            display: flex;
            gap: 0.6rem;
        }

        .footer-social-icon {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(184, 149, 106, 0.25);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 15px;
            text-decoration: none;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .footer-social-icon:hover {
            background: rgba(184, 149, 106, 0.1);
            border-color: rgba(184, 149, 106, 0.45);
            color: var(--bronze-light);
        }

        .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(-2px);
            box-shadow: 0 8px 20px rgba(184, 149, 106, 0.22);
        }

        .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: 2rem;
            border-top: 1px solid rgba(184, 149, 106, 0.25);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            text-align: center;
            color: var(--text-tertiary);
            font-size: 12px;
        }

        .footer-copyright {
            margin: 0;
            color: var(--text-secondary);
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.02em;
        }

        .footer-meta-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.35rem 0.45rem;
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
        }

        .footer-meta-nav a {
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-meta-nav a:hover {
            color: var(--bronze-light);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .footer-meta-dot {
            color: var(--bronze-dark);
            user-select: none;
        }

        .footer-tagline {
            margin: 0;
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: none;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 500;
            color: var(--text-tertiary);
            opacity: 0.9;
        }

        .footer-sitemap-link {
            color: inherit;
            text-decoration: none;
        }

        .footer-sitemap-link:hover {
            color: var(--bronze-light);
            text-decoration: underline;
        }

        /* 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);
            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;
        }

        /* Skip link (acessibilidade) */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 10000;
            padding: 0.75rem 1.25rem;
            background: var(--bronze-primary);
            color: var(--primary-black);
            font-weight: 700;
            font-family: 'Roboto Condensed', sans-serif;
            text-decoration: none;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .skip-link:focus-visible {
            left: 1rem;
        }

        /* Foco de teclado — anel unificado (contraste com fundo escuro) */
        :focus:not(:focus-visible) {
            outline: none;
        }

        :focus-visible {
            outline: var(--focus-ring-width) solid var(--focus-ring-color);
            outline-offset: var(--focus-ring-offset);
        }

        /* 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;
            appearance: none;
            -webkit-appearance: none;
            font: inherit;
            line-height: 1;
            margin: 0;
            padding: 0;
            cursor: pointer;
            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(-3px);
            box-shadow: 0 5px 16px rgba(184, 149, 106, 0.3);
        }

        @media (prefers-reduced-motion: reduce) {
            .back-to-top:hover {
                transform: none;
            }
            .scanline {
                display: none !important;
            }
            .glitch-hover:hover {
                animation: none !important;
            }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto !important;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .hero, .half-hero, .action-parallax {
                background-attachment: scroll !important;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem 2rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
                max-width: 520px;
            }
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0.8rem 1rem;
                width: 92%;
                top: 10px;
                border-radius: 16px;
            }

            header.scrolled {
                padding: 0.8rem 1rem !important; /* Trava o tamanho ao rolar a página no mobile para não encolher a logo */
            }

            header:has(.nav.active) {
                background: #0c0c0c !important; /* Retira transparência da barra principal quando aberto */
                backdrop-filter: none !important;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 48px;
                min-height: 48px;
                margin-right: -10px;
            }

            input, select, textarea {
                font-size: 16px !important; /* UX-BugFix: Evita o auto-zoom não solicitado no Safari iOS */
            }

            .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: #0c0c0c; /* UX Fix: Fundo restrito 100% opaco para o menu mobile aberto */
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                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: 340px;
                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 */
            }

            .dropdown-item.active {
                color: var(--bronze-light);
                background: rgba(184, 149, 106, 0.14);
                padding-left: 24px;
            }

            .hero {
                margin-top: 65px;
                padding: 4rem 1rem;
                min-height: 500px;
            }

            .hero-content h1 {
                font-size: 44px;
            }

            .entry-nav {
                padding: 1rem;
            }

            .entry-nav-list {
                gap: 0.45rem;
            }

            .entry-nav-list a {
                font-size: 12px;
                padding: 0.4rem 0.85rem;
            }

            .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: 0;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }

            .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.25rem; /* Otimizado para telas estreitas, poupa ~1cm de espaço de conteúdo */
            }

            .btn-primary, .btn-secondary {
                padding: 1rem 1.8rem;
                font-size: 14px; /* UX-BugFix: 11px fere a acessibilidade básica e HIG. Mínimo razoável é 14px. */
                letter-spacing: 0.5px;
                min-height: 44px; /* Área de toque padrão */
            }

            .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);
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .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);
        }

        .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;
        }

/* ==========================================================
   NOVO DESIGN TÁTICO / HUD MILITAR / ANIMAÇÕES
   ========================================================== */

/* 1. Efeito Scanline / Radar na Hero */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(180deg, transparent, rgba(184, 149, 106, 0.14), transparent);
    opacity: 0.28;
    animation: radarScan 10s 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);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.72);
    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);
    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 {
    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);
}

.radar-input:focus-visible {
    outline-offset: 2px;
}

.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:focus-visible {
    outline-offset: 2px;
}

.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);
}

#intelCardsGrid .intel-no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    padding: 3rem 0;
    width: 100%;
    margin: 0;
}

.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 8px 28px rgba(0, 0, 0, 0.45), 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 18px rgba(184, 149, 106, 0.1);
    transform: translateY(-3px);
}

.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);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

/* Badge de operação hoje — variante verde (aberto) */
.op-today-badge--open {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Roboto Mono', monospace;
    white-space: nowrap;
    animation: pulse-green 2s infinite;
}

/* Badge de operação hoje — variante vermelha (fechado) */
.op-today-badge--closed {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.35);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Roboto Mono', monospace;
    white-space: nowrap;
}

.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.75rem;
}

.intel-actions .btn-secondary,
.intel-actions .btn-primary {
    flex: 1;
    text-align: center;
    font-size: 13px;
}

/* 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;
    font-size: 11px;
    font-family: 'Roboto Mono', monospace;
    padding: 3px 8px;
    border-radius: 4px;
    vertical-align: middle;
    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 14px rgba(184, 149, 106, 0.12);
}

/* 7. Efeito Glitch Tático (Hover) */
        @keyframes glitch {
            0% { transform: translate(0); text-shadow: -1px 0 rgba(107, 44, 44, 0.85), 1px 0 rgba(184, 149, 106, 0.6); }
            25% { transform: translate(-1px, 1px); text-shadow: -1px 0 rgba(107, 44, 44, 0.85), 1px 0 rgba(184, 149, 106, 0.6); }
            50% { transform: translate(1px, -1px); text-shadow: 1px 0 rgba(107, 44, 44, 0.85), -1px 0 rgba(184, 149, 106, 0.6); }
            75% { transform: translate(-1px, -1px); text-shadow: -1px 0 rgba(107, 44, 44, 0.85), 1px 0 rgba(184, 149, 106, 0.6); }
            100% {
                transform: translate(0);
                text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75), 0 0 18px rgba(184, 149, 106, 0.12);
            }
        }

        .glitch-hover:hover {
            animation-name: glitch;
            animation-duration: 0.45s;
            animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation-iteration-count: 1;
            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 6px rgba(184, 149, 106, 0.28);
        }

        /* 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. Elementos HUD Decorativos */
        .hud-corner {
            position: absolute;
            width: 18px;
            height: 18px;
            border: 1px solid var(--bronze-dark);
            opacity: 0.35;
            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-bg .campos-section-first {
    padding-top: 120px;
}

.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;
    text-wrap: balance;
}

.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);
    text-wrap: balance;
}

.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 */
    overflow-wrap: anywhere;
}

/* 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-block {
    display: block;
    margin-bottom: 8px;
}

/* ==========================================================================
   AUDITORIA MOBILE UX/UI — BLOCO DE CORREÇÕES CONSOLIDADAS
   ========================================================================== */

/* Fix 1: section-subtitle 11px → inacessível (WCAG AA mín. ~13px) */
/* Fix 2: section-header padding-left cria hierarquia falsa em telas estreitas */
/* Fix 3: hero-content p — line-height 1.9 + monospace = leitura ruim em mobile */
/* Fix 4: hero-cta gap 2rem em flex-wrap causa botões muito dispersos */
/* Fix 5: half-hero padding 6rem vertical = espaço desperdiçado em mobile */
/* Fix 6: hud-box clip-path quebra layout em telas < 400px */
/* Fix 7: newsletter-section padding excessivo */
/* Fix 8: .section padding mínimo seguro */
/* Fix 9: intel-card padding interno engole conteúdo */
/* Fix 10: filter-btn hit area insuficiente (< 44px) */
/* Fix 11: campos page-title enorme em mobile */
/* Fix 12: legal-content callout padding lateral ultrapassa safe-area */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .section-header {
        padding-left: 0;
        margin-bottom: 2.5rem;
        align-items: flex-start;
    }

    .section-header::before {
        display: none;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 2rem;
        letter-spacing: 0.2px;
    }

    .hero-cta {
        gap: 0.875rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        flex: 0 1 320px;
        width: 100%;
        justify-content: center;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .half-hero {
        margin-top: 65px;
        padding: 3.5rem 1.2rem;
    }

    .half-hero h1 {
        font-size: 34px;
    }

    .hud-box {
        clip-path: none;
        border-radius: 12px;
        padding: 1.5rem;
    }

    .newsletter-section {
        padding: 3.5rem 1.2rem;
        overflow: visible;
    }

    .newsletter-container {
        max-width: 100%;
        width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }

    .newsletter-title {
        padding-inline: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .newsletter-hint {
        margin: 0 auto 1.25rem;
        padding-inline: 0;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Evita pílula horizontal a “comer” texto em tablets / mobile (cantos muito redondos + largura curta) */
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }

    .newsletter-input {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-ui);
        text-align: center;
        background: rgba(18, 18, 18, 0.85);
        margin-bottom: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        padding: 1rem 1.1rem;
        min-height: 48px;
    }

    .newsletter-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 1rem 1.5rem;
        min-height: 48px;
        border-radius: var(--radius-ui);
        border: none;
        border-left: none;
        box-shadow: 0 6px 20px rgba(184, 149, 106, 0.15);
    }

    .section {
        padding: 3.5rem 1.2rem;
    }

    .intel-card {
        padding: 1.4rem;
        border-radius: 16px;
    }

    .intel-card h3 {
        font-size: 20px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 44px;
    }

    .intel-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .intel-actions .btn-secondary,
    .intel-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .campos-hero .page-title,
    .page-title {
        font-size: 28px;
    }

    .legal-content p.callout {
        padding: 1rem;
        font-size: 15px;
    }
}

/* Fix 13: Tooltips são hover-only — inutilizáveis em touch, geram ruído visual */
/* Fix 14: scanline animation = gasto de CPU desnecessário em mobile */
/* Fix 15: card hover com transform causa travamento de scroll em touch */
@media (hover: none) and (pointer: coarse) {
    [data-tooltip]::after {
        display: none !important;
    }

    [data-tooltip] {
        border-bottom: none;
        cursor: auto;
    }

    .scanline {
        display: none;
    }

    .card:hover,
    .intel-card:hover,
    .feature-card:hover {
        transform: none;
    }
}

/* Fix 16: gaps e stacking corretos em < 480px */
@media (max-width: 480px) {
    .cards-grid,
    .feature-grid {
        gap: 1.2rem;
    }

    .half-hero {
        padding: 2.8rem 1rem;
    }

    .half-hero h1 {
        font-size: 28px;
    }

    .hud-filters {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .intel-actions .btn-secondary,
    .intel-actions .btn-primary {
        flex: unset;
        width: 100%;
    }
}

/* Footer — layout mobile (leitura, toque e hierarquia) */
@media (max-width: 768px) {
    /*
     * h4 usa ::before (3px) + gap (0.55rem); o texto do título não começa na borda.
     * Descrições e listas herdavam margem 0 e ficavam desalinhadas em relação ao título.
     * --footer-label-indent = início do texto do h4 (igual ao flex: barra + gap).
     */
    footer {
        --footer-label-indent: calc(3px + 0.55rem);
        padding: 2.75rem 1.25rem 1.75rem;
        padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }

    .footer-container {
        text-align: left;
        align-items: stretch;
        gap: 0;
        margin-bottom: 2rem;
    }

    .footer-brand {
        max-width: none !important;
        padding-bottom: 1.35rem;
        margin-bottom: 0.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand h3 {
        font-size: 16px;
        margin-bottom: 0.65rem;
    }

    .footer-brand p {
        max-width: none;
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        max-width: none;
        font-size: 11.5px;
        line-height: 1.6;
    }

    .footer-section {
        padding: 1.15rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0.35rem;
    }

    .footer-section h4 {
        justify-content: flex-start;
        margin-bottom: 0.4rem;
        font-size: 12px;
        letter-spacing: 0.12em;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-section .footer-section-desc {
        max-width: none !important;
        margin-bottom: 0.8rem;
        margin-left: 0;
        font-size: 12px;
        line-height: 1.5;
        padding-left: var(--footer-label-indent);
        text-align: left;
    }

    .footer-links {
        margin: 0;
        padding: 0 0 0 var(--footer-label-indent);
        list-style: none;
        box-sizing: border-box;
    }

    .footer-links li {
        margin-bottom: 0.2rem;
    }

    .footer-links a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0.2rem 0;
        box-sizing: border-box;
    }

    .footer-links--dense {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1rem;
        row-gap: 0.15rem;
    }

    .footer-links--dense li {
        margin-bottom: 0;
    }

    .footer-contact-list {
        width: 100%;
        padding-left: var(--footer-label-indent);
        box-sizing: border-box;
    }

    .footer-section--social .footer-social-icons {
        padding-left: var(--footer-label-indent);
        margin-left: 0;
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .footer-contact-link {
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
        padding: 0.85rem 1rem !important;
        min-height: 48px;
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.35;
        word-break: break-word;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
        border-radius: var(--radius-ui);
    }

    .footer-contact-link i {
        margin-top: 0.12em;
    }

    .footer-social-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .footer-bottom {
        text-align: center;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(184, 149, 106, 0.2);
    }

    .footer-copyright {
        font-size: 13px;
        line-height: 1.45;
        max-width: 22rem;
    }

    .footer-meta-nav {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
        font-size: 13px;
    }

    .footer-meta-dot {
        display: none;
    }

    .footer-tagline {
        font-size: 12px;
        max-width: 20rem;
        line-height: 1.45;
    }
}

@media (max-width: 380px) {
    .footer-links--dense {
        grid-template-columns: 1fr;
    }
}

/* Páginas mínimas (404, offline): sem header/footer/JS do site */
body.shell-page {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem max(2rem, env(safe-area-inset-bottom, 0px));
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    text-align: center;
    background-color: var(--primary-black);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.shell-page--offline {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.shell-page__inner {
    max-width: 28rem;
    width: 100%;
}

.shell-page__code {
    font-size: clamp(3rem, 14vw, 4.5rem);
    font-weight: 700;
    color: var(--bronze-primary);
    line-height: 1;
    margin: 0 0 0.65rem;
    letter-spacing: 0.08em;
}

.shell-page h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bronze-light);
    margin: 0 0 0.65rem;
    letter-spacing: 0.03em;
}

.shell-page .shell-page__lead {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 1.35rem;
}

.shell-page__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 0.25rem;
}

.shell-page__nav .btn-primary,
.shell-page__nav .btn-secondary {
    padding: 11px 18px;
    font-size: 12px;
}

.shell-page__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.35rem;
}

.shell-page__icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

body.shell-page--error {
    font-family: 'Roboto', system-ui, sans-serif;
}

body.shell-page--error .shell-page__code,
body.shell-page--error h1 {
    font-family: 'Roboto Condensed', system-ui, sans-serif;
}
