/* --- 1. VARIABLES & RESET (BASE TECH) --- */
:root {
    /* Paleta de Alto Impacto */
    --primary-orange: #f97316;       /* Naranja Marca */
    --primary-hover: #ea580c;
    --primary-glow: rgba(249, 115, 22, 0.6); /* Brillo más fuerte */
    
    --dark-blue: #0f172a;            /* Fondo Tech Profundo */
    --card-dark: rgba(30, 41, 59, 0.7); /* Cristal Oscuro */
    --mid-blue: #1e293b;
    --light-bg: #f8fafc;
    
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-light: #64748b;
    
    --border-subtle: #e2e8f0;
    
    /* Sombras Premium (Estilo Apple/Linear) */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-neon: 0 0 20px rgba(249, 115, 22, 0.15); /* Resplandor sutil */
    --shadow-float: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    
    --radius: 16px; /* Curvas más modernas */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body { 
    font-family: var(--font-main); 
    color: var(--text-main); 
    background-color: var(--light-bg); 
    line-height: 1.6; 
    font-size: 16px; 
    -webkit-font-smoothing: antialiased; /* Texto nítido en iPhone */
}

a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
input, select, button { font-family: inherit; }

/* --- UTILITIES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.narrow { max-width: 800px; }
.section { padding: 80px 0; position: relative; }
.text-center { text-align: center; }

/* Gradiente de Texto Poderoso */
.text-gradient { 
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%); 
    -webkit-background-clip: text; background-clip: text; color: transparent; 
}

/* --- BOTONES (ACCIÓN PURA) --- */
.btn { 
    display: inline-flex; align-items: center; justify-content: center; 
    padding: 14px 28px; border-radius: 12px; font-weight: 700; 
    text-align: center; cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    font-size: 1rem; position: relative; overflow: hidden; letter-spacing: 0.5px;
}

.btn-primary { 
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); 
    color: #ffffff; 
    box-shadow: 0 8px 20px -5px var(--primary-glow);
}
.btn-primary:hover { 
    transform: translateY(-2px) scale(1.02); 
    box-shadow: 0 12px 25px -5px var(--primary-glow);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline { 
    background: transparent; border: 2px solid var(--dark-blue); color: var(--dark-blue);
}
.btn-outline:hover { 
    background: var(--dark-blue); color: #fff; transform: translateY(-2px);
}
.btn-block { width: 100%; }

.btn-nav {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); 
    color: white !important; padding: 10px 20px; font-size: 0.9rem; border-radius: 8px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3); font-weight: 600;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4); }

/* --- NAVBAR --- */
.navbar { 
    background: rgba(255, 255, 255, 0.92); 
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    position: sticky; top: 0; z-index: 1000; 
    border-bottom: 1px solid rgba(0,0,0,0.06); 
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo img { height: 42px; width: auto; display: block; }

.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.main-nav a:hover { color: var(--primary-orange); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--dark-blue); margin: 5px 0; border-radius: 3px; }

/* --- HERO SECTION --- */
.hero { 
    position: relative; padding: 60px 0 90px; 
    background-color: var(--dark-blue); color: white; 
    overflow: hidden; 
}
.hero-grid { 
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; 
    align-items: center; position: relative; z-index: 10; 
}

/* Badge Brillante */
.badge-hero { 
    background: rgba(255, 255, 255, 0.08); color: #fdba74; 
    padding: 8px 16px; border-radius: 30px; font-size: 0.8rem; font-weight: 700; 
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.15); text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.hero-title { 
    font-size: 3.5rem; line-height: 1.1; font-weight: 900; 
    margin-bottom: 20px; letter-spacing: -0.03em; 
}
.hero-subtitle { 
    font-size: 1.15rem; color: #cbd5e1; margin-bottom: 40px; 
    max-width: 520px; line-height: 1.6; 
}

.hero-stats { display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--primary-orange); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 0.85rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- FORMULARIO GLASS (ALTA DEFINICIÓN) --- */
.hero-form-wrapper { position: relative; z-index: 10; }
.glass-card { 
    background: rgba(255, 255, 255, 0.96); 
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 35px; border-radius: var(--radius); 
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5); /* Sombra fuerte para profundidad */
    border: 1px solid rgba(255,255,255,0.3);
}
.card-header h3 { color: var(--dark-blue); margin-bottom: 5px; font-size: 1.5rem; font-weight: 800; }
.card-header p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 25px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }

/* ESTILO DE INPUTS Y SELECTS (CORREGIDO PARA MOSTRAR FLECHA) */
input, select { 
    width: 100%; height: 54px; padding: 0 16px; 
    border: 1px solid #cbd5e1; border-radius: 12px; 
    background: #fff; color: var(--dark-blue); font-size: 16px; 
    outline: none; transition: 0.3s; font-weight: 500;
}

