/* Estilos para os dias do calendário */
        .day {
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .day.available {
            background-color: #f8f9fa;
        }

        .day.unavailable {
            background-color: #ffebee;
            color: #d32f2f;
            position: relative;
        }

        .day.unavailable::after {
            content: '×';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 18px;
            color: #d32f2f;
        }

        .day.selected {
            background-color: #e3f2fd;
            border: 2px solid #2196f3 !important;
            font-weight: bold;
        }

        /* Estilos para tipo de mídia cards */
        .midia-type-card {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .midia-type-card:hover {
            border-color: #bbdefb;
            background-color: #f8f9fa;
        }

        .midia-type-card.selected {
            border-color: #2196f3;
            background-color: #e3f2fd;
        }

        /* CSS removido - não precisamos mais de drag & drop */

        /* Animação de progresso */
        @keyframes pulse-progress {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        .progress-bar {
            animation: pulse-progress 1.5s infinite;
        }

        /* Estilização melhorada para programas confirmados */
        .day.confirmed {
            background-color: #d4edda !important;
            border: 2px solid #28a745 !important;
        }

        /* Botões no rodapé da PI */
        .pi-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
        }

        /* Estilos para feedback visual */
        #radioValorUnitario {
            transition: color 0.3s ease;
        }

        #radioValorUnitario.updated {
            color: #28a745 !important;
            animation: pulse 0.5s;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .floating-total-bar {
            display: flex;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #fff;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            z-index: 1000;
        }


        .alert-success {
            background-color: #d4edda;
            border-color: #c3e6cb;
            color: #155724;
            border-radius: 8px;
        }

        .table-hover tbody tr:hover {
            background-color: #f8f9fa;
        }

        .select-program {
            transition: background-color 0.2s;
        }

        .select-program:hover {
            background-color: #007bff;
            color: white;
        }

        .table th,
        .table td {
            vertical-align: middle;
        }


        .alert-primary {
            background-color: #e7f1ff;
            border-color: #b8daff;
            color: #004085;
            border-radius: 8px;
            padding: 15px;
        }

        .badge.bg-success {
            background-color: #28a745 !important;
            color: white;
        }

        .badge.bg-info {
            background-color: #17a2b8 !important;
            color: white;
        }

        .calendario-grid-container .table {
            font-size: 0.9rem;
        }

        .insercoes-input {
            width: 80px;
            display: inline-block;
        }

        .table-sm th,
        .table-sm td {
            padding: 0.5rem;
        }

        /* Estilo para os labels dos usuários alinhados e visíveis */
        .user-label-anunciante {
            position: absolute;
            top: 60px;
            left: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 12px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            font-size: 0.75rem;
            color: white;
            text-align: center;
            font-weight: 400;
            min-width: 80px;
        }

        .user-label-diretor {
            position: absolute;
            top: 60px;
            right: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 12px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            font-size: 0.75rem;
            color: white;
            text-align: center;
            font-weight: 400;
            min-width: 80px;
        }

        /* Ajustar o CSS dos containers principais para layout horizontal */
        .user-info {
            position: absolute;
            top: 15px;
            left: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            max-width: calc(100vw - 100px);
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-align: center;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .user-info a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 0;
            white-space: nowrap;
        }

        .user-info .mx-2 {
            display: inline;
            color: white;
        }

        .user-diretor {
            position: absolute;
            top: 15px;
            right: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            max-width: calc(100vw - 100px);
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-align: center;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .user-diretor a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 0;
            white-space: nowrap;
        }

        .user-diretor .mx-2 {
            display: inline;
            color: white;
        }

        /* Responsividade para telas grandes (1400px+) */
        @media (min-width: 1400px) {
            .user-info {
                left: 422px;
            }
            .user-diretor {
                right: 446px;
            }
            .user-label-anunciante {
                left: 420px;
                font-size: 0.85rem;
            }
            .user-label-diretor {
                right: 392px;
                font-size: 0.85rem;
            }
        }

        /* Telas médias-grandes (1200px - 1399px) */
        @media (max-width: 1399px) and (min-width: 1200px) {
            .user-info {
                left: 80px;
            }
            .user-diretor {
                right: 80px;
            }
            .user-label-anunciante {
                left: 80px;
            }
            .user-label-diretor {
                right: 80px;
            }
        }

        /* Telas médias (992px - 1199px) */
        @media (max-width: 1199px) and (min-width: 992px) {
            .user-info {
                left: 60px;
            }
            .user-diretor {
                right: 60px;
            }
            .user-label-anunciante {
                left: 60px;
            }
            .user-label-diretor {
                right: 60px;
            }
        }

        /* Tablets (768px - 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .user-info {
                left: 40px;
                max-width: calc(50vw - 60px);
            }
            .user-diretor {
                right: 40px;
                max-width: calc(50vw - 60px);
            }
            .user-label-anunciante {
                left: 40px;
            }
            .user-label-diretor {
                right: 40px;
            }
        }

        /* Mobile Landscape e Tablets pequenos (576px - 767px) */
        @media (max-width: 767px) and (min-width: 576px) {
            .parallax-section {
                padding-top: 120px !important;
            }
            
            .user-info {
                position: absolute;
                top: 15px;
                left: 20px;
                max-width: calc(50vw - 40px);
                font-size: 0.85rem;
                padding: 6px 12px;
            }
            
            .user-diretor {
                position: absolute;
                top: 15px;
                right: 20px;
                max-width: calc(50vw - 40px);
                font-size: 0.85rem;
                padding: 6px 12px;
            }
            
            .user-label-anunciante {
                position: absolute;
                top: 55px;
                left: 20px;
                font-size: 0.7rem;
                padding: 3px 8px;
            }
            
            .user-label-diretor {
                position: absolute;
                top: 55px;
                right: 20px;
                font-size: 0.7rem;
                padding: 3px 8px;
            }
        }

        /* Mobile Portrait (até 575px) */
        @media (max-width: 575px) {
            .parallax-section {
                padding-top: 140px !important;
            }
            
            .user-info,
            .user-diretor {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                margin: 8px auto 4px auto !important;
                display: block !important;
                text-align: center !important;
                max-width: 90% !important;
                width: fit-content !important;
                font-size: 0.8rem !important;
                padding: 6px 12px !important;
                white-space: normal !important;
            }
            
            .user-label-anunciante,
            .user-label-diretor {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                margin: 4px auto 8px auto !important;
                display: block !important;
                text-align: center !important;
                max-width: 90% !important;
                width: fit-content !important;
                font-size: 0.7rem !important;
                padding: 3px 8px !important;
            }
            
            .user-info a,
            .user-diretor a {
                display: inline-flex !important;
                align-items: center !important;
                gap: 4px !important;
                margin: 2px 0 !important;
                font-size: 0.8rem !important;
            }
            
            .user-info .mx-2,
            .user-diretor .mx-2 {
                margin-left: 0.25rem !important;
                margin-right: 0.25rem !important;
            }
            
            /* Ajustar o conteúdo principal para mobile */
            .parallax-content {
                margin-top: 8px !important;
            }
            
            .parallax-title {
                font-size: 1.8rem !important;
            }
            
            .display-5 {
                font-size: 1.4rem !important;
            }
            
            .display-4 {
                font-size: 1.6rem !important;
            }
        }

        /* Mobile muito pequeno (até 360px) */
        @media (max-width: 360px) {
            .parallax-section {
                padding-top: 160px !important;
            }
            
            .user-info,
            .user-diretor {
                font-size: 0.75rem !important;
                padding: 5px 10px !important;
                margin: 6px auto 3px auto !important;
            }
            
            .user-label-anunciante,
            .user-label-diretor {
                font-size: 0.65rem !important;
                padding: 2px 6px !important;
                margin: 3px auto 6px auto !important;
            }
            
            .user-info a,
            .user-diretor a {
                font-size: 0.75rem !important;
                gap: 3px !important;
            }
            
            .parallax-title {
                font-size: 1.5rem !important;
            }
            
            .display-5 {
                font-size: 1.2rem !important;
            }
            
            .display-4 {
                font-size: 1.4rem !important;
            }
        }

        /* Estilos gerais para links */


        /* Ajustes para orientação landscape em mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .parallax-section {
                padding-top: 80px !important;
            }
            
            .user-info,
            .user-diretor {
                position: absolute !important;
                top: 10px !important;
                font-size: 0.75rem !important;
                padding: 4px 8px !important;
            }
            
            .user-info {
                left: 20px !important;
            }
            
            .user-diretor {
                right: 20px !important;
            }
            
            .user-label-anunciante {
                position: absolute !important;
                top: 40px !important;
                left: 20px !important;
                font-size: 0.65rem !important;
                padding: 2px 6px !important;
            }
            
            .user-label-diretor {
                position: absolute !important;
                top: 40px !important;
                right: 20px !important;
                font-size: 0.65rem !important;
                padding: 2px 6px !important;
            }
        }

        .user-info a,
        .user-diretor a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .user-info a:hover,
        .user-diretor a:hover {
            color: #ffc107;
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
        }

        .user-info i,
        .user-diretor i {
            margin-right: 5px;
        }


        .alert-primary {
            background-color: #e7f1ff;
            border-color: #b8daff;
            color: #004085;
            border-radius: 8px;
            padding: 15px;
            transition: background-color 0.3s;
        }

        .alert-primary.active {
            background-color: #d4edda;
            border-color: #c3e6cb;
        }

        .badge.bg-success {
            background-color: #28a745 !important;
            color: white;
        }

        .badge.bg-info {
            background-color: #17a2b8 !important;
            color: white;
        }

        .calendario-grid-container .table {
            font-size: 0.9rem;
        }

        .insercoes-input {
            width: 80px;
            display: inline-block;
        }

        .calendario-grid-container .card-body {
            position: relative;
        }

        #confirmaPI {
            margin-top: 1rem;
            float: right;
        }

        .alert-info {
            font-size: 0.9rem;
            padding: 10px;
        }

        .bg-success.bg-opacity-25 {
            background-color: rgba(40, 167, 69, 0.25) !important;
        }

        .bg-danger.bg-opacity-25 {
            background-color: rgba(220, 53, 69, 0.25) !important;
        }

        .insercoes-input:disabled {
            background-color: #f8d7da !important;
            /* Cor de fundo vermelho claro para inputs desabilitados */
            cursor: not-allowed;
        }

        .table th,
        .table td {
            text-align: center;
            vertical-align: middle;
        }

        /* Adicionar destaque ao botão de adicionar ao carrinho */
        #btnAddCart {
            background-color: #007bff;
            color: white;
            font-weight: bold;
            padding: 15px 25px;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        #btnAddCart:hover {
            background-color: #0069d9;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        }

        /* Estilo adicional para o botão quando clicado */
        #btnAddCart:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Estilos para os resultados da busca rápida */
        #searchResults {
            max-height: 500px;
            overflow-y: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border: 1px solid #e9ecef;
        }

        #searchResults .list-group-item {
            border: none;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.2s ease;
            padding: 0.75rem;
        }

        #searchResults .list-group-item:hover {
            background-color: #f8f9fa;
            transform: translateX(5px);
            border-left: 3px solid #007bff;
        }

        #searchResults .list-group-item:last-child {
            border-bottom: none;
        }

        #searchResults .list-group-item.bg-light {
            background-color: #f8f9fa !important;
            font-weight: 500;
        }

        #searchResults mark {
            background-color: #fff3cd;
            color: #856404;
            padding: 0.1rem 0.2rem;
            border-radius: 3px;
            font-weight: bold;
        }

        .badge.bg-info {
            font-size: 0.7rem;
            padding: 0.25rem 0.5rem;
        }

        .badge.bg-success {
            font-size: 0.7rem;
            padding: 0.25rem 0.5rem;
        }

        .badge.bg-warning {
            font-size: 0.7rem;
            padding: 0.25rem 0.5rem;
        }

        /* Melhorar a aparência do campo de busca */
        #quickSearch {
            border-radius: 8px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }

        #quickSearch:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        /* CSS da seção de tipos de mídia removido - agora oculta diretamente no HTML */

        /* Estilos para o Plano de Inserção (PI) */
        .pi-table {
            border-collapse: collapse;
            white-space: nowrap;
        }

        .pi-table th,
        .pi-table td {
            border: 1px solid #dee2e6;
            vertical-align: middle;
        }

        .pi-input {
            margin: 0;
            padding: 0 !important;
            text-align: center;
            font-weight: bold;
            font-size: 12px;
            border: none;
            background: transparent;
            width: 100%;
            height: 100%;
            min-width: 25px;
        }

        .pi-input:focus {
            outline: none;
            background-color: #e8f4ff;
        }

        .pi-input:hover {
            background-color: #f0f0f0;
        }

        .pi-header {
            margin-bottom: 15px;
        }

        /* Estilização melhorada para programas confirmados */

        /* Estilos aprimorados para busca rápida */
        .cursor-pointer {
            cursor: pointer;
        }

        .icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        /* Toast notifications */
        .toast {
            min-width: 300px;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }

        .toast-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Loading spinner personalizado */
        .spinner-border-sm {
            width: 1rem;
            height: 1rem;
        }

        /* Melhorias para cards de empresa selecionada */
        .empresa-card.border-success {
            border-width: 2px !important;
        }

        .empresa-card.shadow-sm {
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
        }

        /* Estilos para badges de relevância */
        .badge.small {
            font-size: 0.6rem;
            padding: 0.2rem 0.4rem;
        }

        /* Animação suave para elementos que aparecem */
        .alert {
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Melhorias na responsividade dos resultados de busca */
        @media (max-width: 768px) {
            #searchResults {
                width: calc(100% - 1rem) !important;
                left: 0.5rem !important;
            }
            
            .toast {
                min-width: 250px;
            }
        }

        /* Estilo para elementos truncados */
        .text-truncate-multiline {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Estilos para sistemas de busca duplos */
        .quick-search-section {
            position: relative;
            animation: pulseSearch 2s infinite;
        }

        .location-select {
            position: relative;
            animation: pulseLocation 2s infinite 1s;
        }

        @keyframes pulseSearch {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.2);
            }
            50% { 
                box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
            }
        }

        @keyframes pulseLocation {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.2);
            }
            50% { 
                box-shadow: 0 0 0 10px rgba(23, 162, 184, 0);
            }
        }

        /* Badge animado para indicar atividade */
        .badge-animate {
            animation: bounce 1s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }

        /* Indicador visual de sistemas ativos */
        .sistemas-ativos {
            background: linear-gradient(45deg, #007bff, #17a2b8, #007bff);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Forçar visibilidade dos filtros */
        .location-select {
            display: block !important;
            visibility: visible !important;
        }

        .location-select .card-body {
            display: block !important;
            visibility: visible !important;
            height: auto !important;
            overflow: visible !important;
        }

        #locationFilters {
            display: block !important;
            visibility: visible !important;
            height: auto !important;
        }

        #continentSelect,
        #countrySelect,
        #stateSelect,
        #citySelect {
            display: block !important;
            visibility: visible !important;
            height: auto !important;
            opacity: 1 !important;
        }

        /* Anular qualquer CSS que possa ocultar */
        .location-select .collapse {
            display: block !important;
        }

        .location-select .show {
            display: block !important;
        }

        /* ========== ANIMAÇÃO DE ROTAÇÃO 360° PARA O GLOBO ========== */
        .rotating-globe {
            animation: rotateGlobe 20s linear infinite;
            transform-origin: center center;
            transition: transform 0.3s ease;
        }

        .rotating-globe:hover {
            animation-duration: 5s; /* Acelera quando hover */
            transform: scale(1.1); /* Aumenta ligeiramente no hover */
        }

        @keyframes rotateGlobe {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Efeito adicional de brilho no globo */
        .rotating-globe {
            filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.3));
        }

        .rotating-globe:hover {
            filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.6));
        }
        /* ========== FIM DA ANIMAÇÃO DO GLOBO ========== */

        /* ========== CLASSES PARA LINKS LATERAIS RESPONSIVOS ========== */
        .parallax-link-left {
            position: absolute;
            top: 225px;
            left: -200px;
            z-index: 10;
        }

        .parallax-link-right {
            position: absolute;
            top: 225px;
            right: -200px;
            z-index: 10;
        }

        .parallax-link-text {
            line-height: 1;
            font-size: 24px; /* display-6 equivalente */
            color: white !important;
        }

        /* Garantir que o texto permaneça branco em todos os estados */
        .parallax-link-left a,
        .parallax-link-right a,
        .parallax-link-left a:focus,
        .parallax-link-right a:focus,
        .parallax-link-left a:active,
        .parallax-link-right a:active {
            color: white !important;
        }

        /* Estados de hover - texto escuro */
        .parallax-link-left a:hover,
        .parallax-link-right a:hover {
            color: #333 !important;
        }

        .parallax-link-left .parallax-link-text,
        .parallax-link-right .parallax-link-text {
            color: white !important;
        }

        /* Estados de hover para o texto - escuro */
        .parallax-link-left a:hover .parallax-link-text,
        .parallax-link-right a:hover .parallax-link-text {
            color: #333 !important;
        }

        /* Estados de focus e active para o texto - mantém branco */
        .parallax-link-left a:focus .parallax-link-text,
        .parallax-link-right a:focus .parallax-link-text,
        .parallax-link-left a:active .parallax-link-text,
        .parallax-link-right a:active .parallax-link-text {
            color: white !important;
        }

        /* Responsividade para telas grandes (1400px+) */
        @media (min-width: 1400px) {
            .parallax-link-left {
                left: -180px;
            }
            .parallax-link-right {
                right: -180px;
            }
        }

        /* Telas médias-grandes (1200px - 1399px) */
        @media (max-width: 1399px) {
            .parallax-link-left {
                left: -180px;
            }
            .parallax-link-right {
                right: -180px;
            }
            .parallax-link-text {
                font-size: 28px;
            }
        }

        /* Telas médias (992px - 1199px) */
        @media (max-width: 1199px) {
            .parallax-link-left {
                left: -145px;
            }
            .parallax-link-right {
                right: -145px;
            }
            .parallax-link-text {
                font-size: 2.5rem;
            }
        }

        /* Tablets (768px - 991px) */
        @media (max-width: 991px) {
            .parallax-link-left {
                left: -150px;
            }
            .parallax-link-right {
                right: -150px;
            }
            .parallax-link-text {
                font-size: 2rem;
            }
        }

        /* Telas pequenas e tablets em retrato (600px - 767px) */
        @media (max-width: 767px) {
            .parallax-link-left,
            .parallax-link-right {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                text-align: center;
                margin: 15px 0;
                width: 100%;
            }
            .parallax-link-text {
                font-size: 1.8rem;
                display: block;
            }
        }

        /* Resolução mínima 800x600 e similares */
        @media (max-width: 800px) and (max-height: 600px) {
            .parallax-section {
                min-height: 500px;
            }
            .parallax-link-left,
            .parallax-link-right {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                text-align: center;
                margin: 10px 0;
            }
            .parallax-link-text {
                font-size: 1.5rem;
            }
        }

        /* Mobile pequeno (480px - 599px) */
        @media (max-width: 599px) {
            .parallax-link-text {
                font-size: 1.4rem;
            }
        }

        /* Mobile muito pequeno (até 479px) */
        @media (max-width: 479px) {
            .parallax-link-text {
                font-size: 1.2rem;
            }
        }

        /* Ajuste específico para telas muito pequenas em altura */
        @media (max-height: 500px) {
            .parallax-link-left,
            .parallax-link-right {
                top: 150px;
            }
        }
        /* ========== FIM DAS CLASSES PARA LINKS LATERAIS ========== */

        /* Responsividade para os links laterais - apenas os textos */
        @media (max-width: 1200px) {
            .parallax-section .position-absolute {
                left: -200px !important;
            }
            .parallax-section .position-absolute[style*="right"] {
                right: -200px !important;
            }
            .parallax-section .position-absolute span {
                font-size: 1.8rem !important;
            }
        }

        @media (max-width: 992px) {
            .parallax-section .position-absolute {
                left: -150px !important;
            }
            .parallax-section .position-absolute[style*="right"] {
                right: -150px !important;
            }
            .parallax-section .position-absolute span {
                font-size: 1.5rem !important;
            }
        }

        @media (max-width: 768px) {
            .parallax-section .position-absolute {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                text-align: center !important;
                margin: 10px 0 !important;
            }
            .parallax-section .position-absolute span {
                font-size: 1.3rem !important;
                display: block !important;
            }
        }

        @media (max-width: 576px) {
            .parallax-section .position-absolute span {
                font-size: 1.1rem !important;
            }
        }

        @media (max-width: 480px) {
            .parallax-section .position-absolute span {
                font-size: 1rem !important;
            }
        }

        @media (max-width: 360px) {
            .parallax-section .position-absolute span {
                font-size: 0.9rem !important;
            }
        }
        



         /* Estilo para os labels dos usuários alinhados e visíveis */
        .user-label-anunciante {
            position: absolute;
            top: 60px;
            left: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.25);
            padding: 4px 12px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            font-size: 0.75rem;
            color: white;
            text-align: center;
            font-weight: 500;
            min-width: 80px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .user-label-diretor {
            position: absolute;
            top: 60px;
            right: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.25);
            padding: 4px 12px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            font-size: 0.75rem;
            color: white;
            text-align: center;
            font-weight: 500;
            min-width: 80px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* Ajustar o CSS dos containers principais para layout horizontal */
        .user-info {
            position: absolute;
            top: 15px;
            left: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.25);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            max-width: calc(100vw - 100px);
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-align: center;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .user-info a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 0;
            white-space: nowrap;
            font-weight: 500;
        }

        .user-info .mx-2 {
            display: inline;
            color: white;
            font-weight: 300;
        }

        .user-diretor {
            position: absolute;
            top: 15px;
            right: 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.25);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            max-width: calc(100vw - 100px);
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-align: center;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .user-diretor a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 0;
            white-space: nowrap;
            font-weight: 500;
        }

        .user-diretor .mx-2 {
            display: inline;
            color: white;
            font-weight: 300;
        }

        /* Responsividade para telas grandes (1400px+) - Alinhamento com botões parallax */
        @media (min-width: 1400px) {
            .user-info {
                left: 422px;
                transform: translateX(-50%);
            }
            .user-diretor {
                right: 400px;
                transform: translateX(50%);
            }
            .user-label-anunciante {
                left: 422px;
                transform: translateX(-50%);
                font-size: 0.8rem;
            }
            .user-label-diretor {
                right: 400px;
                transform: translateX(50%);
                font-size: 0.8rem;
            }
        }

        /* Telas médias-grandes (1200px - 1399px) */
        @media (max-width: 1399px) and (min-width: 1200px) {
            .user-info {
                left: 50%;
                transform: translateX(-150%);
            }
            .user-diretor {
                right: 50%;
                transform: translateX(150%);
            }
            .user-label-anunciante {
                left: 50%;
                transform: translateX(-150%);
            }
            .user-label-diretor {
                right: 50%;
                transform: translateX(150%);
            }
        }

        /* Telas médias (992px - 1199px) */
        @media (max-width: 1199px) and (min-width: 992px) {
            .user-info {
                left: 50%;
                transform: translateX(-120%);
                font-size: 0.9rem;
            }
            .user-diretor {
                right: 50%;
                transform: translateX(120%);
                font-size: 0.9rem;
            }
            .user-label-anunciante {
                left: 50%;
                transform: translateX(-120%);
                font-size: 0.75rem;
            }
            .user-label-diretor {
                right: 50%;
                transform: translateX(120%);
                font-size: 0.75rem;
            }
        }

        /* Tablets (768px - 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .user-info {
                left: 30px;
                max-width: calc(45vw - 40px);
                font-size: 0.85rem;
                padding: 6px 12px;
                transform: none;
            }
            .user-diretor {
                right: 30px;
                max-width: calc(45vw - 40px);
                font-size: 0.85rem;
                padding: 6px 12px;
                transform: none;
            }
            .user-label-anunciante {
                left: 30px;
                font-size: 0.7rem;
                transform: none;
            }
            .user-label-diretor {
                right: 30px;
                font-size: 0.7rem;
                transform: none;
            }
        }

        /* MOBILE - Versão corrigida com logo maior e melhor organização */
        @media (max-width: 767px) {
            /* Ocultar elementos desktop no mobile */
            .d-none.d-md-block {
                display: none !important;
            }
            
            /* Ajustar o parallax para melhor organização */
            .parallax-section {
                min-height: 100vh;
                padding-top: 120px !important;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                position: relative;
            }
            
            /* Logo maior e bem posicionada */
            .rotating-globe {
                position: absolute !important;
                top: 30px !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                z-index: 500 !important;
                max-width: 280px !important;
                height: auto !important;
            }
            
            /* Container mobile bem centralizado */
            .mobile-user-container {
                position: absolute;
                top: 45%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 85%;
                max-width: 380px;
                z-index: 1000;
                padding: 25px;
                background: rgba(255, 255, 255, 0.15);
                border-radius: 25px;
                backdrop-filter: blur(20px);
                border: 2px solid rgba(255, 255, 255, 0.25);
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            }
            
            /* Linha dos botões com melhor espaçamento */
            .mobile-buttons-row {
                display: flex;
                justify-content: space-between;
                gap: 20px;
                margin-bottom: 20px;
            }
            
            /* Linha dos labels com melhor espaçamento */
            .mobile-labels-row {
                display: flex;
                justify-content: space-between;
                gap: 20px;
            }
            
            /* Botões de usuário maiores e mais elegantes */
            .mobile-user-container .user-info,
            .mobile-user-container .user-diretor {
                flex: 1;
                background: rgba(255, 255, 255, 0.3);
                padding: 15px 18px;
                border-radius: 18px;
                text-align: center;
                font-size: 0.9rem;
                font-weight: 600;
                border: 2px solid rgba(255, 255, 255, 0.3);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
                backdrop-filter: blur(15px);
                min-height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }
            
            /* Labels maiores e mais visíveis */
            .mobile-user-container .user-label-anunciante,
            .mobile-user-container .user-label-diretor {
                flex: 1;
                background: rgba(255, 255, 255, 0.25);
                padding: 12px 15px;
                border-radius: 15px;
                text-align: center;
                font-size: 0.8rem;
                font-weight: 600;
                color: white;
                border: 2px solid rgba(255, 255, 255, 0.2);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                backdrop-filter: blur(12px);
                min-height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            }
            
            /* Links dentro dos botões mobile */
            .mobile-user-container .user-info a,
            .mobile-user-container .user-diretor a {
                color: white;
                text-decoration: none;
                font-size: 0.85rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 6px;
                white-space: nowrap;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .mobile-user-container .user-info i,
            .mobile-user-container .user-diretor i {
                font-size: 0.8rem;
                margin-right: 4px;
            }
            
            .mobile-user-container .user-info .mx-2 {
                margin: 0 6px;
                font-size: 0.75rem;
            }
            
            /* Conteúdo principal bem posicionado */
            .parallax-content {
                margin-top: 200px !important;
                position: relative;
                z-index: 600;
                text-align: center;
            }
            
            /* Títulos bem organizados */
            .parallax-title {
                font-size: 2.2rem !important;
                margin-top: 30px !important;
                font-weight: 700 !important;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            }
            
            .display-5 {
                font-size: 1.5rem !important;
                line-height: 1.3 !important;
                font-weight: 600 !important;
                margin-bottom: 10px !important;
            }
            
            .display-4 {
                font-size: 1.7rem !important;
                line-height: 1.3 !important;
                font-weight: 600 !important;
                margin-bottom: 30px !important;
            }
            
            /* Botões parallax mobile organizados */
            .parallax-link-left,
            .parallax-link-right {
                position: static !important;
                display: block !important;
                margin: 20px auto !important;
                text-align: center !important;
                max-width: 280px !important;
            }
            
            .parallax-link-left .btn,
            .parallax-link-right .btn {
                padding: 15px 25px !important;
                font-size: 1rem !important;
                font-weight: 600 !important;
                border-width: 2px !important;
            }
        }

        /* Mobile médio (até 480px) */
        @media (max-width: 480px) {
            .parallax-section {
                padding-top: 100px !important;
            }
            
            /* Logo um pouco menor mas ainda grande */
            .rotating-globe {
                max-width: 240px !important;
                top: 25px !important;
            }
            
            .mobile-user-container {
                width: 100%;
                max-width: 350px;
                padding: 7px;
                top: 10%;
            }
            
            .mobile-user-container .user-info,
            .mobile-user-container .user-diretor {
                font-size: 0.85rem;
                padding: 12px 15px;
                min-height: 45px;
            }
            
            .mobile-user-container .user-label-anunciante,
            .mobile-user-container .user-label-diretor {
                font-size: 0.75rem;
                padding: 10px 12px;
                min-height: 35px;
            }
            
            .parallax-title {
                font-size: 2rem !important;
            }
            
            .parallax-content {
                margin-top: 40px !important;
            }
        }

        /* Mobile pequeno (até 360px) */
        @media (max-width: 360px) {
            /* Logo ainda visível e grande */
            .rotating-globe {
                max-width: 200px !important;
                top: 20px !important;
            }
            
            .mobile-user-container {
                width: 95%;
                max-width: 320px;
                padding: 18px;
                top: 30%;
            }
            
            .mobile-buttons-row,
            .mobile-labels-row {
                gap: 15px;
            }
            
            .mobile-user-container .user-info,
            .mobile-user-container .user-diretor {
                font-size: 0.8rem;
                padding: 10px 12px;
                min-height: 40px;
            }
            
            .mobile-user-container .user-label-anunciante,
            .mobile-user-container .user-label-diretor {
                font-size: 0.7rem;
                padding: 8px 10px;
                min-height: 30px;
            }
            
            .parallax-title {
                font-size: 1.8rem !important;
            }
            
            .parallax-content {
                margin-top: 160px !important;
            }
        }

        /* Landscape mobile - mantendo a organização */
        @media (max-height: 500px) and (orientation: landscape) and (max-width: 767px) {
            .parallax-section {
                padding-top: 80px !important;
            }
            
            .rotating-globe {
                max-width: 160px !important;
                top: 15px !important;
            }
            
            .mobile-user-container {
                top: 35%;
                padding: 15px;
            }
            
            .parallax-content {
                margin-top: 120px !important;
            }
            
            .parallax-title {
                font-size: 1.6rem !important;
            }
        }

        /* Efeitos hover para mobile */
        @media (max-width: 767px) {
            .mobile-user-container .user-info:active,
            .mobile-user-container .user-diretor:active {
                transform: scale(0.98);
                background: rgba(255, 255, 255, 0.4);
            }
            
            .mobile-user-container .user-label-anunciante:active,
            .mobile-user-container .user-label-diretor:active {
                transform: scale(0.98);
                background: rgba(255, 255, 255, 0.35);
            }
        }

        /* Estilos gerais para links com melhor hierarquia visual */
        .user-info a,
        .user-diretor a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .user-info a:hover,
        .user-diretor a:hover {
            color: #ffc107;
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
            transform: translateY(-1px);
        }

        .user-info i,
        .user-diretor i {
            margin-right: 5px;
            opacity: 0.9;
        }

        /* Melhorar a visibilidade dos labels */
        .user-label-anunciante:hover,
        .user-label-diretor:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }

        /* Garantir que o globo não interfira nos elementos */
        .rotating-globe {
            z-index: 500 !important;
        }

        /* Ajustar o container principal para evitar sobreposições */
        .parallax-content {
            position: relative;
            z-index: 600;
        }




        /* ==============================================
   LAYOUT MOBILE OTIMIZADO - VERSÃO 2.0
   ============================================== */

