/* ==========================================================================
   CANCLAIM OS - PUBLIC DESIGN SYSTEM v1.0 (ENTERPRISE EDITION)
   Archivo: style.css
   Descripción: Hoja de estilos maestra para el Portal Público y Wizard SPA.
   ========================================================================== */

/* ==========================================
   1. VARIABLES GLOBALES (THEME TOKENS)
   ========================================== */
:root {
    /* Identidad Corporativa (CanClaim) */
    --navy: #122543;          
    --navy-light: #1A365D;    
    --navy-dark: #0B172A;     
    --red-canclaim: #E32A26;  
    --red-hover: #C5221F;     
    --gold: #D4AF37;          
    
    /* Escala de Grises y Fondos */
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border-color: #E2E8F0;
    
    /* Texto */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-inverse: #FFFFFF;

    /* Sombras y Formas */
    --shadow-sm: 0 4px 6px -1px rgba(18, 37, 67, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(18, 37, 67, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(18, 37, 67, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Animaciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   2. RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    line-height: 1.2;
}

a {
    color: var(--red-canclaim);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--red-hover);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }
.mb-5 { margin-bottom: 40px; }
.bg-light { background-color: var(--bg-light); }

.padding-section {
    padding: 80px 0;
}

/* ==========================================
   3. PRELOADER CORPORATIVO
   ========================================== */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    align-items: center; justify-content: center;
    transition: opacity 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.plane-container {
    text-align: center;
    color: #FFF;
}

.plane-icon {
    font-size: 3rem;
    color: var(--red-canclaim);
    animation: fly 2s infinite ease-in-out;
}

@keyframes fly {
    0% { transform: translateY(10px) translateX(-15px) rotate(-5deg); opacity: 0.5; }
    50% { transform: translateY(-10px) translateX(15px) rotate(5deg); opacity: 1; }
    100% { transform: translateY(10px) translateX(-15px) rotate(-5deg); opacity: 0.5; }
}

.loading-text {
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   4. NAVEGACIÓN (NAVBAR & MOBILE)
   ========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    height: 45px;
    cursor: pointer;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.nav-item:hover { color: var(--navy); }

.nav-item.active {
    color: var(--navy);
    font-weight: 600;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red-canclaim);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher select {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--navy);
    cursor: pointer;
    outline: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px; left: 0; width: 100%; height: calc(100vh - 80px);
    background: var(--bg-main);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    flex: 1;
}

.nav-item-mobile {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg-light);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.nav-item-mobile i {
    color: var(--text-muted);
    width: 20px;
    text-align: center;
}

.nav-item-mobile.active i { color: var(--red-canclaim); }

.mobile-menu-footer {
    padding: 20px;
    background: var(--bg-light);
}

/* ==========================================
   5. BOTONES GLOBALES
   ========================================== */
.btn-primary, .btn-secondary, .btn-widget {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--red-canclaim);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(227, 42, 38, 0.2);
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 42, 38, 0.3);
}

.btn-primary:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: #FFF;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--navy);
}

.full-width { width: 100%; }

/* ==========================================
   6. LÓGICA SPA (CONTENEDORES DINÁMICOS)
   ========================================== */
.spa-container {
    padding-top: 80px; /* Compensa el navbar fix */
    min-height: calc(100vh - 80px);
}

.section-pane {
    display: none;
    opacity: 0;
    animation: fadeInPane 0.5s ease forwards;
}

.section-pane.active {
    display: block;
}

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

