.empresa-telefone a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.empresa-telefone a:hover {
    color: #1a0dab;
}
.ver-mais {
    display: inline-block;
    margin-left: 5px;
    color: #1a0dab;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.ver-mais:hover {
    text-decoration: underline;
    color: #0077e6;
    background-color: rgba(30, 144, 255, 0.1);
}
.descricao-truncada, .descricao-completa {
    line-height: 1.5;
    white-space: pre-line;
}
.descricao-completa {
    margin-bottom: 8px;
}
body.dark-mode .empresa-telefone a:hover {
    color: #4da3ff;
}
body.dark-mode .ver-mais {
    color: #4da3ff;
}
body.dark-mode .ver-mais:hover {
    color: #6eb5ff;
    background-color: rgba(77, 163, 255, 0.1);
}
.empresa-header {
    padding: 30px 0;
}
.empresa-foto {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.empresa-foto-container {
    text-align: center;
}

.empresa-foto-container .empresa-foto {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.empresa-foto-container .empresa-foto:hover {
    transform: scale(1.02);
}

.empresa-mapa-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.empresa-mapa-container h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Dark Mode para foto e mapa */
body.dark-mode .empresa-foto-container .empresa-foto {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

body.dark-mode .empresa-mapa-container {
    background-color: #2a2a2a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.dark-mode .empresa-mapa-container h3 {
    color: #fff;
}

.empresa-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 30px 10px;
}
.empresa-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.empresa-status-badge--baixada {
    background-color: #fde8e8;
    color: #b42318;
    border: 1px solid #fecdca;
}
body.dark-mode .empresa-status-badge--baixada {
    background-color: #3d1f1f;
    color: #fda29b;
    border-color: #7a271a;
}

.rfb-dados-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 16px;
    margin: 0;
}
.rfb-dados-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    align-items: start;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.rfb-dados-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.rfb-dados-label {
    font-size: 11px;
    font-weight: 600;
    color: #5a6268;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}
.rfb-dados-valor {
    font-size: 13px;
    color: #333;
    margin: 0;
    word-break: break-word;
}
.rfb-cnpj-valor {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.rfb-tags-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.rfb-tag-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    background-color: #eef2ff;
    color: #1a0dab;
}
.rfb-cnae-principal {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 4px;
}
.rfb-cnae-codigo {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    color: #1a0dab;
    font-size: 12px;
}
.rfb-cnae-lista {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.rfb-cnae-lista li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    line-height: 1.4;
}
.rfb-cnae-lista li:last-child {
    border-bottom: none;
}
.rfb-classificacao {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    font-size: 12px;
    color: #666;
}
body.dark-mode .rfb-dados-row {
    border-bottom-color: #444;
}
body.dark-mode .rfb-dados-label {
    color: #aaa;
}
body.dark-mode .rfb-dados-valor {
    color: #e8e8e8;
}
body.dark-mode .rfb-tag-pill {
    background-color: #2a2a4a;
    color: #8ab4ff;
}
body.dark-mode .rfb-cnae-principal {
    background-color: #333;
}
body.dark-mode .rfb-cnae-lista li {
    border-bottom-color: #444;
}
body.dark-mode .rfb-classificacao {
    border-top-color: #444;
    color: #aaa;
}
@media (max-width: 576px) {
    .rfb-dados-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}
.empresa-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #1a0dab;
    box-shadow: none;
}
.empresa-categoria {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}
.empresa-categoria a {
    color: #1a0dab;
    text-decoration: none;
}
.empresa-categoria a:hover {
    text-decoration: underline;
}
.empresa-contato {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.empresa-contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.empresa-contato-item i {
    width: 30px;
    color: #1a0dab;
}
.empresa-mapa {
    height: 320px;
    min-height: 320px;
    border-radius: 8px;
    margin-top: 0;
}
body.dark-mode .empresa-header {
    background-color: #1a1a1a;
}
body.dark-mode .empresa-info {
    background-color: #2a2a2a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
body.dark-mode .empresa-categoria {
    color: #aaa;
}
body.dark-mode .empresa-categoria a {
    color: #4da3ff;
}
body.dark-mode .empresa-contato-item {
    border-top-color: #333;
}
.hover-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)!important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.15);
}

body.dark-mode .card {
    background-color: #2a2a2a;
    border-color: #333;
}

body.dark-mode .card-title a {
    color: #4da3ff;
}

body.dark-mode .text-muted {
    color: #aaa !important;
}

