/* Page-specific CSS: index.html */
.hero {
            height: 90vh;
            min-height: 600px;
            /* Imagen principal de la home */
            background-image: url("../../img/board/Cinco%20Dominios%20Defensa.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            margin-top: 0;
            /* Compensar top-bar + header siempre visibles (ya no es transparente) */
            padding-top: calc(var(--top-bar-height, 40px) + 140px);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(8, 8, 10, 0.72) 0%, rgba(8, 8, 10, 0.46) 48%, rgba(8, 8, 10, 0.2) 100%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: #000;
            opacity: 0.12;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-brand-title {
            color: #ffffff !important;
            font-size: clamp(3.5rem, 12vw, 6.5rem);
            margin-bottom: 1rem;
            letter-spacing: 0.08em;
            text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
            font-weight: 900;
            line-height: 1.05;
        }

        .hero-tagline {
            font-size: clamp(1rem, 2.5vw, 1.35rem);
            color: rgba(248, 250, 252, 0.92);
            max-width: 640px;
            margin: 0 auto 2.25rem;
            line-height: 1.55;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0.02em;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .btn-hero-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.85);
            color: #fff !important;
            background: transparent;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            border-radius: 2px;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }

        .btn-hero-ghost:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
        }

        .btn-hero-solid {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 2rem;
            border: none;
            color: #0f172a !important;
            background: linear-gradient(135deg, #fbbf24, #d97706);
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border-radius: 2px;
            box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-hero-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(217, 119, 6, 0.45);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-md);
        }

        .page-landing .objectives-list,
        .page-landing .faq-list {
            width: 100%;
            max-width: none;
        }

        .pillar-card {
            background: var(--navy-800);
            padding: var(--spacing-md);
            border-bottom: 3px solid var(--gold-500);
            transition: var(--transition-smooth);
            cursor: default;
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 15px rgba(217, 119, 6, 0.2);
            background: #233045;
        }

        .pillar-icon {
            font-size: 2.5rem;
            color: var(--gold-500);
            margin-bottom: var(--spacing-sm);
        }

        .pillar-card h3 {
            margin-bottom: var(--spacing-sm);
            font-size: 1.25rem;
        }

        .pillar-card p {
            color: var(--light-400);
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: calc(var(--top-bar-height, 40px) + 72px);
                min-height: 520px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-hero-solid,
            .btn-hero-ghost {
                width: 100%;
                max-width: 280px;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
            }
        }
