 /* Seção do Mapa */
        .map-section {
            margin: 0 auto;
            position: relative;
            margin-bottom: -20%;
        }

        .section-header {
            text-align: center;
        }

        /* Container Responsivo */
        .map-container {
            position: relative;
            /*overflow: hidden;*/
            padding-bottom: 56.25%; /* Proporção 16:9 */
            margin-top: -23px;
        }

        .world-map {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Pontos Interativos */
        .map-point {
            position: absolute;
            width: 16px;
            height: 16px;
            background: #6eb1c9;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .map-point:hover {
            transform: translate(-50%, -50%) scale(1.5);
            z-index: 3;
        }

        /* Tooltip */
        .location-tooltip {
           /* position: absolute;*/
            position: relative;
            z-index: 9999;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 230px;
            background: #162c36;
            color: #fff;
            padding: 10px;
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            pointer-events: none;
            font-size: 11px;
        }
        .location-tooltip .country {
            color:#6eb1c9;   
        }
         .location-tooltip .country::before {
                content: '';
                display: inline-block;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background-color: #6eb1c9;
                margin-right: 8px;
                vertical-align: middle;
        }


            .location-tooltip h3 {
                font-size: 1em !important;
                 
            }
            .location-tooltip  p,  .location-tooltip span, .location-tooltip .fas {
              font-size: 11px;
            }
            .location-tooltip  p.city {
                font-size: 10px;
            }


            .location-tooltip svg
            {border: 1px solid #fff;
            border-radius: 50%;
            width: 15px;
            height: 15px;
            transform: rotate(-30deg);
            }

        .map-point:hover .location-tooltip {
            opacity: 0.9;
            visibility: visible;
        }

        .tooltip-arrow {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid var(--hover-color);
        }

        /* Conteúdo do Tooltip */
        .contact-info {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .directions-link {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--accent-color);
            text-decoration: none;
            margin-top: 10px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2rem;
            }

            .map-point {
                width: 12px;
                height: 12px;
            }

            .location-tooltip {
                width: 200px;
                padding: 15px;
                bottom: 20px;
                
            }
        }

        @media (max-width: 480px) {
            .map-point {
                width: 10px;
                height: 10px;
            }

            .location-tooltip {
                width: 190px;
                font-size: 1em;
                padding: 15px;
            }

            .contact-item {
                flex-wrap: wrap;
            }
        }