/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; }
body { background-color: #ffffff; overflow-x: hidden; }

/* NAVBAR */
.navbar {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    height: 100px; display: flex; align-items: center;
    background-color: rgba(209, 209, 209, 0.85); 
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-container { display: flex; width: 100%; max-width: 100%; margin: 0 auto; align-items: center; padding: 0 2% 0 3%; }

/* LOGO NO CANTO ESQUERDO */
.brand-group { display: flex; align-items: center; gap: 15px; flex: 1; justify-content: flex-start; }
.logo img { height: 55px; }
.brand-title { color: #1a4a7c; font-weight: 800; font-size: 1.4rem; line-height: 1.1; display: block; }
.brand-subtitle { color: #444; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; display: block; }

/* MENU CENTRALIZADO */
.nav-menu { flex: 2; display: flex; justify-content: center; }
.nav-menu ul { display: flex; list-style: none; gap: 40px; align-items: center; }

/* RECOLOCANDO A LINHA AZUL NO MENU PRINCIPAL */
.nav-menu ul li a { 
    text-decoration: none; color: #222; font-weight: 700; font-size: 12px; 
    text-transform: uppercase; position: relative; padding: 10px 0; 
}
.nav-menu ul li a::after { 
    content: ""; position: absolute; width: 0; height: 3px; bottom: 0; left: 50%; 
    background-color: #1a4a7c; transition: 0.3s ease-in-out; transform: translateX(-50%);
}
.nav-menu ul li a:hover::after { width: 100%; }

.navbar-spacer { flex: 1; }

/* DROPDOWN CENTRALIZADO ABAIXO DO ITEM */
.dropdown-container { position: relative; }
.mini-menu-vertical {
    visibility: hidden; opacity: 0; position: absolute; top: 45px; left: 50%;
    transform: translateX(-50%) translateY(10px); width: 220px;
    background-color: rgba(209, 209, 209, 0.95); backdrop-filter: blur(10px);
    border-radius: 4px; box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease; z-index: 1100;
}
.mini-menu-vertical.active { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }
.linha-azul-topo { width: 100%; height: 3px; background-color: #1a4a7c; }

/* ITENS DO DROPDOWN: COR PRETA + ZOOM */
.sub-items-box { display: flex; flex-direction: column; padding: 10px 0; }
.zoom-item { 
    color: #000 !important; /* LETRAS PRETAS */
    text-decoration: none !important; font-size: 10px !important; font-weight: 700; 
    text-align: center; padding: 12px; transition: transform 0.3s ease; display: block; 
}
.zoom-item:hover { transform: scale(1.1); color: #000 !important; }
.zoom-item::after { display: none !important; } /* SEM LINHA NO DROPDOWN */

/* BANNER */
.hero-section {
    width: 100%;
    margin-top: 100px; /* Mantém o espaço da sua navbar fixa */
    overflow: hidden;
    position: relative;
}

.hero-wrapper {
    width: 100%;
    height: 600px; /* Altura para destacar a arte e a escada */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Filtro escuro para o texto não sumir na imagem clara */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Ajuste o 0.3 para mais ou menos escuro */
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .hero-wrapper {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* SEÇÃO INSTITUCIONAL VERTICAL */
.section-about-boutique {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.container-boutique-vertical {
    max-width: 1000px; /* Largura ideal para leitura vertical */
    width: 100%;
}

/* HEADER DO TOPO */
.about-header-top {
    text-align: center;
    margin-bottom: 50px;
}

.title-main-dark {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a4a7c;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.subtitle-innovation {
    font-size: 1.8rem;
    font-weight: 300;
    color: #666;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: #1a4a7c;
    margin: 25px auto 0;
}

/* IMAGEM CENTRAL COM ZOOM */
.about-image-full {
    margin-bottom: 60px;
}

.image-wrapper-sede {
    width: 100%;
    height: 450px; /* Altura fixa para manter elegância */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-sede {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    display: block;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); /* Zoom ultra suave */
}

/* Efeito de Zoom no Mouse */
.image-wrapper-sede:hover .img-sede {
    transform: scale(1.1);
}

/* TEXTO ABAIXO DA IMAGEM */
.about-content-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-highlight-boutique {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.text-columns-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.text-columns-group p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
}

.text-columns-group strong {
    color: #1a4a7c;
}

/* RESPONSIVIDADE */
@media (max-width: 850px) {
    .title-main-dark { font-size: 2rem; }
    .subtitle-innovation { font-size: 1.4rem; }
    .image-wrapper-sede { height: 300px; }
    .text-columns-group { grid-template-columns: 1fr; gap: 20px; }
    .text-highlight-boutique { font-size: 1.2rem; }
}

/* SEÇÃO VÍDEO E TEXTO */
.video-methodology-section {
    padding: 140px 8%;
    background-color: #050505; /* Fundo mais escuro para as luzes brilharem mais */
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* LUZES NOS CANTOS - MAIS APARENTES */
.bg-glow-corner {
    position: absolute;
    width: 45vw;
    height: 45vw;
    /* Aumentado o alpha (0.4) e o brilho para ficar bem visível */
    background: radial-gradient(circle, rgba(26, 74, 124, 0.4) 0%, transparent 75%);
    filter: blur(60px);
    z-index: 1;
}
.top-left-glow { 
    top: -15%; 
    left: -15%; 
}
.bottom-right-glow { 
    bottom: -15%; 
    right: -15%; 
}

.methodology-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* BOX DO VÍDEO COM ZOOM */
.methodology-video-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(26, 74, 124, 0.3); /* Glow sutil em volta do vídeo */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.methodology-video-box:hover {
    transform: scale(1.05); /* Zoom suave */
    box-shadow: 0 0 60px rgba(26, 74, 124, 0.5);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* BOX DE TEXTO */
.methodology-text-box {
    color: #ffffff;
}

.methodology-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.methodology-title span {
    font-weight: 900;
    color: #1a4a7c;
    text-transform: uppercase;
}

.methodology-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 35px;
    font-weight: 400;
}

.methodology-accent {
    width: 80px;
    height: 4px;
    background-color: #1a4a7c;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .methodology-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .methodology-accent { margin: 0 auto; }
    .methodology-title { font-size: 2rem; }
}

/* SEÇÃO MISSÃO VISÃO VALORES */
.section-mvv {
    padding: 100px 8%;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}

.mvv-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    gap: 30px;
    width: 100%;
}

/* CARDS INDIVIDUAIS */
.mvv-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* EFEITO DE HOVER NOS CARDS */
.mvv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(26, 74, 124, 0.15);
    border-color: #1a4a7c;
}

.mvv-icon {
    font-size: 2.5rem;
    color: #1a4a7c;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.2);
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mvv-line {
    width: 40px;
    height: 3px;
    background-color: #1a4a7c;
    margin-bottom: 25px;
}

.mvv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* ESTILO DA LISTA DE VALORES */
.valores-list {
    list-style: none;
    text-align: left;
    width: 100%;
}

.valores-list li {
    font-size: 0.9rem;
    color: #444;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.valores-list li i {
    color: #1a4a7c;
    font-size: 0.8rem;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .mvv-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mvv-container {
        grid-template-columns: 1fr;
    }
    .section-mvv {
        padding: 60px 5%;
    }
}

/* SEÇÃO EQUIPE - VERSÃO REFINADA */
.section-team {
    padding: 80px 8%;
    background-color: #fcfcfc;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #1a4a7c;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.team-title {
    font-size: 2rem;
    font-weight: 300;
    color: #333;
}

.team-title span {
    font-weight: 800;
    color: #1a4a7c;
}

.team-divider {
    width: 40px;
    height: 3px;
    background-color: #1a4a7c;
    margin: 15px auto;
}

/* GRID MAIS ESPAÇADO */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD COM FOTO REDUZIDA */
.team-member-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.image-wrapper {
    width: 180px; /* Tamanho controlado da foto */
    height: 180px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%; /* Fotos circulares são mais elegantes e ocupam menos espaço visual */
    padding: 8px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ÍCONE DE EMAIL FLUTUANTE */
.mail-icon-float {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #1a4a7c;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.team-member-box:hover .image-wrapper {
    border-color: #1a4a7c;
    transform: translateY(-5px);
}

.team-member-box:hover .mail-icon-float {
    opacity: 1;
    transform: scale(1);
}

.member-info h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 5px;
    font-weight: 700;
}

.member-role {
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
    display: block;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .image-wrapper { width: 140px; height: 140px; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* FOOTER */
.main-footer { background-color: #111; color: #fff; padding: 60px 10%; text-align: center; }
.footer-logo { height: 65px; margin-bottom: 25px; }
.footer-social { display: flex; justify-content: center; gap: 30px; margin-top: 30px; }
.social-link { font-size: 2.5rem; color: #fff; text-decoration: none; transition: all 0.3s ease; }
.social-link.insta:hover { color: #E4405F; transform: scale(1.2); }
.social-link.linkedin:hover { color: #0077B5; transform: scale(1.2); }

/* WHATSAPP */
.whatsapp-btn { 
    position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; 
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; 
    align-items: center; font-size: 32px; z-index: 2000; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp-btn:hover { transform: scale(1.2) rotate(10deg); background-color: #128c7e; }

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .navbar { height: auto; padding: 20px 0; position: relative; }
    .navbar-container { flex-direction: column; gap: 20px; padding: 0 5%; }
    .brand-group { text-align: center; justify-content: center; }
    .nav-menu { width: 100%; }
    .nav-menu ul { flex-direction: column; gap: 15px; width: 100%; }
    .navbar-spacer { display: none; }
    .hero-section { margin-top: 0; }
    .form-grid { grid-template-columns: 1fr; }
}



/* --- RESPONSIVIDADE COM BARRA HOME ATIVA --- */

@media (max-width: 600px) {
    /* 1. MANTÉM SUA BARRA HOME (SEM MEXER EM NADA) */
    .navbar { height: auto !important; padding: 10px 0 !important; position: relative !important;background-color: #b6b6b618 !important; overflow: visible !important; }
    .navbar-container { flex-direction: column !important; }
    .nav-menu { width: 100% !important; display: block !important; overflow: visible !important; }
    .nav-menu ul { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; overflow-x: auto !important; gap: 25px !important; width: 100% !important; padding: 15px 10px !important; justify-content: flex-start !important; }
    .nav-menu ul li { flex: 0 0 auto !important; white-space: nowrap !important; }

    /* 2. RESOLVENDO O TEXTO COMENDO (ESTILO APPLE) */
    html, body {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important; /* ISSO MATA A LINHA BRANCA */
    }

    /* Container Principal - Ele trava a largura e centraliza tudo */
    .wrapper-portal, .container-central, .caixa-item {
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important; /* Padding não empurra a largura */
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Ajuste do Texto para ele "respirar" sem quebrar ou sumir */
    h1, h2, .portal-header h1 {
        font-size: 1.6rem !important; /* Tamanho fixo seguro para iPhone SE/12 */
        line-height: 1.2 !important;
        white-space: normal !important; /* Permite quebrar linha se a palavra for muito grande */
        overflow-wrap: break-word !important; /* Quebra no meio da palavra se precisar */
        text-align: center !important;
    }

    p, span, .zoom-item {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        overflow-wrap: break-word !important;
    }

    /* 3. DROPDOWN (SUBMENUS) - Ajuste de visualização */
    .mini-menu-vertical {
        display: none !important;
        position: fixed !important;
        top: 140px !important;
        left: 5% !important;
        right: 5% !important;
        width: 90% !important; /* Ocupa a largura da tela com margem */
        transform: none !important;
        background-color: rgba(255, 255, 255, 0.959) !important;
        z-index: 99999 !important;
        border-radius: 12px !important;
    }

    .mini-menu-vertical.active { display: block !important; }

    /* 4. RODAPÉ E CONTATOS (FOTO QUE VOCÊ MANDOU) */
    .contato-info, footer {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important; /* Empilha ícone e texto */
        align-items: center !important;
       
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    /* 1. SUA BARRA PRINCIPAL: Mantida exatamente como você montou */
    .navbar { 
        height: auto !important; 
        padding: 10px 0 !important; 
        position: relative !important; 
        background-color: #b6b6b646 !important; /* Corrigido apenas o erro de sintaxe 'color' */
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important; 
    }
    
    .navbar-container { 
        flex-direction: column !important; 
        gap: 10px !important; 
    }

    .nav-menu { 
        width: 100% !important; 
        display: block !important; 
        overflow: visible !important;
    }
    
    .nav-menu ul { 
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important; 
        gap: 25px !important; 
        width: 100% !important; 
        padding: 15px 10px !important;
        justify-content: flex-start !important;
        background: transparent !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .nav-menu ul::-webkit-scrollbar { display: none !important; }

    .nav-menu ul li { 
        flex: 0 0 auto !important; 
        white-space: nowrap !important; 
    }

    /* 2. SEUS SUBMENUS: Dropdown Flutuante */
    .mini-menu-vertical {
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important; 
        top: 120px !important; 
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 250px !important;
        background-color: rgba(255, 255, 255, 0.575) !important;
        border-radius: 8px !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
        z-index: 999999 !important;
    }

    .mini-menu-vertical.active {
        display: block !important;
    }

    /* 3. COMPLEMENTO PARA NÃO CORTAR TEXTO E EVITAR LINHA BRANCA NESSA TELA */
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .wrapper-portal {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 120px 20px 50px 20px; /* Padding lateral para o texto não encostar na borda */
        box-sizing: border-box;
    }

    .portal-header h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
        text-align: center;
    }

    /* Grid em 2 colunas para tablet, para o texto ter espaço */
    .grid-caixas-ouvidoria {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }

    .aba-consulta-longa {
        grid-column: span 2;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    /* 1. SUA BARRA PRINCIPAL: Mantida fiel ao seu modelo */
    .navbar { 
        height: auto !important; 
        padding: 10px 0 !important; 
        position: relative !important; 
        background-color: #b6b6b646 !important; 
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important; 
    }
    
    .navbar-container { 
        flex-direction: column !important; 
        gap: 10px !important; 
    }

    .nav-menu { 
        width: 100% !important; 
        display: block !important; 
        overflow: visible !important;
    }
    
    .nav-menu ul { 
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important; 
        gap: 25px !important; 
        width: 100% !important; 
        padding: 15px 20px !important;
        justify-content: flex-start !important;
        background: transparent !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .nav-menu ul::-webkit-scrollbar { display: none !important; }

    .nav-menu ul li { 
        flex: 0 0 auto !important; 
        white-space: nowrap !important; 
    }

    /* 2. SEUS SUBMENUS: Dropdown Flutuante (Fixed) */
    .mini-menu-vertical {
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important; 
        top: 120px !important; 
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 280px !important; /* Ligeiramente maior para telas médias */
        background-color: rgba(255, 255, 255, 0.575) !important;
        border-radius: 8px !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
        z-index: 999999 !important;
    }

    .mini-menu-vertical.active {
        display: block !important;
    }

    /* 3. AJUSTES DE CONTEÚDO PARA NÃO CORTAR TEXTO */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .wrapper-portal {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 100px 40px 50px 40px; /* Mais respiro lateral */
        box-sizing: border-box;
    }

    .portal-header h1 {
        font-size: 2.2rem; /* Título maior para telas médias */
        max-width: 90%;
        margin: 0 auto 20px;
        text-align: center;
    }

    /* Grid em 3 colunas (Ideal para 769px a 992px) */
    .grid-caixas-ouvidoria {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        width: 100%;
    }

    /* A aba de consulta longa ocupa as 3 colunas embaixo para não esmagar o texto */
    .aba-consulta-longa {
        grid-column: span 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .caixa-item {
        padding: 25px;
    }
}
