/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #F8F9FA;
    font-size: 18px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografía */
h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 32px;
    text-align: center;
    color: #111827;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #111827;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #4B5563;
}

/* Botones */
.cta-button, .submit-button {
    background-color: #0057B7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 250ms ease-out;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-button:hover, .submit-button:hover {
    background-color: #004C9F;
    transform: scale(1.03);
}

.submit-button:disabled {
    background-color: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0057B7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #F0F7FF 0%, #F8F9FA 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 24px;
}

.text-highlight {
    color: #0057B7;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4B5563;
}

.hero-subtitle strong {
    color: #0057B7;
    font-weight: 700;
}

.hero-cta {
    margin-top: 32px;
}

/* Secciones generales */
.how-it-works-section, .benefits-section, .form-section {
    padding: 64px 0;
}

.form-section {
    background-color: #F8F9FA;
}

/* Grid de pasos */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 64px;
    margin-top: 64px;
}

.step-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 87, 183, 0.1);
    text-align: center;
    transition: transform 200ms ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #E6F0FF;
    color: #0057B7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    margin-bottom: 16px;
}

.step-description {
    color: #4B5563;
    line-height: 1.6;
}

/* Grid de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.benefit-title {
    margin-bottom: 16px;
}

.benefit-description {
    color: #4B5563;
    line-height: 1.6;
}

/* Formulario */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 87, 183, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

select.form-input {
    height: 52px;
    min-height: 52px;
    padding: 16px 24px 16px 16px;
    line-height: 1.4;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23111827' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 16px 24px 16px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 16px;
    color: #111827;
    transition: border-color 200ms, box-shadow 200ms;
}

.form-input:focus {
    outline: none;
    border-color: #0057B7;
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.15);
}

.form-textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #E5E7EB;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 200ms, background-color 200ms;
    position: relative;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #0057B7;
    background-color: #E6F0FF;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    pointer-events: none;
}

.file-upload-icon {
    width: 48px;
    height: 48px;
    color: #4B5563;
    margin: 0 auto 16px;
}

.file-upload-text {
    font-size: 16px;
    color: #111827;
    margin-bottom: 8px;
}

.file-upload-hint {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 0;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #0057B7;
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: #4B5563;
    cursor: pointer;
}

.checkbox-label a {
    color: #0057B7;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 48px;
    animation: fadeInUp 400ms ease-out;
}

.success-icon {
    font-size: 64px;
    color: #1E8449;
    margin-bottom: 24px;
}

.success-title {
    color: #1E8449;
    margin-bottom: 24px;
}

.success-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: #111827;
    color: #FFFFFF;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
    margin-bottom: 32px;
}