/* Mobile - Layout completamente reorganizado */
@media (max-width: 767px) {
    .parallax-section {
        min-height: 100vh !important;
        padding: 20px 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }
    
    /* Menu hambúrguer flutuante */
    .mobile-menu-hamburger {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 2000;
    }
    
    .hamburger-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .hamburger-btn:hover,
    .hamburger-btn:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
    
    /* Estilo do menu offcanvas */
    .offcanvas {
        background: linear-gradient(135deg, #0061f2 0%, #6610f2 100%);
    }
    
    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .offcanvas-title {
        color: white;
        font-weight: 600;
    }
    
    .offcanvas .nav-link {
        color: white;
        font-size: 1.1rem;
        padding: 12px 15px;
        border-radius: 10px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }
    
    .offcanvas .nav-link:hover,
    .offcanvas .nav-link:active {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }
    
    /* Layout mobile principal */
    .mobile-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 174px 93px;
        height: 100%;
        width: 100%;
        z-index: 100;
    }
    
    /* Logo no topo */
    .mobile-logo-container {
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .mobile-logo {
        max-width: 150px !important;
        height: auto !important;
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    }
    
    /* Botão abaixo da logo */
    .mobile-button-container {
        margin-bottom: 30px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .mobile-login-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        text-decoration: none;
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        width: 100%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-login-btn:hover,
    .mobile-login-btn:active {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }
    
    /* Texto abaixo do botão */
    .mobile-text-container {
        text-align: center;
        margin-bottom: 40px;
        color: white;
    }
    
    .mobile-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-description {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    /* Botões de ação */
    .mobile-actions-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-bottom: 40px;
    }
    
    .mobile-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.15);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-action-btn:hover,
    .mobile-action-btn:active {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }
    
    .mobile-action-btn i {
        font-size: 1.3rem;
        opacity: 0.9;
    }
    
    .mobile-action-btn span {
        text-align: center;
        line-height: 1.3;
    }
    
    .primary-action {
        background: rgba(0, 123, 255, 0.25);
        border-color: rgba(0, 123, 255, 0.3);
    }
    
    .secondary-action {
        background: rgba(40, 167, 69, 0.25);
        border-color: rgba(40, 167, 69, 0.3);
    }
    
    /* Ocultar elementos antigos do mobile */
    .mobile-user-container,
    .mobile-buttons-row,
    .mobile-labels-row {
        display: none !important;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .mobile-logo {
        max-width: 120px !important;
    }
    
    .mobile-title {
        font-size: 1.8rem;
    }
    
    .mobile-subtitle {
        font-size: 1.3rem;
    }
    
    .mobile-description {
        font-size: 1.1rem;
    }
    
    .mobile-login-btn,
    .mobile-action-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hamburger-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
    .mobile-logo-container {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .mobile-logo {
        max-width: 100px !important;
    }
    
    .mobile-title {
        font-size: 1.6rem;
    }
    
    .mobile-subtitle {
        font-size: 1.2rem;
    }
    
    .mobile-description {
        font-size: 1rem;
    }
    
    .mobile-button-container,
    .mobile-actions-container {
        max-width: 260px;
    }
    
    .mobile-login-btn,
    .mobile-action-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .hamburger-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 767px) {
    .mobile-layout {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        justify-content: center;
    }
    
    .mobile-logo-container {
        margin: 10px;
        order: 1;
        width: 80px;
    }
    
    .mobile-logo {
        max-width: 80px !important;
    }
    
    .mobile-button-container {
        margin: 10px;
        order: 2;
        width: auto;
        max-width: 200px;
    }
    
    .mobile-text-container {
        margin: 10px;
        order: 3;
        width: 100%;
        text-align: center;
    }
    
    .mobile-title {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .mobile-subtitle {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .mobile-description {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .mobile-actions-container {
        margin: 10px;
        order: 4;
        flex-direction: row;
        max-width: 100%;
    }
    
    .mobile-action-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .hamburger-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}




/* Seletor de idiomas flutuante */
.language-selector {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.language-item {
    display: flex;
    align-items: center;
    width: auto;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding-right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.language-item:hover {
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.language-item img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    margin-right: 5px;
}

/* Estilo para o idioma ativo */
.language-item.active {
    transform: scale(1.05);
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsividade para mobile */
@media (max-width: 767px) {
    .language-selector {
        right: 10px;
    }
    
    .language-item {
        height: 30px;
        padding-right: 8px;
    }
    
    .language-item img {
        width: 26px;
        height: 26px;
    }
}

/* Estilos para seção de empresas mais profissional */
.empresa-table {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.empresa-table:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.empresa-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.empresa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.empresa-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-weight: 600;
    color: #495057;
}

.empresa-card .card-footer {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.loading-state, .empty-state {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .empresa-table .card-header {
        padding: 1rem;
    }
    
    .empresa-table .card-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .icon-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/*******************************************************/

/* ===== GLOBO ANIMADO PROFISSIONAL ===== */
.floating-globe {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.floating-globe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-globe:hover::before {
    opacity: 1;
}

.floating-globe:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.6);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.globe-icon {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: spin 8s linear infinite;
}

.floating-globe:hover .globe-icon {
    animation-duration: 2s;
}

/* Tooltip Profissional */
.globe-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.globe-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 8px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.floating-globe:hover .globe-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Popup Modal Profissional */
.globe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.globe-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.globe-modal-header {
    margin-bottom: 30px;
}

.globe-modal-header h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.globe-modal-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

.globe-modal-body {
    margin-bottom: 30px;
}

.radio-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.globe-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-globe {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-globe-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-globe-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-globe-secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.btn-globe-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #dc3545;
    transform: rotate(90deg);
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .floating-globe {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .globe-icon {
        font-size: 1.5rem;
    }
    
    .globe-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .radio-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .globe-modal-footer {
        flex-direction: column;
    }
}