/* ========================================== */
/* 1. VARIÁVEIS GERAIS                        */
/* ========================================== */
:root {
    --azul-escuro: #003366;
    --azul-hover: #001f3f;
    --laranja: #FF8C00;
    --laranja-hover: #E67E00;
    --cinza-fundo: #F8FAFC;
    --cinza-borda: #E2E8F0;
    --cinza-texto: #64748B;
    --branco: #FFFFFF;
    --sucesso: #10B981;
    --whatsapp: #25D366;
    --whatsapp-hover: #20BD5A;
    --erro: #EF4444;
    --sombra-leve: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --sombra-forte: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --transicao: 0.3s ease-in-out;
}

/* ========================================== */
/* 2. RESET E NOVA ESTRUTURA "APP LAYOUT"     */
/* ========================================== */
* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--cinza-fundo);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

/* COMPONENTES GLOBAIS RESTAURADOS (Cartões e Botões) */
.btn-principal {
    background: var(--azul-escuro);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transicao);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-principal:hover {
    background: var(--azul-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.stat-card {
    background: var(--branco);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--sombra-leve);
    border: 1px solid var(--cinza-borda);
    transition: var(--transicao);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--cinza-borda);
    border-radius: 8px;
    background: white;
    font-size: 14px;
    transition: var(--transicao);
    outline: none;
}

