/* --- 1. CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
:root {
    --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --color-miury: #087c87;
    --color-miury-light: #0ba7b4;
    --color-yellow: #f5cc6b;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-bg-gray: #f8f9fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.5;
    background-color: #ffffff;
    color: var(--color-text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* --- 2. CABEÇALHO (HEADER) --- */
.primary-container {
    height: 40px;
    background: linear-gradient(180deg, var(--color-miury-light), var(--color-miury));
    color: white;
}

.primary-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.inf2 a {
    display: flex;
    align-items: center;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.div-iconzap i {
    margin-right: 8px;
}


/* --- AJUSTE BARRA SUPERIOR (WHATSAPP + BOTÃO) --- */

.inf2 {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaçamento entre o link do WhatsApp e o botão */
}

.btn-top-faca {
    background-color: white; /* Fundo branco conforme o original */
    color: #087c87;          /* Cor turquesa para o texto */
    border: none;
    padding: 4px 15px;       /* Ajuste de altura e largura */
    border-radius: 5px;      /* Bordas arredondadas */
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-top-faca:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Garante que o ícone do zap não quebre o alinhamento */
.div-iconzap {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}
/* Barra Principal */
.second-container {
    background-color: white;
    padding: 0; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

.second-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.div-imagelogo img {
    height: 55px;
    width: auto;
}

.inf-content {
    display: flex;
    gap: 35px; /* Espaçamento maior conforme o original */
    align-items: center;
}

.inf-content a {
    color: #0ba7b4; /* Cor turquesa exata do original */
    font-size: 14px;
    font-weight: 500; /* Peso da fonte ajustado */
    transition: color 0.3s;
}

.inf-content a:hover {
    color: #087c87; /* Tom levemente mais escuro ao passar o mouse */
}

/* Garante que a seta do dropdown também siga a cor */
.inf-content a i {
    color: #0ba7b4;
}

.inf-content a:hover {
    color: var(--color-miury);
}

/* --- 3. MEGA MENU DROPDOWN (CORREÇÃO PARA O PRINT 2) --- */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none; /* Escondido por padrão */
    position: absolute;
    top: 100%; /* Aparece logo abaixo da barra branca */
    left: 50%;
    transform: translateX(-35%); /* Ajusta centralização */
    background-color: #ffffff;
    width: 800px; /* Largura fixa para caber as 3 colunas */
    padding: 40px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    border-top: 4px solid var(--color-miury);
}

.dropdown:hover .dropdown-content {
    display: block; /* Mostra no hover */
}

/* Estrutura de Colunas dentro do Menu */
.produtos {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Espaço entre a linha 1 e linha 2 */
}

.p-produto, .s-produto {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Divide em 3 colunas iguais */
    gap: 30px;
}

/* Estilo dos Títulos das Categorias */
.dropdown-content h5 {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: none;
    display: block;
}

/* Estilo dos Links das Categorias */
.dropdown-content a {
    display: block;
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 400;
    transition: all 0.2s;
    padding: 0;
}

.dropdown-content a:hover {
    color: var(--color-miury);
    transform: translateX(5px);
}

/* Botão de destaque no Header */
button.empr {
    background-color: var(--color-yellow);
    color: var(--color-miury);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

button.empr:hover {
    background-color: #f3c14d;
    transform: translateY(-2px);
}

/* --- 4. CARROSSEL DE BANNERS --- */
.carrousel-container {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.carrousel-container .p-carousel-content {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carrousel-container .p-carousel-content::-webkit-scrollbar {
    display: none;
}

.carrousel-container .p-carousel-item {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- 5. CARROSSEL DE PRODUTOS --- */
#produtos.primary-container {
    background: linear-gradient(180deg, var(--color-miury-light), var(--color-miury));
    height: auto;
    padding: 20px;
    margin-top: 0;
    text-align: center;
}

#pn_id_4.p-carousel-content {
    padding: 20px 20px 0 20px;
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

#pn_id_4.p-carousel-content::-webkit-scrollbar {
    display: none;
}

.p-card {
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.p-card:hover {
    transform: translateY(-5px);
}

.p-card-header img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.p-card-body {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title-card {
    font-weight: 700;
    color: #444;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.button button {
    background-color: var(--color-miury);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.button button:hover {
    background-color: var(--color-miury-light);
}

/* --- 6. PÁGINA COMO FUNCIONA --- */
.title-bar-full {
    background-color: var(--color-miury-light);
    width: 100%;
    padding: 20px 0;
    margin-bottom: 50px;
}

.title-bar-full p {
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.duvidas-container {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.card-duvida {
    display: flex;
    align-items: center;
    gap: 50px;
}

.card-duvida .img-div {
    flex: 0 0 400px;
}

.card-duvida .img-div img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-duvida .description h3 {
    color: #444;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-duvida .description p {
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

/* --- 7. PÁGINA CONTATOS --- */
.contatos-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
}

.contato-item i {
    font-size: 3.5rem;
    color: var(--color-miury);
    margin-bottom: 15px;
}

.contato-item .titulo {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contato-item .link {
    color: var(--color-miury);
    font-size: 16px;
    font-weight: 600;
}

/* --- 8. RODAPÉ (FOOTER) --- */
app-rodape {
    display: block;
    margin-top: 0px; /* Remove o espaço de fora entre o carrossel e o rodapé */
}

app-rodape .primary-container {
    background: linear-gradient(180deg, #0ba4b1, #087c87);
    height: auto;
    padding: 30px 0 60px 0; /* Diminui o espaço no topo (30px) e mantém no fundo */
    color: white;
}

app-rodape .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Ajuste para alinhar todas as colunas em uma linha só */
.contatos {
    flex: 0 0 350px; /* Largura fixa para a coluna de contatos */
}

.bigbox {
    flex: 1;
    display: flex;
    flex-wrap: nowrap; /* Impede que as colunas pulem para baixo */
    gap: 20px;
    justify-content: space-between;
}

.primary-box, .second-box, .three-box {
    flex: 1;
    min-width: 0; /* Permite que as colunas encolham se necessário */
}

/* Garante que no celular elas voltem a empilhar */
@media (max-width: 820px) {
    .bigbox {
        flex-wrap: wrap;
    }
    .contatos {
        flex: 1 1 100%;
    }
}

.contate-nos p, .title-produtos p, .title-suport p, .title-franqueado p {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
    display: inline-block;
}

.inf, .inf-1 a, .inf-2 a, .inf-3 a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 12px;
}

.inf-1 a:hover, .inf-2 a:hover, .inf-3 a:hover {
    color: var(--color-yellow);
    text-decoration: underline;
}

.sociais {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.sociais i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s;
}

.sociais i:hover {
    color: var(--color-yellow);
    transform: scale(1.2);
}

.footer-legal {
    background-color: #065e68;
    padding: 40px 0;
    color: rgba(255,255,255,0.8);
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
}

.three-container {
    background-color: #0ba7b4; /* Cor Turquesa idêntica à foto */
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.three-container a {
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.three-container a:hover {
    opacity: 0.7;
}

/* Garante que o copyright tenha o fundo azul mais escuro ou degradê */
.four-container {
    background: linear-gradient(180deg, #0ba7b4, #087c87);
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 13px;
}

.three-container a {
    color: white;
    font-size: 11px;
    font-weight: 700;
    margin: 0 15px;
    text-transform: uppercase;
}

.four-container {
    background: var(--color-miury);
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 13px;
}

/* --- 9. RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .dropdown-content {
        width: 90vw;
        left: 5%;
        transform: none;
    }
}

@media (max-width: 820px) {
    .inf-content, .dropdown {
        display: none; /* Esconde menu desktop no mobile */
    }
    
    .menu {
        display: block;
        background: none;
        font-size: 28px;
        color: var(--color-miury);
        cursor: pointer;
    }

    .card-duvida {
        flex-direction: column;
        text-align: center;
    }

    .card-duvida .img-div {
        flex: none;
        width: 100%;
    }
    
    .second-container .container {
        padding: 10px 20px;
    }
}

/* --- ESTILOS DA PÁGINA DE PRODUTO (CONSIGNADO) --- */

.three-container-aviso {
    background-color: #0d8f9b;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.product-hero {
    background-color: #fff;
    padding: 60px 0;
}

.product-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

.breadcrumbs {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.breadcrumbs span { color: #555; }
.breadcrumbs strong { color: var(--color-miury); }

.hero-content h1 {
    font-size: 3rem;
    color: var(--color-miury);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Saiba Mais */
.saiba-mais {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.saiba-mais h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    color: #888;
    margin-bottom: 50px;
}

.info-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    flex: 1;
    text-align: left;
}

.info-box h3 {
    color: var(--color-miury);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vertical-divider {
    width: 2px;
    background-color: #ddd;
}

/* Vantagens */
.vantagens {
    padding: 80px 0;
    text-align: center;
}

.vantagens h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.v-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.v-card:hover { transform: translateY(-5px); }

.v-card h4 {
    color: var(--color-miury);
    margin-bottom: 15px;
    font-size: 15px;
}

.v-card p {
    font-size: 13px;
    color: #777;
}

.btn-cta {
    background-color: var(--color-miury);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
}

.btn-cta:hover { background-color: var(--color-miury-light); }

/* Responsividade */
@media (max-width: 820px) {
    .product-hero .container { flex-direction: column; text-align: center; }
    .hero-image { margin-top: 40px; }
    .hero-content h1 { font-size: 2.2rem; }
    .info-grid { flex-direction: column; }
    .vertical-divider { display: none; }
}

/* Estilo dos Botões de Navegação do Carrossel */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    color: var(--color-miury);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.nav-btn:hover {
    background-color: var(--color-bg-gray);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev { left: -10px; }
.nav-btn.next { right: -10px; }

.nav-btn svg, .nav-btn i {
    width: 18px;
    height: 18px;
}

/* Esconde os botões em telas muito pequenas se desejar */
@media (max-width: 768px) {
    .nav-btn { display: none; }
}

/* --- CORREÇÃO DE ALINHAMENTO PÁGINA EMPRÉSTIMOS --- */
/* --- AJUSTE FINO PÁGINA EMPRÉSTIMOS --- */

.main-form-page {
    background: linear-gradient(180deg, #0ba7b4, #087c87);
    padding: 20px 0 60px 0; /* Diminuído o topo para 20px */
    min-height: 500px;
}

.main-form-page .container {
    max-width: 1100px; /* Um pouco mais compacto para centralizar melhor */
    margin: 0 auto;
    padding: 0 15px;
}

.inicial-container {
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 15px; /* Fonte reduzida */
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.flex-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Espaço entre texto e card */
}

/* Texto da Esquerda (Diminuído) */
.form-footer-text {
    flex: 1;
    color: white;
    text-align: left;
    max-width: 450px;
}

.form-footer-text h3 {
    font-size: 38px; /* Reduzido de 48px */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.form-footer-text p {
    font-size: 15px; /* Reduzido de 20px */
    font-weight: 500;
    opacity: 0.85;
}

/* Card do Formulário */
.form-container {
    flex: 0 0 460px; /* Card ligeiramente mais estreito */
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.form-text {
    margin-bottom: 20px;
}

.form-text h6 {
    font-size: 15px; /* Diminuído */
    font-weight: 700;
    color: #444; /* Tom do original */
    margin-bottom: 4px;
}

.form-text p {
    font-size: 12px; /* Diminuído */
    color: #888; /* Cinza suave */
}

/* Estilo dos Inputs e Selects (Cores originais) */
.primary-box-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.input-group { flex: 1; }

.input-group input, select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dcdcdc; /* Borda mais clara */
    border-radius: 6px;
    font-size: 13px; /* Fonte menor */
    color: #666; /* Cor do texto interna igual original */
    outline: none;
    background-color: #fff;
}

.input-group input::placeholder {
    color: #999;
}

.select-full { margin-bottom: 12px; }

/* Slider de Valor (Ocupando todo o espaço) */
.slider-container {
    width: 100%; /* Força largura total */
    margin-top: 15px;
    text-align: left;
}

.slider-container label { 
    font-size: 12px; 
    color: #666; 
    display: block; 
    margin-bottom: 10px;
}

.slider-container input[type="range"] {
    width: 100%; /* Slider esticado */
    display: block;
    cursor: pointer;
}

.valor-display { 
    color: #087c87; 
    font-weight: 800; 
    font-size: 16px; 
    margin-top: 10px;
    display: block;
    width: 100%;
}

/* Botão Enviar */
.button-enviar {
    width: 100%;
    background-color: #0ba7b4;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.button-enviar:hover {
    background-color: #087c87;
}

/* Mobile */
@media (max-width: 900px) {
    .flex-layout {
        flex-direction: column;
        gap: 30px;
    }
    .form-footer-text { text-align: center; }
    .form-container { width: 100%; flex: none; }
}

/* --- NOVA ESTRUTURA PÁGINA PARCEIRO --- */

.parceiro-intro-banner {
    background-color: #ffffff;
    padding: 60px 0 40px 0;
    text-align: center; /* Centraliza o título e os parágrafos */
}

.parceiro-intro-banner .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Garante que os parágrafos fiquem no meio se tiverem largura máxima */
}

.parceiro-intro-banner p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 850px; /* Limita a largura para o texto não ficar muito "esticado" e cansativo */
}



.parceiro-intro-banner h1 {
    color: #087c87;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.parceiro-intro-banner p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.parceiro-bg-section {
    background: linear-gradient(180deg, #0ba7b4, #087c87);
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.parceiro-bg-section .container {
    max-width: 1100px; /* Mesma largura do banner para alinhar verticalmente */
    margin: 0 auto;
}

.parceiro-flex-container {
    display: flex;
    justify-content: center; /* Centraliza o conjunto Esquerda+Direita */
    align-items: center;    /* Alinha o texto verticalmente com o meio do card */
    gap: 80px;              /* Espaço generoso entre texto e card */
}

/* Coluna Docs (Esquerda) */
.parceiro-docs-col {
    flex: 1;
    color: white;
    max-width: 450px; /* Impede que o texto fique largo demais */
}

.parceiro-instrucao {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.parceiro-docs-col h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.parceiro-lista-docs {
    list-style: none;
    padding: 0;
}

.parceiro-lista-docs li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.95);
}

.parceiro-lista-docs li i {
    color: #f5cc6b;
    font-size: 16px;
}

/* Coluna Form (Direita) */
.parceiro-form-col {
    flex: 0 0 480px; /* Largura fixa do card */
}

.parceiro-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.parceiro-card h6 {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #444;
    margin-bottom: 25px;
}

.parceiro-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.parceiro-row input, .parceiro-row select, .parceiro-full input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    outline: none;
}

.parceiro-full { width: 100%; margin-bottom: 12px; }

/* Botão Enviar */
.parceiro-btn {
    width: 100%;
    background-color: #0ba7b4;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.parceiro-btn:hover {
    background-color: #087c87;
}

/* Responsividade */
@media (max-width: 992px) {
    .parceiro-flex-container {
        flex-direction: column;
        gap: 40px;
    }
    .parceiro-docs-col {
        text-align: center;
        max-width: 100%;
    }
    .parceiro-lista-docs li {
        justify-content: center;
    }
    .parceiro-form-col {
        width: 100%;
        flex: none;
    }
}