@import url('theme-copa2026.css');

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f7fb;
}

.pesquisas-wrapper {
    width: 100%;
    max-width: 1280px;
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 16px;
    box-sizing: border-box;
}

.pesquisas-card {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,.98), #fbfdff);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 20px 40px rgba(1,29,63,.12);
    border-top: 6px solid #004A8D;
    box-sizing: border-box;
}

.pesquisas-card h1 {
    margin: 0;
    color: #004A8D;
    font-size: 1.45rem;
}

.pesquisas-card p {
    margin: 6px 0 18px;
    color: #60656c;
}

.pesquisas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pesquisa-link {
    text-decoration: none;
    color: #003b8f;
    border: 1px solid #d7e5f4;
    border-radius: 12px;
    background: #fff;
    padding: 18px;
    display: grid;
    gap: 8px;
    box-shadow: 0 10px 22px rgba(0,58,109,0.06);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.pesquisa-link:hover {
    transform: translateY(-2px);
    border-color: #bfd8f5;
    box-shadow: 0 14px 28px rgba(0,58,109,0.10);
}

.pesquisa-link strong {
    color: #004A8D;
}

@media (max-width: 800px) {
    .pesquisas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .pesquisas-wrapper {
        min-height: auto;
        padding: 14px;
    }

    .pesquisas-card {
        padding: 18px;
    }

    .pesquisas-grid {
        grid-template-columns: 1fr;
    }
}
