        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            scroll-behavior: smooth;
        }
        :root {
            --fenix-dark: #001D30;
            --fenix-accent: #b91c1c;
        }
        .bg-fenix-dark {
            background-color: var(--fenix-dark);
        }
        .text-fenix-dark {
            color: var(--fenix-dark);
        }
        .border-fenix {
            border-color: var(--fenix-dark) !important;
        }
        .btn-outline-fenix {
            border: 2px solid var(--fenix-dark);
            color: var(--fenix-dark);
            transition: all 0.2s ease;
        }
        .btn-outline-fenix:hover {
            background-color: var(--fenix-dark);
            color: white;
        }
        .btn-fenix {
            background-color: var(--fenix-dark);
            color: white;
        }
        .btn-fenix:hover {
            background-color: #002b44;
            color: white;
        }
        .hero-capacitacion {
            background: linear-gradient(105deg, #f8f9fc 0%, #ffffff 100%);
            border-bottom: 1px solid rgba(0,29,48,0.1);
        }
        .card-policy {
            border-left: 5px solid #b91c1c;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card-policy:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        }
        .img-placeholder-demo {
            background-color: #eef2f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 0.85rem;
            text-align: center;
            border-radius: 1rem;
            min-height: 180px;
        }
        .img-placeholder-demo i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            opacity: 0.6;
        }
        .badge-date {
            background-color: #001D30;
            color: white;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        footer a {
            transition: color 0.2s;
        }
        footer a:hover {
            color: #b91c1c !important;
        }
        .list-check-red li {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
        .list-check-red li i {
            color: #b91c1c;
            font-size: 1.2rem;
            margin-top: 0.1rem;
        }
        .image-spot {
            background: #f4f7fa;
            border-radius: 1.2rem;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .image-spot img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .image-spot:hover img {
            transform: scale(1.02);
        }
        hr.divider-light {
            opacity: 0.5;
            background-color: #dee2e6;
        }
        @media (max-width: 768px) {
            .hero-capacitacion h1 {
                font-size: 1.8rem;
            }
        }