@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8f8f8;
    color: #0f3d22;
}

/* WRAPPER */
.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* HEADER */
.pesq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    width: 180px;
}

.btn-close {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
}

/* CARD PRINCIPAL */
.pesq-container {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.pesq-title {
    background: #0f3d22;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-size: 20px;
    margin-bottom: 20px;
}

.pesq-img {
    width: 100%;
    border-radius: 10px;
    margin: 15px 0 25px 0;
}

.pesq-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* REFERÊNCIA */
.pesq-ref {
    background: #e9e9e9;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 10px;
}

/* APOIO */
.apoio-container {
    margin-top: 35px;
    text-align: center;
}

.apoio-titulo {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #0f3d22;
}

.apoio-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.apoio-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* FOOTER */
.pesq-footer {
    margin-top: 40px;
    background: #0f3d22;
    color: #fff;
    padding: 18px;
    text-align: center;
    font-size: 14px;
    position: relative;
}

.footer-shape {
    width: 40px;
    height: 35px;
    background: #92be22;
    position: absolute;
    right: 0;
    top: 0;
}

/* ANIMAÇÃO DE SAÍDA */
#transition-slide {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #0f3d22;
    z-index: 9999;
}

.slide-out {
    animation: slideReturn 0.6s ease forwards;
}

@keyframes slideReturn {
    0% { left: 100%; }
    100% { left: 0%; }
}
