/* Source: page/personaladm.php */
/* =========================
        BASE GENERAL
        ========================= */
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(180deg, #f4f6f9, #eef2f7);
            margin: 0;
        }

        /* CONTENEDOR */
        .container {
            max-width: 1200px;
            margin: auto;
        }

        /* =========================
        HERO (NO TOCAR - SOLO RESPETO 😄)
        ========================= */
        .hero-section {
            background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
            color: #fff;
            padding: 70px 0 45px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.2rem;
            font-weight: 500;
        }

        .hero-section p {
            font-size: 1.3rem;
            opacity: .95;
        }

        /* =========================
        SECCIONES
        ========================= */
        .section {
            padding: 90px 0;
        }

        .section-light {
            background: #fff;
        }

        .section-gray {
            background: #f4f6f9;
        }

        /* =========================
        TITULOS
        ========================= */
        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: #0a4f6d;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: #6c757d;
            text-align: center;
            margin-bottom: 40px;
        }

        .line {
            width: 70px;
            height: 3px;
            background: #00a75d;
            margin: 15px auto 30px;
            border-radius: 5px;
        }

        /* =========================
        GRID DIRECTIVOS (MEJORADO)
        ========================= */
        .directivos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        /* =========================
        TARJETAS DIRECTIVOS
        ========================= */
        .directivo-card {
            background: #fff;
            border-radius: 20px;
            padding: 22px;
            display: flex;
            gap: 18px;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,.08);
            width: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .directivo-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 60px rgba(0,0,0,.15);
        }

        /* FOTO */
        .directivo-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #00a75d;
        }

        /* INFO */
        .directivo-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .directivo-cargo {
            color: #00a75d;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .directivo-agencia {
            font-size: .85rem;
            color: #999;
        }

        /* =========================
        GERENTE (DESTACADO)
        ========================= */
        .gerente-card {
            background: linear-gradient(135deg, #ffffff, #f8fbff);
            border-radius: 25px;
            padding: 50px;
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            align-items: center;
            box-shadow: 0 20px 70px rgba(0,0,0,.12);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .gerente-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 90px rgba(0,0,0,.18);
        }

        /* DECORACION */
        .gerente-card::before {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            background: #00a75d;
            opacity: 0.08;
            border-radius: 50%;
            top: -60px;
            right: -60px;
        }

        /* FOTO GERENTE */
        .gerente-avatar {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #00a75d;
        }

        /* TEXTO GERENTE */
        .gerente-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
        }

        .gerente-cargo {
            color: #00a75d;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* =========================
        RESPONSIVE
        ========================= */
        @media (max-width: 768px) {

            .directivo-card,
            .gerente-card {
                flex-direction: column;
                text-align: center;
            }

            .gerente-avatar {
                width: 140px;
                height: 140px;
            }

            .hero-section h1 {
                font-size: 2.2rem;
            }
        }
