/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 20px 0;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: 0 auto;
    min-height: calc(100vh - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Telas Base - PADRÃO CONSISTENTE */
.screen {
    background: white;
    border-radius: 25px;
    padding: 60px 20px 25px 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    display: none;
    animation: slideUp 0.6s ease-out;
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
    min-height: auto;
    overflow-y: auto;
    width: 100%;
    max-width: 420px;
}

.screen.active {
    display: block;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* REMOVER OVERRIDE ESPECIAL - TODAS AS TELAS SEGUEM O MESMO PADRÃO */
/* Comentado para manter consistência visual
#screen-loading,
#screen-final-loading,
#screen-result {
    background: transparent !important;
    box-shadow: none !important;
    padding: 10px !important;
}
*/

/* Logo FinPal */
.logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    z-index: 10;
}

.logo-fin {
    color: #4CAF50;
    font-size: 18px;
    font-weight: 900;
}

.logo-pal {
    color: #333;
    font-size: 18px;
    font-weight: 900;
}

.logo-subtitle {
    font-size: 8px;
    color: #999;
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 400;
}

/* Ícone Hero */
.hero-icon {
    font-size: 70px;
    margin: 15px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Textos de Vendas */
h1 {
    font-size: 22px;
    line-height: 1.3;
    margin: 20px 0 15px 0;
    color: #333;
    font-weight: 700;
}

.highlight {
    color: #FF6B35;
    font-weight: bold;
    background: linear-gradient(45deg, #FF6B35, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtext {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    line-height: 1.4;
}

.urgency {
    color: #FF6B35;
    font-size: 14px;
    font-weight: 700;
    margin: 15px 0 25px 0;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.guarantee, .final-guarantee {
    color: #4CAF50;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* Botão CTA Principal */
.btn-cta {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, #FF6B35, #FF8A65, #FFB74D);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.4s ease;
    animation: gradientShift 3s ease infinite;
    margin: 15px 0;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-cta:hover, .btn-cta:active {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 100%; height: 100%; opacity: 0; }
}

/* Indicador de Progresso - COMPLETAMENTE CORRIGIDO */
.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 25px 0;
}

.progress-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.progress-step.active {
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    color: white;
    border: 2px solid #FF6B35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    animation: progressPulse 2s infinite;
    transform: scale(1.1);
}

.progress-step.completed {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

@keyframes progressPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

/* Bubble Conversacional */
.conversation-bubble {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 18px;
    padding: 20px;
    margin: 15px 0 25px 0;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.conversation-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 8px solid #e9ecef;
}

.conversation-bubble h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.context {
    color: #666;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* Botões Conversacionais */
.btn-option-conversational {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    width: 100%;
    margin: 8px 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.btn-option-conversational.danger {
    background: linear-gradient(135deg, #FF5722, #FF6B35);
    color: white;
}

.btn-option-conversational.warning {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    color: white;
}

.btn-option-conversational.success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-option-conversational:hover, .btn-option-conversational:active {
    transform: translateY(-2px) translateX(3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.btn-option-conversational .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.option-content small {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.3;
}

/* Texto Motivacional */
.motivation {
    color: #FF6B35;
    font-size: 13px;
    font-weight: 600;
    margin: 20px 0 8px 0;
    padding: 8px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

/* TELA DE LOADING - SEGUINDO O PADRÃO DO SITE */
#screen-loading {
    /* Mantém o mesmo padrão visual das outras telas */
    background: white;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 60px 20px 25px 20px;
}

/* Remover cards internos desnecessários */
.loading-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    min-height: auto;
    display: block;
    position: static;
}

/* Ícone de Análise Animado */
.analysis-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    position: relative;
    height: 120px;
}

.analysis-icon {
    font-size: 60px;
    z-index: 3;
    position: relative;
    animation: iconFloat 2s ease-in-out infinite;
}

.analysis-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1, .circle-2, .circle-3 {
    position: absolute;
    border: 2px solid #FF6B35;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    opacity: 0.7;
}

.circle-2 {
    width: 100px;
    height: 100px;
    animation-delay: 0.5s;
    opacity: 0.5;
}

.circle-3 {
    width: 120px;
    height: 120px;
    animation-delay: 1s;
    opacity: 0.3;
}

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

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.loading-message {
    font-size: 16px;
    color: #555;
    margin: 20px 0 25px 0;
    font-weight: 500;
    text-align: center;
}

.loading-percentage-container {
    margin: 15px 0 20px 0;
    text-align: center;
}

.loading-percentage-container .progress-percent {
    font-size: 24px;
    color: #FF6B35;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

/* Barra de Progresso Melhorada */
.progress-container {
    margin: 25px 0;
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: center;
}

.progress-bar-dynamic {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.15);
    position: relative;
}

.progress-fill-dynamic {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF6B35, #FFD700, #4CAF50);
    border-radius: 25px;
    transition: width 0.5s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    position: relative;
    animation: progressGlow 2s ease-in-out infinite;
}

.progress-fill-dynamic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 107, 53, 0.6); }
    50% { box-shadow: 0 0 16px rgba(255, 107, 53, 1); }
}

/* TELA DE RESULTADO - SEGUINDO O PADRÃO DO SITE */
#screen-result {
    /* Mantém o mesmo padrão visual das outras telas */
    background: white;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 60px 20px 25px 20px;
}

/* Remover cards internos desnecessários */
.result-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    max-height: none;
    display: block;
    position: static;
    overflow-y: visible;
}

.result-icon-new {
    font-size: 60px;
    margin: 15px 0;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.result-header h1 {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
    font-weight: 800;
}

.level-badge-new {
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    margin: 15px 0;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    display: inline-block;
}

.level-label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.level-percentage-new {
    font-size: 28px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.level-title {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
    font-weight: 700;
    line-height: 1.2;
}

.result-explanation-new {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #FF6B35;
}

.result-explanation-new p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.benefits-title h3 {
    font-size: 16px;
    color: #FF6B35;
    margin: 20px 0 10px 0;
    font-weight: 700;
}

.benefits-list-container {
    text-align: left;
    margin: 15px 0;
}

.benefits-list-new {
    list-style: none;
    padding: 0;
}

.benefits-list-new li {
    background: linear-gradient(90deg, #e8f5e8, #f0f8f0);
    margin: 8px 0;
    padding: 10px 12px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    font-size: 12px;
    color: #333;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.benefits-list-new li::before {
    content: "✅";
    margin-right: 8px;
    font-size: 14px;
}

.result-cta-new {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 15px;
    padding: 20px 15px;
    margin: 20px 0 10px 0;
    border-top: 3px solid #FF6B35;
}

.result-cta-new h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
}

.result-cta-new p {
    font-size: 13px;
    color: #555;
    margin: 8px 0 15px 0;
    line-height: 1.4;
}

.btn-cta-new {
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    width: 100%;
    margin: 10px 0;
}

.btn-cta-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.final-guarantee {
    font-size: 10px;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 10px;
    padding: 8px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
}

/* TELA DE LOADING FINAL - SEGUINDO O PADRÃO DO SITE */
#screen-final-loading {
    /* Mantém o mesmo padrão visual das outras telas */
    background: white;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 60px 20px 25px 20px;
}

/* Remover cards internos desnecessários */
.final-loading-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    min-height: auto;
    display: block;
    position: static;
}

.final-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.final-loading-title {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-loading-text {
    font-size: 18px;
    color: #555;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.loading-progress-final {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.loading-bar-final {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.loading-fill-final {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FF8A65, #4CAF50);
    border-radius: 25px;
    width: 100%;
    animation: finalLoadingBar 3s ease-in-out;
}

@keyframes finalLoadingBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-percentage {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
}

.loading-dots-improved {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot-1, .dot-2, .dot-3 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF6B35;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot-2 {
    animation-delay: 0.2s;
    background: #FF8A65;
}

.dot-3 {
    animation-delay: 0.4s;
    background: #4CAF50;
}

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

.final-benefits {
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
    width: 100%;
    box-sizing: border-box;
}

.final-benefits h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #2E7D32;
    font-weight: 700;
    text-align: center;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-item {
    font-size: 13px;
    color: #2E7D32;
    font-weight: 600;
    padding: 6px 0;
    text-align: center;
}

/* Responsividade Mobile Otimizada */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 5px;
        max-width: 100%;
    }
    .screen {
        padding: 50px 10px 20px 10px;
        border-radius: 20px;
    }
    h1 {
        font-size: 20px;
    }
    .btn-cta {
        padding: 15px;
        font-size: 15px;
    }
    /* Ajustes adicionais para melhor fluidez em mobile */
    body {
        padding: 10px 0;
    }
    
    .container {
        padding: 5px;
        max-width: calc(100vw - 10px);
    }
    
    .screen {
        padding: 40px 15px 25px 15px;
        border-radius: 15px;
        min-height: auto;
        margin: 0;
    }
    
    .logo-fin, .logo-pal {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 7px;
    }
    
    h1 {
        font-size: 20px;
        margin: 15px 0 12px 0;
    }
    
    .subtext {
        font-size: 15px;
    }
    
    .urgency {
        font-size: 13px;
        padding: 10px;
        margin: 12px 0 20px 0;
    }
    
    .btn-cta {
        font-size: 15px;
        padding: 16px 30px;
        margin: 12px 0;
    }
    
    .btn-option-conversational {
        padding: 14px 12px;
        gap: 10px;
        margin: 6px 0;
    }
    
    .btn-option-conversational .icon {
        font-size: 20px;
    }
    
    .option-content strong {
        font-size: 13px;
    }
    
    .option-content small {
        font-size: 10px;
    }
    
    .progress-step {
        width: 30px;
        height: 30px;
        font-size: 12px;
        gap: 6px;
    }
    
    .conversation-bubble {
        padding: 16px;
        margin: 12px 0 20px 0;
    }
    
    .conversation-bubble h2 {
        font-size: 16px;
    }
    
    .context {
        font-size: 12px;
    }
    
    .hero-icon, .result-icon-new {
        font-size: 50px;
        margin: 12px 0;
    }
    
    .level-badge-new {
        padding: 12px 18px;
        margin: 12px 0;
    }
    
    .level-percentage-new {
        font-size: 24px;
    }
    
    .result-header h1 {
        font-size: 18px;
        margin: 8px 0;
    }
    
    .level-title {
        font-size: 16px;
        margin: 12px 0;
    }
    
    .result-explanation-new {
        padding: 12px;
        margin: 12px 0;
    }
    
    .result-explanation-new p {
        font-size: 13px;
    }
    
    .benefits-title h3 {
        font-size: 14px;
        margin: 15px 0 10px 0;
    }
    
    .benefits-list-new li {
        padding: 8px 10px;
        font-size: 11px;
        margin: 6px 0;
    }
    
    .benefits-list-new li::before {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .result-cta-new {
        padding: 15px 12px;
        margin: 15px 0 5px 0;
    }
    
    .result-cta-new h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .result-cta-new p {
        font-size: 12px;
        margin: 6px 0 12px 0;
    }
    
    .btn-cta-new {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .final-guarantee {
        font-size: 9px;
        padding: 6px;
        margin-top: 8px;
    }
    
    .analysis-icon-container {
        margin: 20px 0;
        height: 100px;
    }
    
    .analysis-icon {
        font-size: 50px;
    }
    
    .loading-message {
        font-size: 14px;
        margin: 15px 0 20px 0;
    }
    
    .loading-percentage-container .progress-percent {
        font-size: 20px;
    }
    
    .progress-container {
        margin: 20px 0;
        max-width: 300px;
    }
    
    .final-loading-title {
        font-size: 20px;
    }
    
    .final-loading-text {
        font-size: 16px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .final-benefits {
        padding: 15px;
    }
    
    .final-benefits h4 {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
    
    .benefit-item {
        font-size: 12px;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    .container {
        padding: 0;
    }
    .screen {
        padding: 40px 5px 15px 5px;
        border-radius: 15px;
    }
    h1 {
        font-size: 18px;
    }
    .btn-cta {
        padding: 12px;
        font-size: 14px;
    }
    /* Otimizações específicas para telas muito pequenas */
    .container {
        padding: 2px;
        max-width: calc(100vw - 4px);
    }
    
    .screen {
        padding: 35px 10px 20px 10px;
        border-radius: 10px;
    }
    
    .logo {
        top: 10px;
    }
    
    .logo-fin, .logo-pal {
        font-size: 14px;
    }
    
    h1 {
        font-size: 18px;
        margin: 10px 0;
    }
    
    .btn-cta {
        font-size: 14px;
        padding: 14px 20px;
    }
    
    .btn-option-conversational {
        padding: 12px 8px;
        margin: 4px 0;
    }
    
    .motivation {
        font-size: 12px;
        padding: 6px;
    }
    
    .progress-step {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .conversation-bubble {
        padding: 12px;
    }
    
    .hero-icon, .result-icon-new {
        font-size: 40px;
        margin: 8px 0;
    }
    
    .level-badge-new {
        padding: 10px 15px;
        margin: 10px 0;
    }
    
    .level-percentage-new {
        font-size: 20px;
    }
    
    .result-header h1 {
        font-size: 16px;
        margin: 6px 0;
    }
    
    .level-title {
        font-size: 14px;
        margin: 10px 0;
    }
    
    .result-explanation-new {
        padding: 10px;
        margin: 10px 0;
    }
    
    .result-explanation-new p {
        font-size: 12px;
    }
    
    .benefits-title h3 {
        font-size: 13px;
        margin: 12px 0 8px 0;
    }
    
    .benefits-list-new li {
        padding: 6px 8px;
        font-size: 10px;
        margin: 4px 0;
    }
    
    .benefits-list-new li::before {
        font-size: 11px;
        margin-right: 5px;
    }
    
    .result-cta-new {
        padding: 12px 10px;
        margin: 12px 0 5px 0;
    }
    
    .result-cta-new h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .result-cta-new p {
        font-size: 11px;
        margin: 5px 0 10px 0;
    }
    
    .btn-cta-new {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .final-guarantee {
        font-size: 8px;
        padding: 5px;
        margin-top: 6px;
    }
    
    .analysis-icon-container {
        margin: 15px 0;
        height: 80px;
    }
    
    .analysis-icon {
        font-size: 40px;
    }
    
    .loading-message {
        font-size: 13px;
        margin: 12px 0 15px 0;
    }
    
    .loading-percentage-container .progress-percent {
        font-size: 18px;
    }
    
    .progress-container {
        margin: 15px 0;
        max-width: 280px;
    }
    
    .progress-bar-dynamic {
        height: 10px;
    }
    
    .final-loading-title {
        font-size: 18px;
    }
    
    .final-loading-text {
        font-size: 14px;
    }
    
    .success-icon {
        font-size: 50px;
    }
    
    .final-benefits {
        padding: 12px;
    }
    
    .final-benefits h4 {
        font-size: 13px;
        margin: 0 0 8px 0;
    }
    
    .benefit-item {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .dot-1, .dot-2, .dot-3 {
        width: 10px;
        height: 10px;
    }
    
    .loading-dots-improved {
        gap: 6px;
    }
}

