* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1100px;
    width: 100%;
    padding: 40px;
    animation: slideIn 0.5s ease-out;
    margin: 20px auto;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    color: #666;
    font-size: 1.1em;
}

/* ==========================================
   BARRA DE PROGRESSO
   ========================================== */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.step-label {
    font-size: 0.85em;
    color: #999;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.progress-step.active .step-label {
    color: #667eea;
}

.progress-step.completed .step-number {
    background: #4caf50;
    color: white;
}

.progress-step.completed .step-label {
    color: #4caf50;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

/* ==========================================
   SELEÇÃO DE BANCOS
   ========================================== */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bank-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.bank-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.bank-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.bank-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bank-card span {
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
}

/* ==========================================
   FORMULÁRIO STEPS
   ========================================== */
.form-step {
    display: none;
    animation: fadeInStep 0.4s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
}

.step-description {
    color: #666;
    font-size: 1em;
    text-align: center;
    margin-bottom: 30px;
}

/* ==========================================
   BADGES DE CONFIANÇA
   ========================================== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.badge-icon {
    font-size: 2em;
    line-height: 1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-text strong {
    color: #333;
    font-size: 0.95em;
    font-weight: 700;
}

.badge-text small {
    color: #666;
    font-size: 0.8em;
    font-weight: 400;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 1em;
}

input[type="text"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05em;
    transition: all 0.3s ease;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

textarea {
    resize: vertical;
}

/* ==========================================
   BOTÕES DE NAVEGAÇÃO
   ========================================== */
.step-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-submit {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-prev {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-prev:hover {
    background: #f5f5f5;
    transform: translateX(-3px);
}

.btn-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.btn-prev:active,
.btn-next:active,
.btn-submit:active {
    transform: translateY(0);
}

/* ==========================================
   ANIMAÇÃO DE CARREGAMENTO
   ========================================== */
.loading {
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.loading-content {
    padding: 40px 20px;
}

.spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 15px;
}

.loading-text {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.loading-steps {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.loading-step.active {
    opacity: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid #667eea;
}

.loading-step.completed {
    opacity: 1;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.loading-step .step-icon {
    font-size: 1.5em;
}

.loading-step.completed .step-icon::before {
    content: '✅';
}

.loading-step .step-text {
    font-weight: 600;
    color: #333;
}

/* ==========================================
   PRÉVIA DO BOLETO
   ========================================== */
.boleto-preview {
    margin: 30px 0;
    animation: fadeIn 0.5s ease-out;
}

.boleto-image {
    background: white;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Courier New', monospace;
    max-width: 600px;
    margin: 0 auto;
}

.boleto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
    margin-bottom: 15px;
}

.banco-logo-container {
    display: flex;
    align-items: center;
    min-width: 120px;
}

.banco-logo-img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
}

.banco-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.boleto-codigo {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    padding: 5px 15px;
    border: 2px solid #333;
}

.boleto-linha {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.9em;
}

.boleto-linha strong {
    color: #666;
    font-size: 0.85em;
    min-width: 150px;
}

.boleto-linha span {
    color: #333;
    font-weight: bold;
    text-align: right;
    flex: 1;
}

.valor-destaque {
    font-size: 1.3em !important;
    color: #d32f2f !important;
}

.boleto-barcode {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #333;
}

.barcode-lines {
    display: flex;
    gap: 2px;
    height: 60px;
    margin-bottom: 10px;
    justify-content: center;
}

.bar {
    width: 3px;
    background: #000;
    height: 100%;
}

.bar.thin {
    width: 1px;
}

.linha-digitavel {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    letter-spacing: 2px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.boleto-note {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-top: 15px;
    font-style: italic;
}

/* ==========================================
   RESULTADO
   ========================================== */
.resultado {
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hidden {
    display: none;
}

.sucesso-icon {
    font-size: 5em;
    margin-bottom: 20px;
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.resultado h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 15px;
}

.resultado p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.boleto-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #333;
}

.info-item span {
    color: #667eea;
    font-weight: 600;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-novo {
    padding: 12px 30px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-novo:hover {
    background: #667eea;
    color: white;
}

.btn-novo:hover {
    background: #667eea;
    color: white;
}

.btn-novo:hover {
    background: #667eea;
    color: white;
}

.btn-novo:hover {
    background: #667eea;
    color: white;
}

/* ==========================================
   POR QUE USAR (ABAIXO DO FORM)
   ========================================== */
.porque-usar-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 40px;
    color: white;
}

.porque-usar-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: white;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.beneficio-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.beneficio-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.beneficio-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
}

.beneficio-item p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ==========================================
   SEÇÃO BANCOS KEYWORDS (ABAIXO DO FORM)
   ========================================== */
.bancos-keywords-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.bancos-keywords-section h2 {
    color: #667eea;
    font-size: 2em;
    text-align: center;
    margin-bottom: 15px;
}

.intro-bancos {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.bancos-grid-keywords {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.banco-keyword-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banco-keyword-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.banco-keyword-card .banco-icon {
    font-size: 2.5em;
}

.banco-keyword-card strong {
    color: #667eea;
    font-size: 0.95em;
    text-align: center;
}

.banco-keyword-card span:last-child {
    color: #333;
    font-weight: 600;
    text-align: center;
}

.keywords-text {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.keywords-text p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.keywords-text p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ==========================================
   FAQ SECTION (ABAIXO DO FORM)
   ========================================== */
.faq-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.faq-section h2 {
    color: #667eea;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

.faq-container {
    display: grid;
    gap: 20px;
}

.faq-item-main {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item-main:hover {
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.faq-item-main h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 12px;
    margin-top: 0;
}

.faq-item-main p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.faq-item-main p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   COMO FUNCIONA SECTION
   ========================================== */
.como-funciona-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 40px;
    color: white;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 1.15em;
    line-height: 1.8;
    margin: 0;
}

.como-funciona-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 15px;
    color: white;
}

.subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.passo-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.passo-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.passo-numero {
    width: 60px;
    height: 60px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.passo-item h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: white;
}

.passo-item p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.bancos-suportados {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bancos-suportados h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.bancos-suportados p {
    line-height: 1.8;
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   CONTEÚDO SEO
   ========================================== */
.seo-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.seo-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    color: white;
    padding: 0 20px;
}

.seo-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    margin-top: 40px;
}

.seo-footer-content {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.seo-footer h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.seo-footer h3 {
    font-size: 1.6em;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.seo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.seo-item h3 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
}

.seo-item p {
    line-height: 1.6;
    margin: 0;
}

.faq-seo {
    margin-top: 20px;
}

.faq-item-seo {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.faq-item-seo h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 0;
}

.faq-item-seo p {
    line-height: 1.6;
    margin: 0;
}

.keywords-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.keywords-section small {
    opacity: 0.7;
}

.keywords-section small {
    opacity: 0.7;
}

.bancos-keywords {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.bancos-keywords h3 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.bancos-grid-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.banco-link {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banco-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.keywords-extra {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    line-height: 1.8;
}

.keywords-extra p {
    margin: 0;
    text-align: justify;
}

.bancos-suportados p {
    line-height: 1.8;
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   FOOTER
   ========================================== */
.seo-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
}

.seo-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    color: white;
}

.keywords-section {
    padding-top: 10px;
}

.keywords-section p {
    margin: 10px 0;
}

.keywords-section small {
    opacity: 0.8;
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVO
   ========================================== */
@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    header h1 {
        font-size: 1.8em;
    }

    .progress-bar {
        padding: 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .step-label {
        font-size: 0.7em;
    }

    .progress-line {
        margin: 0 5px;
    }

    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bank-card {
        padding: 15px;
    }

    .bank-card img {
        width: 60px;
        height: 60px;
    }

    .bank-card span {
        font-size: 0.8em;
    }

    .step-title {
        font-size: 1.4em;
    }
    
    /* Badges de Confiança Responsivo */
    .trust-badges {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .trust-badge {
        min-width: 100%;
        max-width: 100%;
        padding: 12px 15px;
    }
    
    .badge-icon {
        font-size: 1.5em;
    }
    
    .badge-text strong {
        font-size: 0.9em;
    }
    
    .badge-text small {
        font-size: 0.75em;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .step-buttons {
        flex-direction: column;
    }

    .btn-prev,
    .btn-next,
    .btn-submit,
    .btn-whatsapp {
        font-size: 1em;
        padding: 14px;
    }

    .resultado h2 {
        font-size: 1.5em;
    }
    
    /* Responsivo do Boleto */
    .boleto-image {
        padding: 15px;
    }
    
    .boleto-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .banco-logo-container {
        justify-content: center;
        min-width: auto;
    }
    
    .banco-logo-img {
        max-width: 80px;
        max-height: 40px;
    }
    
    .banco-logo {
        font-size: 1.2em;
    }
    
    .boleto-codigo {
        font-size: 1.4em;
    }
    
    .boleto-linha {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }
    
    .boleto-linha span {
        text-align: left;
    }
    
    .barcode-lines {
        height: 50px;
    }
    
    .linha-digitavel {
        font-size: 0.8em;
        letter-spacing: 1px;
        word-break: break-all;
    }
    
    /* SEO Content Responsivo */
    .seo-content {
        padding: 20px;
    }
    
    .seo-content h2 {
        font-size: 1.3em;
    }
    
    .seo-content h3 {
        font-size: 1.1em;
    }
    
    .seo-footer {
        padding: 30px 15px;
    }
    
    .seo-footer h2 {
        font-size: 1.5em;
    }
    
    .seo-footer h3 {
        font-size: 1.3em;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .bancos-keywords h3 {
        font-size: 1.4em;
    }
    
    .bancos-grid-footer {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .banco-link {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    .keywords-extra {
        padding: 20px;
    }
    
    /* Seção Bancos Keywords Responsivo */
    .bancos-keywords-section {
        padding: 25px 20px;
    }
    
    .bancos-keywords-section h2 {
        font-size: 1.5em;
    }
    
    .intro-bancos {
        font-size: 1em;
    }
    
    .bancos-grid-keywords {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banco-keyword-card {
        padding: 15px 10px;
    }
    
    .banco-keyword-card .banco-icon {
        font-size: 2em;
    }
    
    .banco-keyword-card strong {
        font-size: 0.85em;
    }
    
    .banco-keyword-card span:last-child {
        font-size: 0.9em;
    }
    
    .keywords-text {
        padding: 20px;
    }
    
    /* Por Que Usar Responsivo */
    .porque-usar-section {
        padding: 30px 20px;
    }
    
    .porque-usar-section h2 {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beneficio-item {
        padding: 25px 20px;
    }
    
    .beneficio-icon {
        font-size: 2.5em;
    }
    
    .beneficio-item h3 {
        font-size: 1.3em;
    }
    
    /* FAQ Responsivo */
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-section h2 {
        font-size: 1.6em;
    }
    
    .faq-item-main {
        padding: 20px;
    }
    
    .faq-item-main h3 {
        font-size: 1.1em;
    }
    
    /* Como Funciona Responsivo */
    .como-funciona-section {
        padding: 30px 20px;
    }
    
    .intro-text p {
        font-size: 1em;
    }
    
    .como-funciona-section h2 {
        font-size: 1.6em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .passos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .passo-item {
        padding: 25px 20px;
    }
    
    .passo-numero {
        width: 50px;
        height: 50px;
        font-size: 1.6em;
    }
    
    .passo-item h3 {
        font-size: 1.2em;
    }
    
    .bancos-suportados {
        padding: 25px 20px;
    }
    
    .bancos-suportados h3 {
        font-size: 1.3em;
    }
}
