#map{background-image: url('../img/city_map.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size:contain;
height: 70vh;}

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .map-container{
            display: flex;
            justify-content: center;
            align-items: center;
        }

        header {
            width: 100%;
            top: 0;
            z-index: 50;
            background: linear-gradient(to right, #0f172a, #111827, #000000);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            backdrop-filter: blur(4px);
            border-bottom: 4px solid #dc2626;
            margin-bottom: 20px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-wrapper {
            border-radius: 9999px;
            background: linear-gradient(to bottom right, #dc2626, #f97316);
            padding: 0.375rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.5);
            transition: all 0.3s ease;
        }

        .logo-wrapper:hover {
            box-shadow: 0 0 0 4px rgba(248, 113, 113, 1);
        }

        .logo-inner {
            border-radius: 9999px;
            background: white;
            padding: 0.5rem;
        }

        .logo-inner img {
            height: 96px;
            width: 96px;
            object-fit: contain;
            display: block;
        }

        h1 {
            margin-left: 1.25rem;
            font-size: 1.25rem;
            font-weight: 900;
            color: white;
            letter-spacing: 0.05em;
            filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
            text-transform: uppercase;
        }

        h1 .highlight {
            color: #ef4444;
            font-weight: 900;
        }

        /* Media queries para responsive */
        @media (min-width: 768px) {
            .header-content {
                justify-content: flex-start;
            }

            h1 {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                font-size: 1.875rem;
                white-space: nowrap;
            }

            .logo-inner img {
                height: 104px;
                width: 104px;
            }
        }

        @media (min-width: 1024px) {
            h1 {
                font-size: 2.25rem;
            }
        }

        /* ASIDE CON FRASES - SIN ROMPER TU DISEÑO ACTUAL */
.phrases-aside {
    position: fixed;
    right: 20px;
    top: 60%;
    transform: translateY(-50%);
    width: 280px;
    max-height: 80vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    border-radius: 16px;
    border: 3px solid #dc2626;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
}

.phrases-aside h3 {
    text-align: center;
    margin-bottom: 18px;
    color: #fca5a5;
    font-size: 1.4rem;
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.phrases-aside ul {
    list-style: none;
}

.phrases-aside li {
    padding: 10px 14px;
    margin: 6px 0;
    background: rgba(220, 38, 38, 0.2);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.phrases-aside li:hover {
    background: rgba(239, 68, 68, 0.4);
    transform: translateX(6px);
}

/* En móviles: se oculta o se pone abajo */
@media (max-width: 840px) {
    .phrases-aside {
        position: static;
        transform: none;
        width: 90%;
        max-width: 400px;
        margin: 20px auto;
        position: relative;
        top: 0;
    }
}