/* =============================================
   MEGA STYLESHEET - Merged style.css + login.css + dashboard.css + upsell inline styles
   ============================================= */

:root {
    --primary-color: #E6007E;
    --primary-hover: #c4006b;
    --bg-light: #f5f7f9;
    --bg-main: #f4f7fa;
    --bg-card: #ffffff;
    --text-dark: #242a4a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --whatsapp-green: #25d366;
    --header-height: 64px;
    --success: #10b981;
    --caixa-blue: #005CA9;
    --serasa-pink: #E6007E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* =============================================
   MAIN CONTAINER - Page Sections
   ============================================= */
.page-section {
    display: none;
    width: 100%;
}
.page-section.active {
    display: block;
}

/* =============================================
   HEADER (Homepage)
   ============================================= */
.header {
    background-color: var(--primary-color);
    height: var(--header-height);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
.menu-btn, .login-btn {
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}
.menu-btn:hover, .login-btn:hover { opacity: 0.8; }
.menu-btn i { font-size: 18px; }
.brand-container {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo-mark { display: flex; align-items: center; justify-content: center; }
.logo-box {
    background-color: var(--white);
    padding: 6px 16px 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =============================================
   HERO SECTION (Homepage)
   ============================================= */
.hero {
    min-height: calc(100vh - var(--header-height));
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
    background-color: #ffffff;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}
.hero-content { flex: 1; max-width: 540px; z-index: 10; }
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-title .highlight { color: var(--primary-color); }
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(230, 0, 126, 0.3);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* =============================================
   HERO IMAGE & FLOATING CARDS
   ============================================= */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 600px;
    max-width: 550px;
}
.pink-shape {
    position: absolute;
    width: 90%;
    height: 85%;
    background-color: var(--primary-color);
    border-radius: 40px;
    bottom: 0;
    left: 5%;
    z-index: 1;
}
.hero-person-img {
    position: relative;
    z-index: 2;
    height: 110%;
    object-fit: cover;
    object-position: top center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    pointer-events: none;
}
.phone-mockup {
    position: absolute;
    right: 15%;
    bottom: 35%;
    width: 80px;
    height: 160px;
    background-color: #FFB3D9;
    border: 4px solid var(--white);
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
}
.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 10px 24px 10px 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 4;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.floating-card span { font-weight: 700; color: var(--text-dark); font-size: 14px; }
.card-icon-wrapper {
    background-color: #ffedf3;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    position: relative;
}
.card-unify { left: -10%; top: 45%; animation-delay: 0s; }
.card-discount { left: 5%; bottom: 20%; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* =============================================
   FLOATING WIDGETS
   ============================================= */
.cookie-widget { position: fixed; bottom: 24px; left: 24px; z-index: 100; }
.cookie-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background-color: #ffb3d9;
    border: 3px solid rgba(255,255,255,0.5);
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(230, 0, 126, 0.15);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease;
}
.cookie-btn:hover { transform: scale(1.05); }
.whatsapp-widget { position: fixed; bottom: 24px; right: 24px; z-index: 100; }
.whatsapp-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease;
}
.whatsapp-btn:hover { transform: scale(1.05); }

/* =============================================
   LOGIN PAGE STYLES
   ============================================= */
.login-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}
.left-panel {
    width: 35%;
    min-width: 400px;
    background-color: var(--primary-color);
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.left-content { margin-top: 60px; }
.left-content .hero-title {
    color: #ffffff;
    font-size: 42px;
}
.left-content .highlight-block {
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 6px;
}
.person-wrapper {
    position: absolute;
    bottom: 0;
    right: -60px;
    width: 350px;
    height: 450px;
    display: flex;
    align-items: flex-end;
}
.person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px 20px 0 0;
}
.phone-mockup-login {
    position: absolute;
    right: 10%;
    top: 30%;
    width: 65px;
    height: 130px;
    background: #FFB3D9;
    border: 3px solid white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: rotate(-3deg);
}
.phone-screen-login {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-widget-login { position: absolute; bottom: 30px; left: 40px; }
.cookie-btn-login {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 20px;
}
.login-card {
    background-color: var(--white);
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin: 20px auto;
}
.form-title { font-size: 18px; font-weight: 500; color: #4b5563; margin-bottom: 16px; }
.input-group { margin-bottom: 24px; position: relative; }
.input-wrapper { position: relative; }

input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 16px;
    font-size: 16px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}
input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus {
    border-color: var(--primary-color);
}
input[type="text"]::placeholder { color: #9ca3af; }

.input-group.error input[type="text"] {
    border-color: #ef4444;
    background-color: #fef2f2;
    padding-right: 40px;
}
.warning-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-size: 16px;
}
.error-text {
    display: block;
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    margin-left: 4px;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--primary-color);
    border-radius: 24px;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
.toggle-switch input:checked + .slider { background-color: var(--primary-color); }
.toggle-switch input:not(:checked) + .slider { background-color: #d1d5db; }
.toggle-switch input:checked + .slider:before { transform: translateX(20px); }
.toggle-label { font-size: 13px; color: var(--text-muted); }

/* Buttons */
.btn-continue {
    width: 100%;
    height: 52px;
    background-color: #e5e7eb;
    color: #9ca3af;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: not-allowed;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}
.btn-continue.active { background-color: var(--primary-color); color: var(--white); cursor: pointer; }
.btn-continue.active:hover { background-color: var(--primary-hover); }

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 12px;
}
.link-termos { color: #4b5563; font-weight: 600; text-decoration: none; }
.link-termos:hover { text-decoration: underline; }

/* Quiz Styles */
.quiz-header { text-align: center; margin-bottom: 24px; }
.quiz-welcome { font-size: 16px; font-weight: 700; color: var(--primary-color); margin-bottom: 4px; }
.quiz-user-info { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.quiz-progress-container {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
}
.quiz-question { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; line-height: 1.4; text-align: center; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.quiz-option:hover { border-color: var(--primary-color); background-color: #fdf2f8; color: var(--primary-color); }
.quiz-input-group { display: flex; flex-direction: column; gap: 12px; }
.quiz-input-row { position: relative; display: flex; align-items: center; }
.quiz-input-row i { position: absolute; left: 16px; color: var(--text-muted); }
.quiz-input-text {
    width: 100%;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}
.quiz-input-row .quiz-input-text { padding-left: 44px; }
.quiz-input-text:focus { border-color: var(--primary-color); }
.btn-avancar {
    width: 100%;
    height: 52px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 24px;
    transition: background-color 0.2s;
    font-family: 'Inter', sans-serif;
}
.btn-avancar:hover { background-color: var(--primary-hover); }
.btn-avancar:disabled { background-color: #e5e7eb; color: #9ca3af; cursor: not-allowed; }

/* =============================================
   DASHBOARD STYLES
   ============================================= */
.gov-bar {
    background: #1351B4;
    padding: 6px 0;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.gov-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }
.dash-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.dash-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 32px; width: auto; }
.user-nav { display: flex; align-items: center; gap: 15px; }
.user-profile { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.avatar {
    width: 32px; height: 32px;
    background: #fdf2f8;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.nav-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    position: relative;
}
.nav-btn::after {
    content: '';
    position: absolute;
    top: -2px; right: -2px;
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
}
.greeting { font-size: 14px; color: var(--text-dark); }

.top-banner-authority { margin-bottom: 15px; }
.top-banner-authority picture,
.top-banner-authority img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: block;
}

.dash-main { padding: 24px 0 40px; background: var(--bg-main); }
.page-title { margin-bottom: 24px; }
.page-title h1 { font-size: 24px; margin-bottom: 4px; color: var(--text-dark); }
.page-title p { color: var(--text-muted); font-size: 14px; }
.dash-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }

@media (min-width: 992px) {
    .dash-grid { grid-template-columns: 1fr 1.5fr; }
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.card-header { display: flex; justify-content: space-between; margin-bottom: 20px; align-items: center; }
.card-header h2 { font-size: 18px; font-weight: 700; }

.debt-item { border-bottom: 1px solid #f1f5f9; padding: 12px 0; display: flex; justify-content: space-between; align-items: center; }

.badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: #fef2f8;
    color: var(--primary-color);
}

.authority-stack { display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }

/* =============================================
   MODAL STYLES
   ============================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}
.modal-content {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header { padding: 15px 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.modal-body { padding: 20px; }
.modal-close { background: none; border: none; font-size: 18px; color: #64748b; cursor: pointer; padding: 4px; }

/* =============================================
   PIX PAYMENT STYLES
   ============================================= */
.btn-pix-unificado {
    width: 100%;
    height: 50px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s;
}
.btn-pix-unificado:hover { background: #059669; }

.payment-option-card {
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.payment-option-card:active { transform: scale(0.97); background: #fff0f5; }

.urgency-timer {
    background: #fef2f2;
    color: #ef4444;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}
#urgency-time { font-size: 24px; font-weight: 800; }

/* Receipt Styles */
.receipt-doc {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    padding: 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    margin-top: 15px;
}
.receipt-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 8px; color: #475569; }
.receipt-total { border-top: 1px solid #ddd; margin-top: 10px; padding-top: 10px; font-weight: 800; color: var(--primary-color); font-size: 16px; }

/* =============================================
   UPSELL STYLES
   ============================================= */
.partnership-container { max-width: 600px; margin: 20px auto; padding: 15px; }
.main-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 5px solid var(--serasa-pink);
}
.header-logos {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f1f5f9;
}
.logo-img-serasa { height: 35px; width: auto; }
.logo-img-caixa { height: 22px; width: auto; }
.status-header {
    background: #fdf2f8;
    padding: 15px;
    text-align: center;
    color: var(--serasa-pink);
    font-weight: 700;
    font-size: 14px;
}
.status-bar-container { margin: 20px 0; padding: 0 10px; }
.status-bar { display: flex; justify-content: space-between; position: relative; margin-bottom: 10px; }
.status-bar::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
    transform: translateY(-50%);
}
.status-step {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    z-index: 2;
    color: #94a3b8;
}
.status-step.active { border-color: var(--serasa-pink); color: var(--serasa-pink); background: #fdf2f8; font-weight: 800; }
.status-step.pending {
    border-color: #f59e0b;
    color: #f59e0b;
    background: #fffbeb;
    animation: pulse 1.5s infinite;
}
.status-labels { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; color: #64748b; }
.btn-action {
    width: 100%;
    height: 55px;
    background: var(--serasa-pink);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(230,0,126,0.3);
    text-transform: uppercase;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
}
.btn-action:hover { background: var(--primary-hover); }

/* =============================================
   LOADER STYLES
   ============================================= */
.loader-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10005;
    text-align: center;
    padding: 20px;
}
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
}
.loader-spinner {
    width: 50px; height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-text { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; margin-top: 20px; min-height: 25px; }
.loader-subtext { font-size: 14px; color: var(--text-muted); }
.loader-success-icon {
    width: 80px; height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(16,185,129,0.3);
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast-notification {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #E6007E;
}
.toast-notification.show { transform: translateY(0); }
.toast-avatar {
    width: 35px; height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: #E6007E;
    font-weight: 700;
    flex-shrink: 0;
}
.toast-content { font-size: 12px; line-height: 1.4; color: #1e293b; }
.toast-content strong { color: #E6007E; }

/* =============================================
   FOOTER
   ============================================= */
.footer-serasa {
    width: 100%;
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}
.footer-serasa .footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-serasa img { width: 100%; height: auto; }
footer { width: 100%; background: #fff; padding: 40px 0; border-top: 1px solid #eee; margin-top: 60px; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.pulse-urgency { animation: pulse 2s infinite ease-in-out; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .login-layout { flex-direction: column; }
    .left-panel { width: 100%; min-width: 0; height: auto; padding: 30px 20px; }
    .left-panel .person-wrapper { display: none; }
    .left-panel .cookie-widget-login { display: none; }
    .left-panel .phone-mockup-login { display: none; }
    .left-content { margin-top: 20px; }
    .left-content .hero-title { font-size: 28px; }
}
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; gap: 40px; text-align: center; padding-top: 20px; }
    .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .brand-container { position: static; transform: none; }
    .hero-title { font-size: 40px; }
    .hero-image-wrapper { width: 100%; max-width: 450px; height: 500px; }
    .card-unify { left: 0; }
    .card-discount { left: 15%; }
}
@media (max-width: 768px) {
    .header-container { padding: 0 20px; }
    .login-btn span, .menu-btn span { display: none; }
    .hero-title { font-size: 32px; }
    .hero-description { font-size: 16px; }
    .hero-image-wrapper { height: 400px; }
    .floating-card { padding: 8px 16px; }
    .floating-card span { font-size: 13px; }
    .phone-mockup { width: 60px; height: 120px; right: 5%; }
    .dash-container { padding: 0 12px; }
    .page-title h1 { font-size: 19px; line-height: 1.2; }
    .page-title p { font-size: 13px; }
    .top-banner-authority { margin-bottom: 15px; }
    .top-banner-authority picture,
    .top-banner-authority img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
    }
    .card { padding: 12px; margin-bottom: 15px; }
    .card-header h2 { font-size: 15px; }
    .btn-primary { padding: 14px; font-size: 15px; width: 100%; border-radius: 10px; }
    .modal-content { width: 95%; max-width: 400px; padding: 20px; border-radius: 16px; }
}
@media (max-width: 480px) {
    .dash-header { height: 55px; }
    .card { padding: 15px; }
}
@media (max-width: 900px) {
    .left-panel { display: none; }
    .right-panel { padding: 20px; }
    .login-card { width: 100%; max-width: 400px; }
}

/* =============================================
   AUTOCOMPLETE DROPDOWN STYLES
   ============================================= */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1000;
    display: none;
    margin-top: 4px;
}
.autocomplete-dropdown.show {
    display: block;
}
.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f5f9;
}
.autocomplete-item:last-child {
    border-bottom: none;
}
.autocomplete-item:hover {
    background: #fdf2f8;
}
.autocomplete-item .bank-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.autocomplete-item .bank-icon svg {
    width: 100%;
    height: 100%;
}
.autocomplete-no-results {
    padding: 14px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}