:root {
    /* Identidade Visual EDW Cred */
    --primary: #111111;       
    --secondary: #333333;     
    --accent: #666666;        
    --light: #f4f4f4;         
    --white: #ffffff;
    --green: #2e7d32;         
    --blue-siape: #1565c0;    
    --blue-light: #e3f2fd;    
    --magenta: #d81b60;       
    --magenta-light: #fce4ec; 
    --border: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; -webkit-tap-highlight-color: transparent; }

body {
    color: var(--secondary);
    line-height: 1.6;
    background: var(--white);
    padding-top: 90px;
}

/* --- HEADER & NAV --- */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    z-index: 1001;
}
.logo img { height: 50px; margin-right: 12px; }
.logo span { font-weight: 300; color: var(--accent); margin-left: 5px; font-size: 16px; text-transform: uppercase; letter-spacing: 2px; }

.nav-menu { display: flex; list-style: none; gap: 35px; }
.nav-link {
    text-decoration: none; color: var(--secondary); font-weight: 500; font-size: 16px;
    cursor: pointer; transition: 0.3s; position: relative; padding-bottom: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); font-weight: 700; }
.nav-link.active::after {
    content: ''; position: absolute; width: 100%; height: 3px;
    bottom: 0; left: 0; background-color: var(--primary);
}

.mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary); z-index: 1001; }

.btn {
    padding: 14px 30px; background-color: var(--primary); color: var(--white);
    border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s;
    border: 1px solid var(--primary); cursor: pointer; display: inline-flex;
    align-items: center; gap: 10px; font-size: 1rem; justify-content: center; text-align: center;
}
.btn:hover { background-color: #333; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.header-btn { margin-left: 20px; }

/* --- LAYOUT GERAL --- */
section { padding: 80px 0; border-bottom: 1px solid #f0f0f0; }
.hidden { display: none !important; }
.fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; font-weight: 800; line-height: 1.2; }
.section-title p { max-width: 700px; margin: 0 auto; color: var(--accent); font-size: 1.1rem; }

/* --- HERO SECTION --- */
.hero { background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%); padding: 80px 0; overflow: hidden; position: relative; }
.hero::before {
    content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05) 0%, rgba(13, 71, 161, 0.1) 100%);
    z-index: 0; pointer-events: none;
}
.hero-content { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.2rem; color: var(--primary); line-height: 1.1; margin-bottom: 25px; font-weight: 800; }
.hero-text p { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.8; max-width: 500px; }
.hero-image { flex: 1; text-align: center; position: relative; }
.hero-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); transform: perspective(1000px) rotateY(-5deg); transition: 0.5s; }
.hero-image img:hover { transform: perspective(1000px) rotateY(0deg); }

/* --- GRIDS --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Grid para Imagem ao lado do texto */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-card {
    background: var(--white); padding: 40px 30px; border-radius: 12px;
    text-align: center; border: 1px solid #eee; transition: 0.3s;
    display: flex; flex-direction: column; justify-content: space-between; height: 100%;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--primary); }
