/* ===== PÁGINA DE PARCEIROS ===== */
.parceiros-completo {
    padding: 140px 0 80px;
    background: #f5f5f5;
    min-height: 100vh;
}

.parceiros-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #2b3c6f;
}

.parceiros-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #2b3c6f;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #2b3c6f;
}

.btn-ver-todos:hover {
    background: #2b3c6f;
    color: white;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.parceiro-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.parceiro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.parceiro-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parceiro-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.parceiro-card:hover .parceiro-imagem img {
    transform: scale(1.1);
}

.parceiro-info {
    padding: 1.5rem;
    text-align: center;
}

.parceiro-info h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Paginação */
.paginacao {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-pagina {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    font-weight: 500;
}

.btn-pagina:hover:not(.disabled):not(.active) {
    background: #2b3c6f;
    color: white;
    border-color: #2b3c6f;
}

.btn-pagina.active {
    background: #2b3c6f;
    color: white;
    border-color: #2b3c6f;
}

.btn-pagina.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== MODAL DE ZOOM PARA PARCEIROS ===== */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    animation: zoomFade 0.3s;
}

@keyframes zoomFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.zoom-conteudo {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.zoom-conteudo img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    background: white;
    padding: 20px;
    object-fit: contain;
}

.zoom-conteudo h3 {
    color: white;
    margin-top: 20px;
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.zoom-fechar {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.zoom-fechar:hover {
    color: #2b3c6f;
    background: white;
    transform: rotate(90deg);
}