body.dark-mode .btn-warning {
    color: #000 !important;
}

    /* Botões de Ação */
    .action-buttons {
        margin-bottom: 25px;
    }

    .action-buttons h3 {
        font-size: 18px;
        color: #333;
        margin: 0 0 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #1a0dab;
        font-weight: 600;
    }

    .button-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all .3s ease;
        text-decoration: none;
        width: 100%;
    }

    .btn-action i {
        font-size: 16px;
    }

    .btn-edit {
        background-color: #1a0dab;
        color: white;
    }

    .btn-edit:hover {
        background-color: #0077e6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    }

    .btn-report {
        background-color: #ffc107;
        color: #212529;
    }

    .btn-report:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    }

    .btn-remove {
        background-color: #dc3545;
        color: white;
    }

    .btn-remove:hover {
        background-color: #c82333;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    }

    .btn-success {
        background-color: #28a745;
        color: white;
    }

    .btn-success:hover {
        background-color: #218838;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }

    /* Estilo para campos com erro */
    .is-invalid {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
    }

    .is-invalid:focus {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
    }

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

    /* Responsividade para modais */
    @media (max-width: 768px) {
        .modal-dialog {
            margin: 15px;
        }
        
        .modal-lg {
            max-width: 95%;
        }
        
        .modal-content {
            border-radius: 12px;
        }
        
        .modal-header {
            padding: 15px;
        }
        
        .modal-title {
            font-size: 16px;
        }
        
        .modal-body {
            padding: 15px;
            font-size: 14px;
        }
        
        .modal-footer {
            padding: 12px 15px;
            flex-wrap: wrap;
        }
        
        .row {
            margin: 0;
        }
        
        .col-md-6 {
            margin-bottom: 20px;
        }
        
        .btn-lg {
            padding: 12px 20px;
            font-size: 15px;
        }
        
        .form-label {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            padding: 12px;
            font-size: 16px; /* Evita zoom no iOS */
            border-radius: 8px;
        }
        
        .input-group {
            flex-wrap: nowrap;
        }
        
        .input-group .form-control {
            font-size: 16px;
            padding: 12px;
        }
        
        .input-group-text {
            padding: 12px 14px;
            font-size: 14px;
        }
        
        .input-group .btn {
            padding: 12px 16px;
            min-width: 50px;
        }
        
        .alert {
            padding: 12px 15px;
            font-size: 13px;
            border-radius: 8px;
        }
        
        .alert h5, .alert h6 {
            font-size: 15px;
            margin-bottom: 8px;
        }
        
        .img-fluid {
            max-width: 180px !important;
        }
        
        h6 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .form-text {
            font-size: 12px;
            margin-top: 4px;
        }
    }

    @media (max-width: 576px) {
        .modal-dialog {
            margin: 10px;
        }
        
        .modal-content {
            border-radius: 12px;
        }
        
        .modal-header {
            padding: 15px;
        }
        
        .modal-title {
            font-size: 15px;
        }
        
        .modal-body {
            padding: 15px;
            font-size: 14px;
        }
        
        .modal-footer {
            padding: 12px 15px;
        }
        
        .btn-lg {
            padding: 14px 20px;
            font-size: 16px;
            width: 100%;
            margin-bottom: 8px;
        }
        
        .btn {
            padding: 12px 16px;
            font-size: 15px;
        }
        
        .form-control, .form-select {
            padding: 14px;
            font-size: 16px;
        }
        
        .input-group .form-control {
            padding: 14px;
            font-size: 16px;
        }
        
        .input-group-text {
            padding: 14px 12px;
        }
        
        .input-group .btn {
            padding: 14px 16px;
            min-width: 60px;
        }
        
        .alert {
            padding: 12px;
            font-size: 13px;
        }
        
        .alert h5, .alert h6 {
            font-size: 14px;
        }
        
        .img-fluid {
            max-width: 150px !important;
        }
        
        .col-md-6 {
            padding: 0;
        }
        
        h6 {
            font-size: 14px;
        }
        
        .form-label {
            font-size: 14px;
        }
        
        .form-text {
            font-size: 11px;
        }
    }
    
    /* Reduzir tamanho do SweetAlert */
    .swal2-popup {
        width: 90% !important;
        max-width: 400px !important;
        padding: 1.5rem !important;
    }
    
    .swal2-title {
        font-size: 1.25rem !important;
    }
    
    .swal2-html-container {
        font-size: 0.875rem !important;
    }
    
    @media (max-width: 576px) {
        .swal2-popup {
            width: 85% !important;
            max-width: 350px !important;
            padding: 1.25rem !important;
        }
        
        .swal2-title {
            font-size: 1.125rem !important;
        }
        
        .swal2-html-container {
            font-size: 0.8125rem !important;
        }
    }

    /* Dark Mode para botões de ação */
    body.dark-mode .action-buttons h3 {
        color: #fff;
    }

    body.dark-mode .btn-edit {
        background-color: #4da3ff;
    }

    body.dark-mode .btn-edit:hover {
        background-color: #3a8bff;
        box-shadow: 0 4px 12px rgba(77, 163, 255, 0.4);
    }

    body.dark-mode .btn-report {
        background-color: #ffd54f;
        color: #212529;
    }

    body.dark-mode .btn-report:hover {
        background-color: #ffca28;
        box-shadow: 0 4px 12px rgba(255, 213, 79, 0.4);
    }

    body.dark-mode .btn-remove {
        background-color: #f44336;
    }

    body.dark-mode .btn-remove:hover {
        background-color: #e53935;
        box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
    }

    body.dark-mode .btn-success {
        background-color: #4caf50;
    }

    body.dark-mode .btn-success:hover {
        background-color: #45a049;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    }

@media (max-width: 768px) {
    .d-grid.gap-2.d-md-flex {
        display: grid !important;
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .action-buttons {
        margin-bottom: 20px;
    }

    .action-buttons h3 {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-action {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
    }

    .btn-action i {
        font-size: 18px;
        flex-shrink: 0;
    }

    .btn-action .badge {
        margin-left: auto;
        font-size: 0.7rem;
        padding: 4px 8px;
        white-space: nowrap;
    }

    /* Ajustar badge em telas muito pequenas */
    @media (max-width: 400px) {
        .btn-action .badge {
            display: none;
        }
    }
}

/* Estilos para descrição truncada */
.descricao-texto {
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.descricao-texto.truncada {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.descricao-texto.truncada::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.descricao-controles {
    text-align: center;
}

.descricao-controles .btn-link {
    color: #1a0dab;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.descricao-controles .btn-link:hover {
    color: #0077e6;
    text-decoration: underline;
}

.descricao-controles .btn-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.descricao-controles .btn-link:hover i {
    transform: translateY(1px);
}

/* Dark Mode para descrição */
body.dark-mode .descricao-texto {
    color: #ccc;
}

body.dark-mode .descricao-texto.truncada::after {
    background: linear-gradient(transparent, #1e1e1e);
}

body.dark-mode .descricao-controles .btn-link {
    color: #4da3ff;
}

body.dark-mode .descricao-controles .btn-link:hover {
    color: #6eb5ff;
}

/* Estilos para empresas próximas */
.empresas-proximas {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-radius: 15px;
    margin-top: 40px;
}

.empresa-proxima-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.empresa-proxima-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #1a0dab;
}

.empresa-proxima-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.empresa-proxima-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a0dab, #0077e6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.empresa-proxima-info {
    flex: 1;
}

.empresa-proxima-nome {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.empresa-proxima-nome a {
    color: #1a0dab;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 4px;
    box-sizing: border-box;
}

.empresa-proxima-nome a:hover {
    color: #1a0dab;
}

.empresa-proxima-localizacao {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
}

.empresa-proxima-localizacao i {
    color: #1a0dab;
    font-size: 12px;
}

.empresa-proxima-detalhes {
    margin-bottom: 15px;
}

.empresa-proxima-detalhes > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.empresa-proxima-detalhes > div:last-child {
    margin-bottom: 0;
}

.empresa-proxima-detalhes i {
    color: #1a0dab;
    font-size: 12px;
    width: 14px;
    text-align: center;
}

.empresa-proxima-detalhes a {
    color: #1a0dab;
    text-decoration: none;
    transition: color 0.3s ease;
}

.empresa-proxima-detalhes a:hover {
    color: #0077e6;
    text-decoration: underline;
}

.empresa-proxima-acoes {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-ver-detalhes, .btn-ligar {
    flex: 1;
    padding: 10px 14px;
    min-height: 44px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-ver-detalhes {
    background-color: #1a0dab;
    color: white;
    border: 1px solid #1a0dab;
}

.btn-ver-detalhes:hover {
    background-color: #0077e6;
    border-color: #0077e6;
    color: white;
    transform: translateY(-1px);
}

.btn-ligar {
    background-color: #0a5228;
    color: #fff;
    border: 1px solid #0a5228;
    text-decoration: none;
}

.btn-ligar:hover {
    background-color: #063d1e;
    border-color: #063d1e;
    color: white;
    transform: translateY(-1px);
}

/* Dark Mode para empresas próximas */
body.dark-mode .empresas-proximas {
    background-color: #1a1a1a;
}

body.dark-mode .empresa-proxima-card {
    background-color: #2a2a2a;
    border-color: #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

body.dark-mode .empresa-proxima-card:hover {
    border-color: #4da3ff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

body.dark-mode .empresa-proxima-nome a {
    color: #fff;
}

body.dark-mode .empresa-proxima-nome a:hover {
    color: #4da3ff;
}

body.dark-mode .empresa-proxima-localizacao {
    color: #aaa;
}

body.dark-mode .empresa-proxima-detalhes > div {
    color: #ccc;
}

body.dark-mode .empresa-proxima-detalhes a {
    color: #4da3ff;
}

body.dark-mode .empresa-proxima-detalhes a:hover {
    color: #6eb5ff;
}

/* Responsividade para empresas próximas */
@media (max-width: 768px) {
    .empresas-proximas {
        padding: 20px 0;
    }
    
    .empresa-proxima-card {
        padding: 15px;
    }
    
    .empresa-proxima-header {
        gap: 12px;
    }
    
    .empresa-proxima-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .empresa-proxima-nome {
        font-size: 14px;
    }
    
    .empresa-proxima-acoes {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-ver-detalhes, .btn-ligar {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Estilos para FAQ */
.faq-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-radius: 10px;
    margin-top: 40px;
}

.faq-section h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #1a0dab;
    color: #fff;
    box-shadow: none;
}

/* Estilos para os modais */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    border-radius: 15px 15px 0 0;
    background-color: #f8f9fa;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 15px 15px;
    background-color: #f8f9fa;
}

.empresa-info h6 {
    color: #1a0dab;
    margin-bottom: 10px;
    font-weight: 600;
}

.empresa-info p {
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #1a0dab;
    box-shadow: 0 0 0 0.2rem rgba(30, 144, 255, 0.25);
    outline: none;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-danger:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: none;
    box-shadow: none;
}

/* Dark Mode para modais */
body.dark-mode .modal-content {
    background-color: #1e1e1e;
    color: #fff;
}

body.dark-mode .modal-header,
body.dark-mode .modal-footer {
    background-color: #2a2a2a;
    border-color: #444;
}

body.dark-mode .modal-title {
    color: #fff;
}

body.dark-mode .empresa-info {
    background-color: #2a2a2a;
    border-left-color: #4da3ff;
}

body.dark-mode .empresa-info h6 {
    color: #4da3ff;
}

body.dark-mode .form-control,
body.dark-mode .form-select {
    background-color: #2a2a2a;
    border-color: #444;
    color: #fff;
}

body.dark-mode .form-control:focus,
body.dark-mode .form-select:focus {
    border-color: #4da3ff;
    box-shadow: 0 0 0 0.2rem rgba(77, 163, 255, 0.25);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.25);
}

.accordion-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.accordion-button:not(.collapsed):hover {
    background-color: #0077e6;
}

.accordion-body {
    background-color: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
}

.accordion-body p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body a {
    color: #1a0dab;
    text-decoration: none;
}

.accordion-body a:hover {
    text-decoration: underline;
}

/* Dark Mode para FAQ */
body.dark-mode .faq-section {
    background-color: #1a1a1a;
}

body.dark-mode .faq-section h2 {
    color: #fff;
}

body.dark-mode .accordion-item {
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.dark-mode .accordion-button {
    background-color: #2a2a2a;
    color: #fff;
}

body.dark-mode .accordion-button:hover {
    background-color: #333;
}

body.dark-mode .accordion-button:not(.collapsed) {
    background-color: #4da3ff;
    color: #fff;
}

body.dark-mode .accordion-button:not(.collapsed):hover {
    background-color: #3a8bff;
}

body.dark-mode .accordion-body {
    background-color: #2a2a2a;
    border-top-color: #333;
    color: #fff;
}

body.dark-mode .accordion-body a {
    color: #4da3ff;
}

body.dark-mode .accordion-body a:hover {
    color: #6eb5ff;
}

/* Responsividade para FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px 0;
    }
    
    .accordion-button {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .accordion-body {
        padding: 15px;
    }
}

/* Estilos para sidebar de filtro — oculto fora da tela até .active */
.sidebar-filter {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(300px, 88vw);
    height: 100%;
    max-height: 100dvh;
    background: #fff;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    z-index: 1050;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
}

.sidebar-filter.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s linear 0s;
}

.sidebar-filter h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Dark Mode para sidebar de filtro */
body.dark-mode .sidebar-filter {
    background: #1e1e1e;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
}

body.dark-mode .sidebar-filter h3 {
    color: #fff;
    border-bottom-color: #333;
}

/* Estilos para overlay do filtro */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-filter-toggle {
    display: none;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .header .cascata-busca {
        display: none !important;
    }
    
    .mobile-filter-toggle {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .mobile-filter-toggle,
    .sidebar-filter,
    .sidebar-overlay {
        display: none !important;
    }
    
    .header .cascata-busca {
        display: flex !important;
    }
}

.alert-importante-borda {
    border: 2px solid #dc3545 !important;
    animation: piscar-borda 3s ease-in-out infinite;
}

@keyframes piscar-borda {
    0%, 100% {
        border-color: #dc3545;
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
    50% {
        border-color: rgba(220, 53, 69, 0.5);
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }
}

@media (max-width:768px){body:not(.poi-page){font-size:16px;overflow-x:hidden}.mobile-filter-toggle,.search-btn,.theme-toggle{min-width:48px;min-height:48px}}

/* Seção blog complementar DeepSeek */
.poi-artigo-complementar {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.poi-artigo-complementar h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}
.poi-artigo-body {
    line-height: 1.75;
    color: #333;
    font-size: 1rem;
}
.poi-artigo-intro {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.25rem;
}
.poi-artigo-h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #1a1a2e;
}
.poi-artigo-lista {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}
.poi-artigo-lista li {
    margin-bottom: 0.5rem;
}
.poi-artigo-faq {
    margin-top: 0.5rem;
}
.poi-artigo-faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #fafafa;
}
.poi-artigo-faq-item summary {
    font-weight: 600;
    cursor: pointer;
    color: #1a1a2e;
}
.poi-artigo-faq-item p {
    margin: 0.75rem 0 0;
    color: #555;
}
body.dark-mode .poi-artigo-complementar {
    border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .poi-artigo-complementar h2,
body.dark-mode .poi-artigo-h3,
body.dark-mode .poi-artigo-faq-item summary {
    color: #e8e8e8;
}
body.dark-mode .poi-artigo-body,
body.dark-mode .poi-artigo-intro {
    color: #ccc;
}
body.dark-mode .poi-artigo-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .poi-artigo-faq-item p {
    color: #aaa;
}

/* Super POI — hero, artigo colapsável, avaliações estilo Google */
.poi-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1a0dab;
}

.poi-hero-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 1px solid #e3e8f5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26, 13, 171, 0.06);
}
.poi-hero-summary-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
}
.poi-hero-summary-score {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}
.poi-hero-summary-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.poi-hero-summary-count {
    font-size: 0.85rem;
    color: #666;
    width: 100%;
}
@media (min-width: 480px) {
    .poi-hero-summary-count { width: auto; }
}
.poi-hero-summary-tag {
    font-size: 0.8rem;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
}
.poi-hero-summary-actions {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}
@media (min-width: 480px) {
    .poi-hero-summary-actions { width: auto; margin-left: auto; }
}
.poi-hero-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.poi-hero-btn--call {
    background: #0a5228;
    color: #fff;
}
.poi-hero-btn--rate {
    background: #1a0dab;
    color: #fff;
}

.poi-super-page .empresa-nome-titulo {
    min-height: auto;
}

.poi-artigo-section {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-bottom: 0.65rem;
    background: #fff;
    overflow: hidden;
}
.poi-artigo-section summary {
    list-style: none;
    cursor: pointer;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.poi-artigo-section summary::-webkit-details-marker { display: none; }
.poi-artigo-section summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a0dab;
    flex-shrink: 0;
}
.poi-artigo-section[open] summary::after { content: '−'; }
.poi-artigo-section-body {
    padding: 0 1rem 1rem;
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
}
.poi-artigo-section-body p { margin: 0; }
@media (min-width: 769px) {
    .poi-artigo-section { border: none; background: transparent; margin-bottom: 0; }
    .poi-artigo-section summary {
        pointer-events: none;
        padding: 0;
        margin: 1.5rem 0 0.75rem;
        font-size: 1.15rem;
    }
    .poi-artigo-section summary::after { display: none; }
    .poi-artigo-section-body { padding: 0; font-size: 1rem; }
}

.poi-super-page .poi-artigo-complementar,
.poi-super-page .poi-avaliacoes-complementar {
    background: #fff;
    padding: 1rem 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Widget de avaliações */
.poi-reviews-widget {
    contain: layout style;
}
.poi-reviews-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
}
@media (min-width: 540px) {
    .poi-reviews-hero {
        grid-template-columns: auto 1fr;
        align-items: center;
    }
    .poi-btn-avaliar { grid-column: 1 / -1; }
}
@media (min-width: 769px) {
    .poi-reviews-hero {
        grid-template-columns: auto 1fr auto;
    }
    .poi-btn-avaliar { grid-column: auto; }
}
.poi-reviews-score-block {
    text-align: center;
    min-width: 100px;
}
.poi-reviews-score-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}
.poi-reviews-score-stars .poi-stars {
    color: #f59e0b;
    font-size: 1rem;
}
.poi-reviews-score-count {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}
.poi-reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
}
.poi-reviews-bar-row {
    display: grid;
    grid-template-columns: 14px 1fr;
    align-items: center;
    gap: 0.5rem;
}
.poi-reviews-bar-label {
    font-size: 0.75rem;
    color: #666;
    text-align: right;
}
.poi-reviews-bar-track {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}
.poi-reviews-bar-fill {
    display: block;
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    min-width: 2px;
}
.poi-btn-avaliar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    background: #1a0dab;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(26, 13, 171, 0.25);
}
.poi-btn-avaliar:active { transform: scale(0.98); }

.poi-review-form-panel {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e3e8f5;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}
.poi-review-form-title {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}
.poi-review-form-hint {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: #666;
}
.poi-star-picker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.poi-star-picker-btn {
    background: none;
    border: none;
    padding: 0.25rem;
    font-size: 1.75rem;
    color: #ddd;
    cursor: pointer;
    line-height: 1;
}
.poi-star-picker-btn.is-active,
.poi-star-picker-btn:hover,
.poi-star-picker-btn:hover ~ .poi-star-picker-btn {
    color: #f59e0b;
}
.poi-review-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.35rem;
}
.poi-review-input,
.poi-review-textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 0.85rem;
    min-height: 44px;
}
.poi-review-textarea { min-height: 88px; resize: vertical; }
.poi-btn-enviar-avaliacao {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem;
    background: #0a5228;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}
.poi-review-success {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #0a5228;
}
.poi-review-success i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.poi-review-success p { margin: 0; color: #333; }

.poi-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.poi-review-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.poi-review-card--collapsed { display: none; }
.poi-review-card-top {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}
.poi-review-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a0dab, #0077e6);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.poi-review-meta {
    flex: 1;
    min-width: 0;
}
.poi-review-author {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.15rem;
}
.poi-review-stars .poi-stars {
    color: #f59e0b;
    font-size: 0.8rem;
}
.poi-review-date {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.15rem;
}
.poi-review-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #444;
}
.poi-reviews-more {
    width: 100%;
    min-height: 44px;
    margin-top: 0.85rem;
    padding: 0.65rem;
    background: transparent;
    border: 1px solid #1a0dab;
    color: #1a0dab;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.poi-stars .poi-stars-num {
    color: #333;
    font-weight: 600;
    margin-left: 0.35rem;
}
.poi-artigo-afirmacoes li {
    font-style: italic;
    color: #555;
}

body.dark-mode .poi-section-title,
body.dark-mode .poi-hero-summary-score,
body.dark-mode .poi-reviews-score-num,
body.dark-mode .poi-review-author,
body.dark-mode .poi-review-form-title {
    color: #e8e8e8;
}
body.dark-mode .poi-hero-summary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .poi-hero-summary-tag {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ccc;
}
body.dark-mode .poi-reviews-hero,
body.dark-mode .poi-review-form-panel,
body.dark-mode .poi-review-card,
body.dark-mode .poi-artigo-section {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .poi-artigo-section summary { color: #e8e8e8; }
body.dark-mode .poi-artigo-section-body,
body.dark-mode .poi-review-text,
body.dark-mode .poi-review-success p {
    color: #bbb;
}
body.dark-mode .poi-reviews-score-count,
body.dark-mode .poi-review-date,
body.dark-mode .poi-review-form-hint {
    color: #888;
}

@media (max-width: 768px) {
    .poi-super-page .poi-artigo-intro {
        font-size: 0.95rem;
        line-height: 1.65;
        max-height: 8.5em;
        overflow: hidden;
        position: relative;
    }
    .poi-super-page .poi-artigo-body.is-intro-expanded .poi-artigo-intro {
        max-height: none;
    }
}