.feature-icon { font-size: 3rem; color: var(--primary); margin-bottom: 25px; }
.feature-card h3 { margin-bottom: 15px; font-size: 1.4rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.step-card { text-align: center; padding: 30px 20px; background: #fff; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; }
.step-num {
    width: 50px; height: 50px; background: var(--primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-weight: bold; font-size: 1.2rem;
}

/* --- INSS --- */
.inss-detail-card {
    background: white; border-radius: 12px; padding: 35px;
    border-left: 5px solid var(--magenta); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px; transition: 0.3s;
}
.inss-detail-card:hover { transform: translateX(5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.inss-detail-card h3 { color: var(--secondary); font-size: 1.5rem; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.inss-detail-card i { color: var(--magenta); font-size: 1.8rem; }
.inss-detail-card p { color: #555; margin-bottom: 15px; line-height: 1.7; }
.inss-detail-card ul { list-style: none; margin-bottom: 20px; }
.inss-detail-card ul li { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; font-weight: 500; color: #444; }
.inss-detail-card ul li i { font-size: 1rem; color: var(--green); }

/* Comparativo Cartões INSS */
.cards-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.card-type { background: #fafafa; border: 1px solid #eee; border-radius: 10px; padding: 25px; text-align: center; }
.card-type h4 { color: var(--magenta); margin-bottom: 15px; font-size: 1.2rem; }
.card-type ul { text-align: left; list-style: none; }
.card-type li { margin-bottom: 8px; font-size: 0.9rem; border-bottom: 1px solid #f0f0f0; padding-bottom: 5px; }

/* Box BPC/LOAS */
.bpc-box {
    background: linear-gradient(135deg, #fce4ec 0%, #fff 100%);
    border: 1px solid #f8bbd0; border-radius: 15px; padding: 30px;
    display: flex; align-items: center; gap: 30px; margin-top: 40px;
}
.bpc-icon { font-size: 3rem; color: var(--magenta); }

/* Alerta Bloqueio */
.alert-box {
    background: #ffebee; border: 1px solid #ef9a9a; border-radius: 10px;
    padding: 25px; margin-bottom: 40px;
}

/* Tabela Salarial 2026 */
.salary-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.95rem; }
.salary-table th { background: var(--magenta-light); color: #880e4f; padding: 15px; text-align: left; }
.salary-table td { padding: 15px; border-bottom: 1px solid #eee; }
.salary-table tr:last-child td { border-bottom: none; }
.highlight-col { background: #ad1457; color: white; font-weight: bold; }


/* --- SIAPE --- */
.siape-highlight { 
    background: linear-gradient(to right, #e3f2fd, #ffffff);
    border-left: 6px solid var(--blue-siape); 
    padding: 30px; 
    border-radius: 12px; 
    margin-bottom: 50px; 
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.1);
}
.siape-highlight h3 { color: #0d47a1; margin-bottom: 20px; font-size: 1.4rem; display: flex; align-items: center; gap: 10px; }
.siape-highlight ul li { margin-bottom: 12px; font-size: 1.05rem; color: #444; }

/* SIAPE STATS */
.siape-stats-container { display: flex; justify-content: space-around; margin: 40px 0; flex-wrap: wrap; gap: 20px; }
.siape-stat { text-align: center; padding: 20px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); min-width: 180px; }
.siape-stat-number { font-size: 2.5rem; font-weight: 800; color: var(--blue-siape); margin-bottom: 10px; }
.siape-stat-label { font-size: 0.9rem; color: #666; font-weight: 600; }

.siape-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
.siape-benefit-card {
    background: white; border-radius: 12px; padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #eaeaea;
}
.siape-benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.siape-benefit-icon { font-size: 2.5rem; color: var(--blue-siape); margin-bottom: 20px; }
.siape-benefit-card h3 { color: #0d47a1; margin-bottom: 15px; font-size: 1.3rem; }

.siape-comparison { background: #f8f9fa; border-radius: 15px; padding: 40px; margin-top: 50px; }
.siape-comparison h3 { text-align: center; margin-bottom: 30px; color: #0d47a1; }
.comparison-table {
    width: 100%; border-collapse: collapse; background: white;
    border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.comparison-table th { background: var(--blue-siape); color: white; padding: 15px; text-align: left; }
.comparison-table td { padding: 15px; border-bottom: 1px solid #eee; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: #f8f9fa; }
.highlight-siape { background: var(--blue-light) !important; font-weight: 600; }

/* SIAPE STEPPER */
#siape .info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#siape .info-list { width: 100%; max-width: 1100px; }
#siape .info-grid > div:last-child { display: none; }

.siape-process-steps { 
    display: flex; justify-content: space-between; margin-top: 60px; position: relative; gap: 20px; 
}
.siape-process-steps::before {
    content: ''; position: absolute; top: 45px; left: 50px; right: 50px;
    height: 6px; background: #e0e0e0; z-index: 1;
}
.siape-step { text-align: center; position: relative; z-index: 2; flex: 1; min-width: auto; }

.siape-step-number {
    width: 90px; height: 90px; background: var(--white); color: var(--blue-siape);
    border: 5px solid var(--blue-siape); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-size: 2rem; font-weight: 800;
    box-shadow: 0 0 0 5px white; transition: 0.3s;
}
.siape-step:hover .siape-step-number { background: var(--blue-siape); color: white; transform: scale(1.1); }
.siape-step h4 { margin-bottom: 10px; color: #0d47a1; font-size: 1.5rem; font-weight: 700; }
.siape-step p { font-size: 1.1rem; color: #666; padding: 0 10px; line-height: 1.5; }

#siape .info-list .btn-outline {
    margin-top: 50px !important;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Gráficos de Taxas */
.rate-bar-container { margin-bottom: 20px; }
.rate-bar-label { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.rate-bar-bg { background: #eee; height: 20px; border-radius: 10px; overflow: hidden; }
.rate-bar-fill { 
    height: 100%; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    padding-right: 10px; 
    color: white; 
    font-size: 0.8rem; 
    font-weight: bold; 
    white-space: nowrap; 
}

/* Novas regras FGTS */
.new-rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.rule-card { background: #fff; padding: 20px; border-radius: 10px; border: 1px solid #f0f0f0; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.rule-icon { color: var(--magenta); font-size: 1.5rem; margin-bottom: 10px; }


/* --- SIMULADOR CORRIGIDO (CSS FIX) --- */
.simulator-wrapper { background: var(--white); border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); display: flex; overflow: hidden; border: 1px solid #eee; max-width: 1100px; margin: 0 auto; }
.sim-left { flex: 1.5; padding: 50px; }

/* CORREÇÃO DO BOTÃO: sim-right */
.sim-right {
    flex: 1; background: var(--primary); color: var(--white);
    padding: 50px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; position: relative;
}
.sim-right::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
    /* Adicionado para permitir o clique através do fundo */
    pointer-events: none;
    z-index: 0;
}
/* Força o conteúdo a ficar acima do fundo */
.sim-right > * {
    position: relative;
    z-index: 2;
}


.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 700; color: var(--primary); font-size: 1rem; }
.form-group input, .form-group select {
    width: 100%; padding: 15px; border: 2px solid #eee;
    border-radius: 8px; background: #fafafa; font-size: 16px; transition: 0.3s;
}
.result-details { background: #f8f9fa; border-left: 5px solid var(--primary); padding: 20px; margin-top: 25px; display: none; }
.warning-note {
    background: #fff8e1; color: #f57c00; padding: 15px;
    border-radius: 8px; font-size: 0.9rem; margin-top: 25px;
    text-align: center; border: 1px solid #ffe0b2; font-weight: 500;
}

/* --- PARCEIROS E TOOLTIPS --- */
.partners-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 40px; 
    align-items: center; 
    justify-items: center; 
    margin-top: 40px; 
}
.partner-item {
    position: relative;
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 100%;
}
.partner-item a {
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 100%; transition: 0.3s;
}
.partner-item img { 
    max-width: 100%; width: 140px; filter: grayscale(100%); 
    opacity: 0.6; transition: 0.3s; cursor: pointer;
}
.partner-item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

/* Balão de Informação (Tooltip) */
.partner-info {
    position: absolute; bottom: 80%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #0d1b2a; color: white;
    padding: 15px; border-radius: 8px; width: 220px;
    text-align: left; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #00e5ff; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; z-index: 100; pointer-events: none;
}
.partner-info strong {
    display: block; color: #00e5ff; font-size: 1.1rem;
    margin-bottom: 5px; border-bottom: 1px solid rgba(0, 229, 255, 0.3); padding-bottom: 5px;
}
.partner-info span { display: block; font-size: 0.85rem; margin-bottom: 3px; color: #e0e0e0; }
.partner-info::after {
    content: ''; position: absolute; top: 100%; left: 50%; margin-left: -8px;
    border-width: 8px; border-style: solid; border-color: #00e5ff transparent transparent transparent;
}
.partner-item:hover .partner-info { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* --- BANNER DE COOKIES LGPD --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background-color: var(--primary); color: white;
    padding: 20px; z-index: 9999; display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    border-top: 4px solid var(--magenta);
    flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px;
}
.cookie-content { flex: 1; min-width: 300px; }
.cookie-content h3 { margin-bottom: 5px; color: white; display: flex; align-items: center; gap: 10px; }
.cookie-content p { font-size: 0.9rem; color: #e0e0e0; }
.cookie-actions { display: flex; gap: 15px; }

/* --- OUTROS ELEMENTOS --- */
.carousel-container { position: relative; max-width: 800px; width: 100%; margin: 0 auto; border-radius: 15px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }

.carousel-slide, .carousel-slide-siape { display: none; }
.carousel-slide.active, .carousel-slide-siape.active { display: block; animation: fadeEffect 1s; }

@keyframes fadeEffect { from {opacity: 0.4} to {opacity: 1} }
.carousel-slide img, .carousel-slide-siape img { width: 100%; display: block; }

/* FAQ Styles */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.faq-question { padding: 20px; background: #f9f9f9; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-question:hover { background: #f0f0f0; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-item.active .faq-answer { padding: 20px; max-height: 800px; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-toggle { transition: transform 0.3s; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; }
.testimonial-card::before { content: '"'; font-size: 4rem; color: #f0f0f0; position: absolute; top: 10px; left: 20px; }
.testimonial-text { margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.testimonial-rating { color: #ffc107; margin-bottom: 10px; }
.testimonial-author { display: flex; align-items: center; margin-top: 15px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; object-fit: cover; }

footer { background: #0f0f0f; color: #888; padding: 80px 0 30px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-col h3 { color: #fff; margin-bottom: 25px; font-size: 1.2rem; }
.footer-links a { color: #888; text-decoration: none; display: block; margin-bottom: 12px; transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.social-icons a { color: #fff; font-size: 1.5rem; margin-right: 15px; }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25D366; color: white;
    width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 35px; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000; text-decoration: none; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }

/* --- RESPONSIVIDADE (MOBILE CORRIGIDO COMPLETO) --- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); } 
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .simulator-wrapper { flex-direction: column; }
    .sim-left { padding: 40px; }
    .sim-right { padding: 40px; width: 100%; }
    .hero-text h1 { font-size: 2.5rem; }
    .siape-step { margin-bottom: 20px; }
}

@media (max-width: 768px) {
    /* Ajustes Base */
    body { padding-top: 80px; }
    section { padding: 50px 0; }
    .section-title h2 { font-size: 1.8rem; }
    .container { padding: 0 20px; }

    /* Menu Mobile */
    .mobile-toggle { display: block; }
    .header-btn { display: none; }
    .nav-menu {
        position: fixed; top: 90px; left: -100%; width: 100%; height: calc(100vh - 90px);
        background: white; flex-direction: column; align-items: center; justify-content: flex-start;
        padding-top: 40px; transition: 0.4s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.1); z-index: 999; gap: 20px;
    }
    .nav-menu.active { left: 0; }
    .nav-link { display: block; padding: 15px; font-size: 1.2rem; width: 100%; text-align: center; border-bottom: 1px solid #f5f5f5; }
    .nav-link.active::after { display: none; }

    /* Hero */
    .hero-content { flex-direction: column; gap: 30px; text-align: center; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { margin: 0 auto 30px; font-size: 1.1rem; }
    .hero-image img { transform: none; width: 100%; max-width: 350px; margin: 0 auto; display: block; } 

    /* Grids */
    .features-grid, .steps-grid, .cards-compare-grid { grid-template-columns: 1fr; }
    
    /* CORREÇÃO BARRAS DE TAXAS (Mobile) */
    .rate-bar-fill {
        min-width: 90px; /* Força largura mínima para caber "1,79% a.m." */
        padding-right: 10px;
        justify-content: flex-end; 
    }

    /* CORREÇÃO SIAPE */
    #siape .info-grid { 
        display: flex; 
        flex-direction: column; 
        align-items: center;
        gap: 30px;
    }
    /* Stats em grade 2x2 */
    .siape-stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .siape-stat { min-width: auto; padding: 15px; }
    .siape-stat-number { font-size: 2rem; }
    
    .siape-benefits-grid { grid-template-columns: 1fr; }
    
    .siape-comparison { padding: 20px; border-radius: 10px; }
    .comparison-table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
    
    /* Stepper Vertical */
    .siape-process-steps { flex-direction: column; gap: 25px; margin-top: 40px; }
    .siape-process-steps::before { display: none; }
    .siape-step { 
        display: flex; 
        flex-direction: row; 
        align-items: flex-start; 
        text-align: left; 
        gap: 15px; 
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
    }
    .siape-step-number { 
        margin: 0; 
        width: 50px; height: 50px; min-width: 50px; 
        font-size: 1.2rem; box-shadow: none; border-width: 3px;
    }
    .siape-step h4 { margin-bottom: 5px; font-size: 1.2rem; }
    .siape-step p { padding: 0; font-size: 0.95rem; }

    /* CORREÇÃO PARCEIROS (Um embaixo do outro) */
    .partners-grid { 
        grid-template-columns: 1fr; /* Coluna única = um abaixo do outro */
        gap: 30px; 
    }
    .partner-item { 
        padding: 10px; 
        text-align: center; /* Centraliza o conteúdo */
    }
    .partner-item img { 
        width: 100%; 
        max-width: 150px; /* Tamanho bom para ver o logo inteiro */
        height: auto; 
        filter: grayscale(0); opacity: 1; 
        margin: 0 auto; /* Garante centralização */
        display: block;
    }
    .partner-info { display: none !important; }

    /* Outros */
    .info-grid { display: flex; flex-direction: column-reverse; gap: 30px; }
    .info-grid > div { width: 100%; }
    
    .salary-table { display: block; overflow-x: auto; white-space: nowrap; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links a:hover { padding-left: 0; } 
    .whatsapp-float { width: 60px; height: 60px; font-size: 30px; bottom: 20px; right: 20px; }
    
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; }
}