/* Ajuste específico para que el Select (Lista) muestre la flecha */
select {
    cursor: pointer;
    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='%23334155' 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 1rem center;
    background-size: 1em;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem; /* Espacio para que el texto no tape la flecha */
}

input:focus, select:focus { 
    border-color: var(--primary-orange); 
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); 
}
.form-footer { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 15px; }

/* --- BARRA ESTRATÉGICA --- */
.strategic-bar { 
    background: #fff; border-bottom: 1px solid var(--border-subtle); 
    padding: 30px 0; box-shadow: var(--shadow-sm); position: relative; z-index: 5; 
}
.strategic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.strategic-item { display: flex; align-items: center; gap: 15px; justify-content: center; }
.strat-icon { 
    width: 48px; height: 48px; background: #fff7ed; border-radius: 12px; 
    color: var(--primary-orange); display: flex; align-items: center; justify-content: center; 
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.1); /* Glow suave */
}
.strat-text h4 { font-size: 1rem; color: var(--dark-blue); font-weight: 800; margin-bottom: 2px; }
.strat-text p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.3; }

/* --- TRUST BAR --- */
.trust-bar { background: #f8fafc; padding: 40px 0; }
.trust-bar p { text-align: center; font-size: 0.85rem; color: #64748b; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; }
.logos-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; color: #475569; font-weight: 700; font-size: 1.1rem; align-items: center; opacity: 0.8; }

/* --- TABLA COMPARATIVA --- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--dark-blue); margin-bottom: 15px; font-weight: 800; letter-spacing: -0.02em; }
.section-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* PC */
.comparison-table-wrapper { 
    border-radius: var(--radius); overflow: hidden; 
    box-shadow: var(--shadow-card); background: #fff;
    display: block; 
}
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 24px 30px; text-align: left; border-bottom: 1px solid var(--border-subtle); vertical-align: middle; }
.comparison-table th { background: #f1f5f9; color: var(--text-dark); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; font-weight: 700; }
.comparison-table .us { background: #fff7ed; color: var(--primary-orange); border-bottom: 2px solid rgba(249, 115, 22, 0.2); }
.comparison-table td:last-child { background: #fff7ed; font-weight: 700; color: var(--dark-blue); font-size: 1.05rem; }

.mobile-comparison-cards { display: none; }

/* --- TECH SECTION --- */
.section-tech-bg {
    background-color: var(--dark-blue);
    background-image: url('tech_bg.jpg'); /* Si no existe, no carga, se queda en azul */
    background-size: cover; background-position: center; background-attachment: fixed;
}
.section-tech-bg::before {
    content: ''; position: absolute; inset: 0; 
    background: linear-gradient(180deg, rgba(15,23,42,0.97) 0%, rgba(15,23,42,0.9) 100%); z-index: 1;
}
.section-tech-bg .container { position: relative; z-index: 5; }

.section-tech-bg .section-header p {
    color: #ffffff; font-size: 1.25rem; font-weight: 500; opacity: 0.95; margin-top: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.text-highlight {
    color: #fdba74; font-weight: 700; position: relative; display: inline-block;
}
.text-highlight::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--primary-orange); opacity: 0.6;
}

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { 
    background: rgba(255,255,255,0.04); backdrop-filter: blur(12px);
    padding: 40px 30px; border-radius: var(--radius); 
    border: 1px solid rgba(255,255,255,0.1); text-align: center; 
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.step-card:hover { 
    transform: translateY(-8px); 
    background: rgba(255,255,255,0.08); 
    border-color: rgba(249, 115, 22, 0.4); 
}
.step-icon { font-size: 3.5rem; margin-bottom: 25px; display: block; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.step-card h3 { color: #fff; margin-bottom: 15px; font-size: 1.3rem; font-weight: 700; }
.step-card p { color: #cbd5e1; font-size: 1.05rem; line-height: 1.6; }

/* --- BOLETIN INFO GRID (MEJORADO) --- */
.boletin-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px;
}
.boletin-card {
    background: white; 
    padding: 30px 25px; 
    border-radius: 16px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-top: 4px solid transparent; /* Reserva espacio para el borde hover */
    position: relative;
    overflow: hidden;
}
.boletin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--primary-orange);
}
.boletin-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    background: #fff7ed;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.boletin-card h3 {
    color: var(--dark-blue); 
    font-size: 1.15rem; 
    margin-bottom: 10px; 
    font-weight: 800;
}
.boletin-card p {
    font-size: 0.95rem; 
    color: #475569;
    line-height: 1.5;
}

/* --- PRICING --- */
.pricing-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.pricing-card { 
    background: #fff; padding: 40px 30px; border-radius: var(--radius); 
    border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); 
    position: relative; transition: 0.3s;
}
.pricing-card:hover { border-color: #cbd5e1; box-shadow: var(--shadow-card); }
.pricing-card.featured { 
    border: 2px solid var(--primary-orange); 
    transform: scale(1.05); box-shadow: var(--shadow-float); z-index: 2; 
}
.popular-tag { 
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%); 
    background: var(--primary-orange); color: white; padding: 5px 20px; 
    border-radius: 20px; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    white-space: nowrap; 
}
.card-title { font-size: 1.4rem; font-weight: 800; color: var(--dark-blue); }
.price { font-size: 3rem; font-weight: 900; color: var(--dark-blue); margin: 15px 0 25px; letter-spacing: -1px; }
.price .period { font-size: 1rem; color: var(--text-light); font-weight: 500; }
.features-list li { margin-bottom: 14px; display: flex; gap: 10px; font-size: 0.95rem; align-items: flex-start; }
.check-icon { color: var(--primary-orange); flex-shrink: 0; margin-top: 2px; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testimonial-box { 
    background: #fff; padding: 35px; border-radius: var(--radius); 
    border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); 
}
.user-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.user-img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; background: #cbd5e1; border: 2px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.user-info strong { display: block; color: var(--dark-blue); font-size: 1.05rem; }
.user-info span { font-size: 0.85rem; color: var(--text-light); }
.testimonial-box p { font-style: italic; color: var(--text-main); margin-bottom: 15px; font-size: 1.05rem; }
.stars { color: #fbbf24; letter-spacing: 2px; }

/* --- FAQ --- */
.faq-item { 
    background: #fff; border: 1px solid var(--border-subtle); 
    border-radius: var(--radius); margin-bottom: 15px; overflow: hidden; 
}
.faq-item summary { 
    padding: 22px; cursor: pointer; font-weight: 700; color: var(--dark-blue); 
    display: flex; justify-content: space-between; align-items: center; list-style: none;
    font-size: 1.05rem;
}
.faq-topic-icon { color: var(--primary-orange); margin-right: 10px; }
.faq-content { padding: 0 22px 22px; color: var(--text-main); line-height: 1.7; border-top: 1px solid #f1f5f9; }

/* --- FOOTER --- */
footer { background: var(--dark-blue); color: #fff; padding: 80px 0 30px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-logo { height: 35px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; font-weight: 700; }
.footer-col a { color: #94a3b8; display: block; margin-bottom: 12px; transition: 0.2s; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; transform: translateX(5px); }
.contact-col p { display: flex; align-items: center; gap: 10px; color: #cbd5e1; margin-bottom: 15px; font-size: 0.95rem; }
.icon-sm { color: var(--primary-orange); width: 18px; height: 18px; min-width: 18px; }
.copyright { text-align: center; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); color: #64748b; font-size: 0.85rem; }

/* NUEVOS ESTILOS PARA REDES SOCIALES EN FOOTER */
.social-link {
    display: flex; align-items: center; gap: 10px; color: #fff; 
    margin-bottom: 10px; text-decoration: none; font-weight: 600;
    transition: transform 0.2s;
}
.social-link:hover {
    transform: translateX(5px);
    color: var(--primary-orange);
}

/* --- MODALS --- */
.modal { 
    display: none; position: fixed; inset: 0; 
    background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(8px);
    z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.modal-content { 
    background: #fff; width: 100%; max-width: 450px; 
    border-radius: 20px; overflow: hidden; position: relative; 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); 
    animation: slideUp 0.3s ease-out;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header { background: #f8fafc; padding: 25px; text-align: center; border-bottom: 1px solid var(--border-subtle); }
.modal-amount { font-size: 2.5rem; font-weight: 900; color: var(--primary-orange); }
.bcv-link { font-size: 0.85rem; color: var(--text-light); text-decoration: underline; cursor: pointer; }
.modal-body { padding: 30px; }
.payment-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid #f1f5f9; }
.pay-value { font-weight: 700; color: var(--dark-blue); font-family: monospace; font-size: 1.1rem; }
.btn-copy { 
    background: rgba(249, 115, 22, 0.1); color: var(--primary-orange); border: none; 
    padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 0.8rem; font-weight: 700; margin-left: 10px;
}
.close-button { position: absolute; top: 15px; right: 15px; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #64748b; }
.legal-text { max-height: 50vh; overflow-y: auto; text-align: justify; padding: 25px; font-size: 0.9rem; color: var(--text-main); }
.legal-text p { margin-bottom: 10px; }

/* --- STICKY ELEMENTS --- */
.wa-float { 
    position: fixed; bottom: 90px; right: 20px; background: #25D366; 
    width: 55px; height: 55px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 999; 
    transition: 0.3s; 
}
.wa-float:hover { transform: scale(1.1); }
.wa-float img { width: 30px; height: 30px; }

.mobile-sticky-bar {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1); padding: 12px 20px;
    z-index: 1001; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    animation: slideUp 0.5s ease-out 1s forwards; transform: translateY(100%);
}
.btn-sticky-mobile {
    width: 100%; display: block;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white; font-weight: 800; font-size: 1rem;
    padding: 14px; border-radius: 10px; border: none;
    text-align: center; box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    text-transform: uppercase; letter-spacing: 1px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .container { padding: 0 24px; } /* Ajuste de espaciado lateral móvil */
    .nav-toggle { display: block; }
    .main-nav { 
        display: none; position: absolute; top: 72px; left: 0; right: 0; 
        background: #fff; flex-direction: column; padding: 30px; 
        box-shadow: var(--shadow-card); border-top: 1px solid #e2e8f0; 
    }
    .main-nav.active { display: flex; }

    .strategic-grid { grid-template-columns: 1fr; gap: 15px; text-align: left; }
    .strategic-item { justify-content: flex-start; }

    .hero { padding: 40px 0; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-title { font-size: 2.2rem; } /* Ajuste de tamaño de fuente */
    
    .hero-stats { 
        gap: 15px; /* Reducido de 40px */
        justify-content: center; /* Centrado perfecto */
        flex-wrap: nowrap; /* Mantiene una línea */
    }
    .stat-num { 
        font-size: 1.9rem; /* Ligeramente más pequeño para evitar cortes */
    }
    
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    footer { padding-bottom: 90px; } 
    
    .pricing-card.featured { transform: scale(1); }
    .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }

    /* REDISEÑO MÓVIL: BLOQUES APILADOS */
    .comparison-table-wrapper { display: none; }
    .mobile-comparison-cards { display: flex; flex-direction: column; gap: 15px; }
    
    .vs-card {
        background: white; border: 1px solid #e2e8f0; border-radius: 14px;
        padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }
    .vs-card h4 {
        color: var(--dark-blue); font-size: 1rem; font-weight: 800;
        margin-bottom: 15px; text-align: center; text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .vs-grid { display: flex; flex-direction: column; gap: 8px; }
    
    .vs-item { padding: 14px; border-radius: 10px; font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 10px; }
    
    .vs-item.bad { 
        background: #f1f5f9; color: #94a3b8; 
        border-left: 4px solid #cbd5e1;
    }
    
    .vs-item.good { 
        background: #fff7ed; color: var(--dark-blue); 
        border-left: 4px solid var(--primary-orange);
        font-weight: 700; box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15); /* Sombra resaltada */
    }

    .mobile-sticky-bar { display: block; }

    /* ========================================================
       🚨 FIX DE DOUGLIMAR (CELDA CORTADA) 
       ======================================================== */
    /* 1. Reducimos el espacio entre las dos columnas para que tengan más ancho */
    .form-row {
        gap: 8px !important;
    }

    /* 2. Achicamos la letra y el relleno SOLO en las celdas compartidas (Nombre, Ubicación) */
    .form-row input, .form-row select {
        font-size: 13px !important; /* Letra más pequeña para que quepa */
        padding-left: 10px !important; /* Menos relleno a la izquierda */
        padding-right: 10px !important; /* Menos relleno a la derecha */
        white-space: nowrap; /* Evita que el texto salte */
    }

    /* 3. Ajustamos la flechita del Select para que no monte el texto */
    .form-row select {
        background-position: right 0.3rem center !important;
        padding-right: 20px !important; /* Espacio para la flecha */
    }
    
    /* 4. Mantenemos el campo GRANDE (Área Profesional) con letra normal */
    .form-group select {
        font-size: 16px !important; /* Este no se toca */
    }
}

/* --- ADD-ONS PREMIUM --- */
/* 1. STATUS DOT (VERSIÓN POTENCIADA - ESTEROIDES) */
.status-dot {
    height: 12px; 
    width: 12px;
    background-color: #22c55e; /* Verde intenso */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.9); /* Sombra intensa y difusa */
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.9); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); } /* Pulso más expansivo */
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* 2. PULSE EFFECT BOTÓN */
.pulse-effect {
    animation: subtle-pulse 3s infinite;
}
@keyframes subtle-pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* 3. ALERT BOX (MODAL) */
.alert-box {
    background: #fff7ed;
    border-left: 4px solid var(--primary-orange);
    color: var(--dark-blue);
    padding: 12px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* 4. TRUST BADGES */
.trust-badge {
    background: rgba(15, 23, 42, 0.05);
    color: #64748b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.05);
    display: inline-block;
}

/* 5. INPUT FIX */
input[type="text"], input[type="tel"], select {
    font-size: 16px !important;
}