/*<style> */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: linear-gradient(135deg, #1e5799 0%, #2980b9 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 50px;
            height: 50px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #1e5799;
        }

        .logo-text {
            font-size: 16px;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .date-display {
            font-size: 14px;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 4px;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropbtn {
            background-color: #e74c3c;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .dropbtn:hover {
            background-color: #c0392b;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background-color: white;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
        }

        .dropdown-content a {
            color: #2279a1;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s;
            font-weight: 600;  /* Texto en negrita */
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .dropdown.active .dropdown-content {
            display: block;
        }

        .main-title {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #1e5799 0%, #2980b9 50%, #f6b93b 100%);
            margin: 20px 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            color: white;
            position: relative;
        }

        .main-title h1 {
            color: white; /* ← Cambia a blanco si usas fondo oscuro */
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
                }

        .info-section {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            gap: 20px;
        }

        .info-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            flex: 1;
        }

        .info-card h3 {
            color: #1e5799;
            margin-bottom: 10px;
            font-size: 1rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }

        .info-card p {
            font-weight: 500;
            color: #333;
            font-size: 1.1rem;
        }

        .update-info {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin-bottom: 30px;
        }

        .update-info h3 {
            color: #1e5799;
            margin-bottom: 10px;
        }

        .update-info p {
            font-weight: 500;
            color: #333;
            font-size: 1.1rem;
        }

        footer {
            background-color: #1e5799;
            color: white;
            text-align: center;
            padding: 20px 0;
            border-radius: 8px;
        }

        /* Estilos para la sección de imagen con botones superpuestos */
        .interactive-image-section {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .background-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .button-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .district-button {
            position: absolute;
            background: linear-gradient(135deg, #1e5799, #2980b9);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            z-index: 10;
            min-width: 245px;
            text-align: center;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .district-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s;
        }

        .district-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #2980b9, #1e5799);
        }

        .district-button:hover::before {
            left: 100%;
        }

        .district-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        /* Posicionamiento EXACTO según la imagen de referencia */
        .button-callao { 
            top: 3%; 
            left: 75%; 
            background: linear-gradient(135deg, #1e5799, #e74c3c);
        }
        
        .button-bellavista { 
            top: 17%; 
            left: 75%; 
            background: linear-gradient(135deg, #1e5799, #e67e22);
        }
        
        .button-carmen { 
            top: 32%; 
            left: 75%; 
            background: linear-gradient(135deg, #1e5799, #f1c40f);
        }
        
        .button-perla { 
            top: 46%; 
            left: 75%; 
            background: linear-gradient(135deg, #1e5799, #2ecc71);
        }
        
        .button-punta { 
            top: 60%; 
            left: 75%; 
            background: linear-gradient(135deg, #1e5799, #9b59b6);
        }
        
        .button-ventanilla { 
            top: 75%; 
            left: 75%; 
            background: linear-gradient(135deg, #1e5799, #34495e);
        }
        
        .button-mi-peru { 
            top: 89%; 
            left: 75%; 
            background: linear-gradient(135deg, #1e5799, #16a085);
        }

        /* Efecto de resaltado al pasar sobre la imagen */
        .interactive-image-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                                      rgba(30, 87, 153, 0.1) 0%, 
                                      transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 12px;
        }

        .interactive-image-section:hover::after {
            opacity: 1;
        }

        /* Estilos personalizados para el modal */
        .modal-custom .modal-content {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: none;
        }

        .modal-custom .modal-header {
            background: linear-gradient(135deg, #1e5799, #2980b9);
            color: white;
            border-radius: 12px 12px 0 0;
            border-bottom: none;
        }

        .modal-custom .modal-header .close {
            color: white;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .modal-custom .modal-header .close:hover {
            opacity: 1;
        }

        .modal-custom .listado {
            padding: 15px 0;
        }

        .modal-custom .listado li {
            margin-bottom: 10px;
        }

        /*color y estectos general para botones de modal */
        .modal-custom .btn-primary {
            background: linear-gradient(135deg, #1e5799, #2980b9);
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
        }

        .modal-custom .btn-primary:hover {
            background: linear-gradient(135deg, #2980b9, #1e5799);
            transform: translateX(5px);
        }


        /* Colores específicos para cada distrito en los modales */
        .btn-callao {
            background: linear-gradient(135deg, #1e5799, #e74c3c) !important;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: white !important;
        }

        .btn-bellavista {
            background: linear-gradient(135deg, #1e5799, #e67e22) !important;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: white !important;
        }

        .btn-carmen {
            background: linear-gradient(135deg, #1e5799, #f1c40f) !important;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: white !important;
        }

        .btn-perla {
            background: linear-gradient(135deg, #1e5799, #2ecc71) !important;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: white !important;
        }

        .btn-punta {
            background: linear-gradient(135deg, #1e5799, #9b59b6) !important;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: white !important;
        }

        .btn-ventanilla {
            background: linear-gradient(135deg, #1e5799, #34495e) !important;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: white !important;
        }

        .btn-mi-peru {
            background: linear-gradient(135deg, #1e5799, #16a085) !important;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
            color: white !important;
        }

        /* Efectos hover para cada clase */
        .btn-callao:hover {
            background: linear-gradient(135deg, #e74c3c, #1e5799) !important;
            transform: translateX(5px);
        }

        .btn-bellavista:hover {
            background: linear-gradient(135deg, #e67e22, #1e5799) !important;
            transform: translateX(5px);
        }

        .btn-carmen:hover {
            background: linear-gradient(135deg, #f1c40f, #1e5799) !important;
            transform: translateX(5px);
        }

        .btn-perla:hover {
            background: linear-gradient(135deg, #2ecc71, #1e5799) !important;
            transform: translateX(5px);
        }

        .btn-punta:hover {
            background: linear-gradient(135deg, #9b59b6, #1e5799) !important;
            transform: translateX(5px);
        }

        .btn-ventanilla:hover {
            background: linear-gradient(135deg, #34495e, #1e5799) !important;
            transform: translateX(5px);
        }

        .btn-mi-peru:hover {
            background: linear-gradient(135deg, #16a085, #1e5799) !important;
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .district-button {
                min-width: 160px;
                padding: 10px 18px;
                font-size: 0.9rem;
            }
            
            .button-callao, .button-bellavista, .button-carmen,
            .button-perla, .button-punta, .button-ventanilla,
            .button-mi-peru {
                left: 60%;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .nav-right {
                flex-direction: column;
                gap: 10px;
            }

            .info-section {
                flex-direction: column;
            }

            .district-button {
                min-width: 140px;
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            
            .button-callao, .button-bellavista, .button-carmen,
            .button-perla, .button-punta, .button-ventanilla,
            .button-mi-peru {
                left: 55%;
            }
        }

        @media (max-width: 480px) {
            .interactive-image-section {
                margin: 20px auto;
            }
            
            .district-button {
                position: relative;
                display: block;
                width: 90%;
                margin: 10px auto;
                min-width: auto;
                left: auto !important;
                top: auto !important;
            }
            
            .button-overlay {
                position: relative;
                display: flex;
                flex-direction: column;
                padding: 20px 0;
                background: rgba(255, 255, 255, 0.9);
                border-radius: 0 0 12px 12px;
            }
        }
    /*</style> */