.form-input:focus {
    border-color: var(--laranja);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

/* 🍏 FIX iOS ZOOM & SCROLL OTIMIZADO GLOBAL */
@media (max-width: 900px) {

    html body input,
    html body select,
    html body textarea,
    input,
    select,
    textarea,
    .chat-ia-input,
    .form-input,
    .input-pesquisa-area input {
        font-size: 16px !important;
    }
}

/* TUDO A RESPIRAR NO MOBILE (TABELAS) GLOBAL */
.table-container {
    overflow-x: auto !important;
    display: block !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {

    body.pagina-mapa .footer-olx,
    body.pagina-mapa footer {
        display: none !important;
    }
}

.table-container table {
    width: 100%;
    white-space: nowrap;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* ========================================== */
/* 3. CABEÇALHO PÚBLICO                       */
/* ========================================== */
.header-publico {
    background: var(--branco);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid var(--cinza-borda);
    flex-shrink: 0;
}

.logo-mapapro {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-texto {
    color: var(--azul-escuro);
}

.logo-destaque {
    color: var(--laranja);
    display: flex;
    align-items: center;
}

.logo-pin {
    width: 20px;
    height: 26px;
    margin-left: 1px;
    transform: translateY(1px);
}

.menu-publico {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu-publico a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
    padding: 12px;
    display: inline-block;
}

.link-simples {
    color: var(--azul-escuro);
}

.link-simples:hover {
    color: var(--laranja);
}

.btn-cliente {
    color: var(--laranja);
    border: 2px solid var(--laranja);
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cliente:hover {
    background: var(--laranja);
    color: white;
}

.btn-sou-profissional {
    background: var(--laranja);
    color: var(--branco) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-sou-profissional:hover {
    background: var(--laranja-hover);
    transform: translateY(-2px);
}

/* AVISO DE LOCALIZAÇÃO DISCRETO NO TOPO */
#banner-loc {
    background: #E0F2FE;
    color: #0369A1;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #BAE6FD;
    font-size: 14px;
    z-index: 1999;
    animation: slideDown 0.5s ease;
}

#banner-loc button {
    padding: 6px 15px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    margin-left: 10px;
    transition: 0.2s;
}

.btn-recusar {
    background: transparent;
    color: #0369A1;
    text-decoration: underline;
}

.btn-permitir {
    background: #0284C7;
    color: white;
}

.btn-permitir:hover {
    background: #0369A1;
}

/* ========================================== */
/* 4. ZONA DE FILTROS E PESQUISA              */
/* ========================================== */
.hero-pesquisa {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, #001f3f 100%);
    padding: 25px 20px;
    text-align: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.hero-pesquisa h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
}

.hero-pesquisa p {
    font-size: 15px;
    color: #CBD5E1;
    margin-bottom: 20px;
}

.caixa-pesquisa {
    background: white;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    box-shadow: var(--sombra-forte);
}

.input-pesquisa-area {
    flex: 1;
    display: flex;
    align-items: center;
    background: #F1F5F9;
    border-radius: 8px;
    padding: 0 15px;
    border: 2px solid transparent;
    transition: 0.2s;
}

.input-pesquisa-area:focus-within {
    border-color: var(--laranja);
    background: white;
}

.input-pesquisa-area i {
    color: var(--cinza-texto);
    font-size: 18px;
}

.input-pesquisa-area select,
.input-pesquisa-area input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 15px;
    outline: none;
    color: var(--azul-escuro);
    font-weight: 600;
    cursor: pointer;
}

.btn-procurar {
    background: var(--laranja);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.btn-procurar:hover {
    background: var(--laranja-hover);
}

/* BARRA DE FERRAMENTAS EXTRA (SLIDER E OCULTAR MAPA) */
.barra-ferramentas {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--cinza-borda);
    z-index: 1500;
    flex-shrink: 0;
    position: sticky;
    top: 70px;
}

/* ========================================== */
/* 5. ÁREA DE MAPA E LISTA                    */
/* ========================================== */
.mapa-container {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.lista-profissionais {
    width: 500px;
    flex-shrink: 0;
    background: var(--cinza-fundo);
    overflow-y: auto;
    padding: 20px;
    border-right: 1px solid var(--cinza-borda);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    transition: width 0.3s ease;
}

.resultado-info {
    font-size: 14px;
    color: var(--cinza-texto);
    margin-bottom: 20px;
    font-weight: 600;
}

.estado-vazio {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cinza-texto);
    padding: 40px 20px;
    margin-top: 30px;
}

.estado-vazio i {
    font-size: 60px;
    color: #CBD5E1;
    margin-bottom: 20px;
}

#lista-cartoes-container {
    transition: 0.3s;
}

.modo-grelha {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.modo-grelha .cartao-pro {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modo-grelha .pro-descricao {
    flex: 1;
}

.cartao-pro {
    background: white;
    border: 1px solid var(--cinza-borda);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
    box-shadow: var(--sombra-leve);
    position: relative;
}

.cartao-pro:hover {
    border-color: var(--laranja);
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

.badge-top1 {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--laranja);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.pro-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pro-avatar {
    width: 65px;
    height: 65px;
    background: #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #94A3B8;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--cinza-borda);
}

.pro-nome {
    font-size: 18px;
    font-weight: 800;
    color: var(--azul-escuro);
    margin-bottom: 5px;
}

.pro-servico {
    font-size: 14px;
    color: var(--cinza-texto);
    font-weight: 500;
    background: #F1F5F9;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
}

.pro-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--cinza-texto);
    margin-top: 8px;
}

.stars {
    color: #F59E0B;
    font-size: 14px;
}

.pro-descricao {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pro-acoes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-perfil {
    width: 100%;
    background: #F1F5F9;
    color: var(--azul-escuro);
    border: 1px solid var(--cinza-borda);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 10px;
}

.btn-perfil:hover {
    background: #E2E8F0;
}

.btn-ligar,
.btn-whatsapp {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-ligar {
    background: var(--azul-escuro);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

/* ========================================== */
/* 6. ÁREA DO MAPA INAMOVÍVEL                 */
/* ========================================== */
.area-visual-mapa {
    flex: 1;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

#mapa-real {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #E2E8F0;
}

#loading-mapa {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--azul-escuro);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1000;
    display: none;
    box-shadow: var(--sombra-forte);
}

/* ========================================== */
/* MASCOTE IA FLUTUANTE (MARIA EM ZOOM)       */
/* ========================================== */
.mascote-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Inter', sans-serif;
}

.mascote-btn {
    width: 75px;
    height: 75px;
    background: url('maria.png') center/cover no-repeat !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
    border: 3px solid white;
    transition: 0.3s;
    z-index: 9991;
    position: fixed;
    bottom: 30px;
    right: 30px;
    animation: flutuar 3s ease-in-out infinite;
}

.mascote-btn:hover {
    transform: scale(1.1);
}

.chat-ia-window {
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid #E2E8F0;
    transform-origin: bottom right;
    animation: abrirChat 0.3s ease forwards;
}

.chat-ia-header {
    background: #003366;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-ia-header h4 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-ia-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    opacity: 0.7;
    transition: 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
}

.chat-ia-close:hover {
    opacity: 1;
}

.chat-ia-body {
    height: auto;
    max-height: 50vh;
    padding: 20px;
    background: #F8FAFC;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg-ia,
.msg-user {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.msg-ia {
    background: white;
    color: #1E293B;
    border: 1px solid #E2E8F0;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.msg-user {
    background: #FF8C00;
    color: white;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
    box-shadow: 0 2px 5px rgba(255, 140, 0, 0.2);
}

.chat-ia-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #E2E8F0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-ia-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-mic-ia {
    background: #F8FAFC;
    color: #003366;
    border: 1px solid #E2E8F0;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-mic-ia.gravando {
    background: #EF4444;
    color: white;
    border-color: #EF4444;
    animation: pulse-red 1.5s infinite;
}

.btn-send-ia {
    background: #FF8C00;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================== */
/* RODAPÉ EMBUTIDO RESTAURADO                 */
/* ========================================== */
.footer-olx {
    background: #001f3f;
    color: #94A3B8;
    padding: 40px 20px;
    font-size: 14px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

/* Modal Perfil */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 16px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s;
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid var(--cinza-borda);
    position: relative;
}

.modal-body {
    padding: 30px;
}

.btn-fechar-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F1F5F9;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--cinza-texto);
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid var(--cinza-borda);
    text-align: center;
}

.portfolio-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes flutuar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes abrirChat {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================== */
/* 📰 ESTILOS DA SECÇÃO DE BLOG (INDEX)       */
/* ========================================== */
.seccao-blog {
    padding: 80px 20px;
    background-color: #F8FAFC;
}

.container-blog {
    max-width: 1200px;
    margin: 0 auto;
}

.cabecalho-blog {
    text-align: center;
    margin-bottom: 50px;
}

.cabecalho-blog h2 {
    font-size: 32px;
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

.cabecalho-blog p {
    color: #64748B;
    font-size: 16px;
}

.grid-artigos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cartao-artigo {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cartao-artigo:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.imagem-artigo {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.categoria-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--laranja);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.conteudo-artigo {
    padding: 25px;
}

.conteudo-artigo h3 {
    font-size: 18px;
    color: #1E293B;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.conteudo-artigo p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-ler-mais {
    color: var(--laranja);
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.btn-ler-mais:hover {
    color: #E67E00;
}

.centro-botao-blog {
    text-align: center;
    margin-top: 20px;
}

.btn-ver-todos {
    background: white;
    color: var(--azul-escuro);
    border: 2px solid var(--azul-escuro);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-ver-todos:hover {
    background: var(--azul-escuro);
    color: white;
}

/* ========================================== */
/* 📱 OTIMIZAÇÃO MOBILE MESTRE (PÚBLICO)      */
/* ========================================== */

@media (max-width: 900px) {

    /* Corpo base */
    body {
        height: auto !important;
        min-height: 100vh;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    /* Cabeçalho Público e Menus */
    .header-publico {
        flex-direction: column;
        padding: 15px 20px 20px;
        gap: 12px;
    }

    .menu-publico {
        display: flex !important;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-sou-profissional,
    .btn-cliente {
        width: 100%;
        justify-content: center;
    }

    /* Página do MAPA (A Gaveta Uber) */
    .mapa-container {
        flex-direction: column-reverse !important;
        height: auto;
    }

    .pagina-mapa .lista-profissionais {
        position: fixed !important;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        height: 65vh !important;
        max-height: 65vh !important;
        border-radius: 24px 24px 0 0 !important;
        z-index: 9999;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2) !important;
        transition: transform 0.3s ease-in-out;
        padding: 40px 15px 15px 15px !important;
        background: white;
        overflow-y: auto;
        transform: translateY(0);
        border-right: none !important;
    }

    /* O "Drag Handle" (Puxador Cinzento da Gaveta) */
    .pagina-mapa .lista-profissionais::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 6px;
        background: #CBD5E1;
        border-radius: 10px;
        cursor: grab;
    }

    /* Estado Recolhido da Gaveta (Mostra só o topo) */
    .gaveta-recolhida {
        transform: translateY(calc(100% - 60px)) !important;
    }

    .area-visual-mapa {
        height: 100vh !important;
        flex: none;
        width: 100%;
        border-bottom: none;
    }

    /* Área de Pesquisa flutuante */
    .caixa-pesquisa {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }

    .input-pesquisa-area {
        background: white;
        margin-bottom: 10px;
        border: 1px solid var(--cinza-borda);
        border-radius: 12px;
        width: 100%;
    }

    .barra-ferramentas {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding: 15px;
    }

    .barra-ferramentas>div {
        flex-direction: column;
        width: 100%;
        align-items: stretch !important;
    }

    .barra-ferramentas input[type="text"] {
        width: 100% !important;
        box-sizing: border-box;
    }

    .btn-procurar {
        padding: 15px;
        width: 100%;
    }

    /* Fix das Grelhas */
    .grid-artigos,
    .grid-features,
    .footer-grid,
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* 🔥 FIX MARIA: Chat Gigante no iOS */
    .chat-ia-window {
        width: 94vw;
        right: 3vw;
        bottom: 100px;
        z-index: 10000;
    }

    .chat-ia-body {
        height: 75vh !important;
        max-height: 75vh !important;
        min-height: 350px;
    }
}