/* ==========================================
   7. HERO SECTION (HOME)
   ========================================== */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.badge-hero {
    display: inline-block;
    background: rgba(18, 37, 67, 0.05);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(18, 37, 67, 0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.btn-hero-main {
    background: var(--navy);
    color: #FFF;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-hero-main:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
}

.hero-trust-badges i { color: #10B981; } /* Verde Check */

/* Fake Widget (Glassmorphism) */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.glass-widget {
    background: #FFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    animation: floatWidget 6s ease-in-out infinite;
}

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

.widget-header {
    background: var(--navy);
    color: #FFF;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-body {
    padding: 25px;
}

.fake-input {
    padding: 14px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
}

.btn-widget {
    background: var(--red-canclaim);
    color: white;
    padding: 14px;
    font-size: 1rem;
}

/* ==========================================
   8. HOW IT WORKS & RIGHTS GRID
   ========================================== */
.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: #FFF;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.step-icon {
    width: 60px; height: 60px;
    background: rgba(227, 42, 38, 0.1);
    color: var(--red-canclaim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; color: var(--text-muted); }

/* Rights Grid (Inyectado por JS) */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.right-card {
    background: #FFF;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.rc-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.right-card h3 { font-size: 1.3rem; margin-bottom: 5px; }

.rc-alert {
    display: inline-block;
    background: rgba(18, 37, 67, 0.05);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.right-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.rc-list {
    list-style: none;
}

.rc-list li {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.rc-list li i { color: #10B981; margin-top: 3px; font-size: 0.8rem; }

/* ==========================================
   9. EL WIZARD DE RECLAMACIÓN (CORE ENGINE)
   ========================================== */
#wizard {
    background: var(--bg-gray);
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-container {
    background: #FFF;
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.wizard-header {
    background: var(--navy);
    color: #FFF;
    padding: 25px 40px;
}

.wizard-header h2 { color: #FFF; margin-bottom: 15px; font-size: 1.5rem; }

.wizard-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--red-canclaim);
    width: 0%;
    transition: width 0.5s ease;
}

.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.step-ind.active { color: #FFF; }

.wizard-body {
    padding: 40px;
}

.wizard-step {
    display: none;
    animation: fadeInRight 0.4s ease forwards;
}

.wizard-step.active { display: block; }

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.wizard-step h3 { font-size: 1.4rem; margin-bottom: 5px; }
.subtitle-small { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

/* Radio Cards (Opciones visuales) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.radio-card {
    position: relative;
}

.radio-card input[type="radio"] {
    position: absolute; opacity: 0; cursor: pointer;
}

.radio-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    text-align: center;
}

.radio-card label i { font-size: 1.8rem; }

.radio-card input[type="radio"]:checked + label {
    border-color: var(--navy);
    background: rgba(18, 37, 67, 0.02);
    color: var(--navy);
}

/* Inputs y Formularios del Wizard */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.input-group input, .luxury-select {
    padding: 14px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--bg-light);
    color: var(--text-main);
    transition: var(--transition);
}

.input-group input:focus, .luxury-select:focus {
    outline: none;
    border-color: var(--navy);
    background: #FFF;
    box-shadow: 0 0 0 3px rgba(18, 37, 67, 0.1);
}

/* Autocomplete Engine */
.search-group { position: relative; }
.autocomplete-dropdown {
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: #FFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}
.autocomplete-dropdown.show { display: block; }
.autocomplete-item {
    padding: 12px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 1px solid var(--bg-light);
}
.autocomplete-item:hover { background: var(--bg-light); color: var(--navy); }

/* Drag & Drop Zone */
.upload-zone { margin-top: 10px; }
.upload-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 8px; }
.drop-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 30px;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
}
.drop-area:hover, .drop-area.highlight { border-color: var(--navy); background: rgba(18, 37, 67, 0.02); }
.drop-area i { font-size: 2rem; color: var(--text-muted); margin-bottom: 10px; }
.drop-area p { font-size: 0.9rem; color: var(--text-muted); }
.drop-area p span { color: var(--navy); font-weight: 600; text-decoration: underline; }
.file-list { list-style: none; margin-top: 15px; }
.file-list li {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-gray); padding: 10px 15px; border-radius: var(--radius-sm); margin-bottom: 8px;
    font-size: 0.85rem; font-weight: 500;
}
.file-list li button { background: none; border: none; color: var(--red-canclaim); cursor: pointer; }

/* Signature Pad (Firma Electrónica) */
.signature-zone label { font-size: 0.85rem; font-weight: 600; color: var(--navy); display: block; }
.small-text { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.4; }
.signature-pad {
    width: 100%; height: 200px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #FFF;
    cursor: crosshair;
    touch-action: none; /* Crucial para evitar scroll en móviles al firmar */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.btn-clear-sig {
    background: none; border: none;
    color: var(--text-muted); font-size: 0.8rem; text-decoration: underline;
    cursor: pointer; margin-top: 8px; display: block; width: 100%; text-align: right;
}
.btn-clear-sig:hover { color: var(--navy); }

/* Checkbox Legal */
.checkbox-container {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.85rem; color: var(--text-muted); cursor: pointer;
}
.checkbox-container input { margin-top: 3px; cursor: pointer; }
.checkbox-container a { text-decoration: underline; }

/* Wizard Footer (Botones Next/Prev) */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.submit-footer { justify-content: flex-end; gap: 15px; }

/* Success Step */
.success-content { padding: 40px 20px; }
.success-icon {
    font-size: 4rem; color: #10B981; margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes scaleIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* ==========================================
   10. ABOUT US & FOOTER
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge-tag {
    display: inline-block;
    background: rgba(227, 42, 38, 0.1);
    color: var(--red-canclaim);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-text p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }

.founders-box { display: flex; gap: 20px; flex-wrap: wrap; }
.founder-card {
    display: flex; align-items: center; gap: 15px;
    background: #FFF; padding: 15px 20px; border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    flex: 1; min-width: 200px;
}
.founder-card i { font-size: 1.5rem; color: var(--navy); }
.founder-card strong { font-size: 0.95rem; color: var(--navy); }
.founder-card small { color: var(--text-muted); font-size: 0.8rem; }

.img-collage { position: relative; }
.img-main { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.floating-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--navy); color: #FFF;
    padding: 20px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg); text-align: center;
}
.floating-badge h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 5px; }
.floating-badge p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* Footer */
.footer {
    background: var(--navy-dark);
    color: #FFF;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 300px; margin-bottom: 20px; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: #FFF; margin-right: 10px;
}
.social-links a:hover { background: var(--red-canclaim); }

.footer-links h4, .footer-contact h4 { font-family: 'Inter', sans-serif; font-size: 1.1rem; margin-bottom: 20px; color: #FFF; }
.footer-links ul { list-style: none; }
.footer-links li {
    color: rgba(255,255,255,0.6); margin-bottom: 10px; font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.footer-links li:hover { color: var(--gold); transform: translateX(5px); }

.footer-contact p {
    color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px; color: rgba(255,255,255,0.4); font-size: 0.8rem;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-legal-links a { color: rgba(255,255,255,0.4); margin: 0 5px; }
.footer-legal-links a:hover { color: #FFF; }

/* ==========================================
   11. ELEMENTOS FLOTANTES
   ========================================== */
.float-wa {
    position: fixed;
    bottom: 30px; left: 30px;
    background: #25D366; color: #FFF;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: var(--shadow-lg);
    z-index: 1000; transition: var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); color: #FFF; }

/* Reveal Animations */
.reveal-element {
    opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-element.active { opacity: 1; transform: translateY(0); }

/* ==========================================
   12. BLOQUE MAESTRO DE RESPONSIVIDAD
   ========================================== */
@media (max-width: 1024px) {
    .hero-section { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 35px; }
    .hero-trust-badges { justify-content: center; }
    .hero-image-wrapper { justify-content: center; margin-top: 40px; }
    
    .about-grid { grid-template-columns: 1fr; }
    .floating-badge { right: 20px; }
}

@media (max-width: 768px) {
    /* Navbar Ajustes */
    .nav-center, .btn-check-claim { display: none; }
    .mobile-toggle { display: block; }
    
    /* Grids a 1 Columna */
    .steps-grid { grid-template-columns: 1fr; }
    .rights-grid { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand p { margin: 0 auto 20px; }
    .footer-contact p { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    
    .hero-content h1 { font-size: 2.5rem; }
    
    /* Ajustes del Wizard Móvil */
    .wizard-body { padding: 30px 20px; }
    .wizard-header { padding: 20px; }
    .wizard-footer { flex-direction: column-reverse; gap: 15px; }
    .wizard-footer button { width: 100%; }
    
    .float-wa { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .glass-widget { max-width: 100%; }
    .founders-box { flex-direction: column; }
    .padding-section { padding: 50px 0; }
}