.footer-title {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-description {
    color: #9CA3AF;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 16px;
    transition: color 200ms;
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.footer-legal {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    p {
        font-size: 16px;
    }
    
    /* Secciones */
    .hero-section, .how-it-works-section, .benefits-section, .form-section {
        padding: 64px 0;
    }
    
    .hero-title {
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    /* Grid responsive */
    .steps-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .file-upload-area {
        padding: 24px 16px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .checkbox-input {
        margin-top: 0;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .form-container {
        padding: 24px 16px;
    }
    
    .file-upload-area {
        padding: 20px 12px;
    }
    
    .file-upload-text {
        font-size: 14px;
    }
    
    .file-upload-hint {
        font-size: 12px;
    }
}

/* Animaciones */
@media (prefers-reduced-motion: no-preference) {
    .step-card {
        animation: fadeInUp 600ms ease-out;
    }
    
    .step-card:nth-child(2) {
        animation-delay: 200ms;
    }
    
    .step-card:nth-child(3) {
        animation-delay: 400ms;
    }
}

/* Estados de focus para accesibilidad */
button:focus,
input:focus,
select:focus,
textarea:focus,
.checkbox-input:focus,
.file-upload-area:focus {
    outline: 2px solid #0057B7;
    outline-offset: 2px;
}

/* Estados de loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Estados de error */
.form-input.error {
    border-color: #D92D20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.15);
}

.error-message {
    color: #D92D20;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

/* Mejoras de UX */
.success-message,
.error-message {
    animation: fadeInUp 300ms ease-out;
}

.file-selected .file-upload-text {
    color: #0057B7;
    font-weight: 600;
}

/* Estilos para upload de múltiples archivos */
.file-upload-container {
    position: relative;
}

.files-list {
    margin-top: 20px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
    background-color: #F9FAFB;
}

.files-list-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
}

.files-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 40px;
}

.no-files-message {
    color: #9CA3AF;
    font-style: italic;
    margin: 8px 0;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: white;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.file-item:hover {
    border-color: #0057B7;
    box-shadow: 0 2px 4px rgba(0, 87, 183, 0.1);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.file-icon {
    width: 20px;
    height: 20px;
    color: #0057B7;
    flex-shrink: 0;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 2px 0;
    word-break: break-all;
}

.file-size {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

.file-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 4px;
    color: #DC2626;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.file-remove-btn:hover {
    background-color: #DC2626;
    color: white;
    border-color: #DC2626;
}

.file-remove-btn:focus {
    outline: 2px solid #0057B7;
    outline-offset: 2px;
}

.file-remove-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Estado de dragover mejorado */
.file-upload-area.dragover {
    background-color: #EFF6FF;
    border-color: #0057B7;
    border-style: dashed;
}

.file-upload-area.dragover .file-upload-icon {
    color: #0057B7;
}

.file-upload-area.dragover .file-upload-text {
    color: #0057B7;
    font-weight: 600;
}

/* Indicador de múltiples archivos */
.file-upload-area.has-files .file-upload-text {
    color: #1E8449;
    font-weight: 600;
}

.file-upload-area.has-files .file-upload-hint {
    color: #1E8449;
}

/* Print styles */
@media print {
    .footer,
    .form-section,
    .hero-section {
        display: none;
    }
    
    body {
        background-color: white;
    }
}

/* Placeholders dinámicos para consentimiento */
.placeholder-dinamico {
    background-color: #E6F0FF;
    color: #0057B7;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
    font-style: italic;
    border: 1px solid #0057B7;
    transition: all 0.3s ease;
}

.placeholder-dinamico:not([data-filled="true"]) {
    background-color: #FFF3CD;
    color: #856404;
    border-color: #856404;
}

.placeholder-dinamico[data-filled="true"] {
    background-color: #E8F5E8;
    color: #2E7D32;
    border-color: #2E7D32;
}

/* Enlace de ayuda del banco */
.banco-help-link {
    margin-top: 8px;
    padding: 8px 12px;
    background-color: #F0F9FF;
    border: 1px solid #0057B7;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0057B7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #004C9F;
    text-decoration: underline;
}

.help-link svg {
    flex-shrink: 0;
}

/* Animación para el enlace de ayuda */
.banco-help-link {
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NUEVOS ESTILOS PARA LA NUEVA ESTRUCTURA ===== */

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    color: #374151;
}

.logo-text-highlight {
    color: #0057B7;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0057B7;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0057B7;
}

/* Estimator Section */
.estimator-section {
    padding: 24px 0;
    background-color: #F8F9FA;
}

.estimator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.estimator-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0, 87, 183, 0.08);
    border: 1px solid #E5E7EB;
    border-top: 3px solid #0057B7;
    max-width: 600px;
    width: 100%;
}

.estimator-title {
    text-align: center;
    color: #111827;
    margin-bottom: 8px;
}

.estimator-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 32px;
}

/* Radio buttons customizados */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.radio-option:hover {
    border-color: #0057B7;
    background-color: #F0F9FF;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #0057B7;
    background-color: #0057B7;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option input[type="radio"]:checked ~ .radio-text {
    color: #0057B7;
    font-weight: 600;
}

.radio-text {
    color: #4B5563;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Botón de estimación */
.estimate-btn {
    width: 100%;
    margin-top: 24px;
}

/* Resultado de estimación */
.estimation-result {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: linear-gradient(135deg, #0057B7 0%, #004C9F 100%);
    color: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.result-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.result-title {
    color: white;
    margin-bottom: 16px;
}

.result-amount {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.result-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-size: 16px;
}

.result-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.result-card .cta-button {
    background-color: white;
    color: #0057B7;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.result-card .cta-button:hover {
    background-color: #F3F4F6;
    transform: translateY(-2px);
}

/* Bloque de confianza */
.trust-block {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
}

.trust-icon {
    font-size: 18px;
}

.trust-text {
    color: #059669;
    font-weight: 600;
    font-size: 14px;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .estimator-card {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .radio-group {
        gap: 8px;
    }
    
    .radio-option {
        padding: 10px 12px;
    }
    
    .trust-block {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .trust-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .result-card {
        padding: 24px 20px;
    }
    
    .result-amount {
        font-size: 20px;
    }
}

/* Spinner para estimación */
.estimate-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.estimate-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Ajustes para la página de reclamación */
.reclamacion-page .hero-section {
    padding: 60px 0;
}

.reclamacion-page .form-section {
    padding: 80px 0;
}

.reclamacion-page .benefits-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

/* ===== NUEVOS ESTILOS PARA DISEÑO MEJORADO ===== */

/* Logo SVG */
.logo-image {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

/* Formulario compacto */
.estimator-form.compact {
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group.compact {
    margin-bottom: 0;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-select:focus {
    outline: none;
    border-color: #0057B7;
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1);
}

.form-select:hover {
    border-color: #D1D5DB;
}

/* Resultado con celebración */
.result-card.celebration {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    animation: celebrate 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.result-card.celebration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes celebrate {
    0% {
        transform: scale(0.9) rotate(-5deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.result-amount-highlight {
    margin: 24px 0;
    text-align: center;
}

.amount-highlight {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    display: block;
    line-height: 1;
}

.amount-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
    display: block;
}

/* CTA prominente */
.cta-button.prominent {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 32px;
    border-radius: 12px;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
    transform: scale(1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.cta-button.prominent:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.6), 0 0 20px rgba(245, 158, 11, 0.3);
    }
}

/* Iconos en etiquetas */
.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #374151;
}

/* Texto explicativo */
.explanation-text {
    background-color: white;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #E5E7EB;
    max-width: 600px;
    margin: 0 auto;
}

.explanation-text p {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5;
}
.trust-block {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid #E2E8F0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.trust-item:last-child {
    border-bottom: none;
}

.trust-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.trust-text {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

/* Responsive para formulario compacto */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .amount-highlight {
        font-size: 36px;
    }
    
    .cta-button.prominent {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .trust-block {
        padding: 20px 16px;
    }
}

/* Animaciones adicionales */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}