SwiftLink SE Air
:root { --bg: #0a0a0a; --orange: #e84c1e; --cream: #f0ede8; --blue: #1ab8e8; --gray: #1c1c1c; --gray2: #2a2a2a; --text-muted: #888; --white: #ffffff; --font-head: 'Barlow Condensed ', 'Arial Narrow', Arial, sans-serif; --font-body: 'Inter', Arial, sans-serif; } @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Inter:wght@400;500;600&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } body { background: var(--bg); color: var(--cream); font-family: var(--font-body); font-size: 16px; line-height: 1.6; } /* ── HERO ── */ .hero { padding: 60px 24px 48px; max-width: 860px; margin: 0 auto; text-align: center; } .hero-eyebrow { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; } .hero h1 { font-family: var(--font-head); font-weight: 900; font-size: clamp(42px, 8vw, 72px); line-height: 0.95; text-transform: uppercase; color: var(--white); margin-bottom: 20px; letter-spacing: -0.01em; } .hero h1 span { color: var(--orange); } .hero-sub { font-size: 17px; color: var(--text-muted); max-width: 580px; margin: 0 auto 32px; line-height: 1.55; } .hero-sub strong { color: var(--cream); } /* ── STAT BAR ── */ .stat-bar { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; border: 1px solid #222; border-radius: 12px; overflow: hidden; max-width: 700px; margin: 0 auto 56px; } .stat-item { flex: 1; min-width: 130px; padding: 20px 16px; text-align: center; border-right: 1px solid #222; background: var(--gray); } .stat-item:last-child { border-right: none; } .stat-num { font-family: var(--font-head); font-weight: 900; font-size: 28px; color: var(--blue); line-height: 1; margin-bottom: 4px; } .stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; } /* ── SECTIONS ── */ .section { max-width: 860px; margin: 0 auto; padding: 0 24px 64px; } .section-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 5vw, 42px); text-transform: uppercase; color: var(--white); margin-bottom: 28px; letter-spacing: -0.01em; } .section-title span { color: var(--orange); } /* ── DESCRIPTION ── */ .description-block { background: var(--gray); border: 1px solid #252525; border-radius: 12px; padding: 32px; margin-bottom: 16px; font-size: 16px; color: var(--cream); line-height: 1.7; } .description-block p { margin-bottom: 16px; } .description-block p:last-child { margin-bottom: 0; } /* ── BENEFITS ── */ .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; } .benefit-card { background: var(--gray); border: 1px solid #252525; border-radius: 12px; padding: 24px; transition: border-color 0.2s; } .benefit-card:hover { border-color: var(--orange); } .benefit-icon { font-size: 28px; margin-bottom: 12px; display: block; } .benefit-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--white); margin-bottom: 8px; letter-spacing: 0.02em; } .benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; } /* ── STEPS ── */ .steps { display: flex; flex-direction: column; gap: 4px; } .step { display: flex; align-items: flex-start; gap: 20px; background: var(--gray); border: 1px solid #252525; border-radius: 12px; padding: 24px; } .step-num { font-family: var(--font-head); font-weight: 900; font-size: 36px; color: var(--orange); line-height: 1; flex-shrink: 0; width: 44px; } .step-content h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--white); margin-bottom: 6px; letter-spacing: 0.02em; } .step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.5; } /* ── COMPAT ── */ .compat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; } .compat-item { background: var(--gray); border: 1px solid #252525; border-radius: 10px; padding: 18px 12px; text-align: center; font-size: 13px; color: var(--cream); font-weight: 500; } .compat-item .compat-icon { font-size: 26px; display: block; margin-bottom: 8px; } /* ── SPECS TABLE ── */ .specs-table { width: 100%; border-collapse: collapse; font-size: 14px; } .specs-table tr { border-bottom: 1px solid #1e1e1e; } .specs-table tr:last-child { border-bottom: none; } .specs-table td { padding: 14px 16px; background: var(--gray); } .specs-table td:first-child { color: var(--text-muted); font-weight: 500; width: 45%; border-right: 1px solid #1e1e1e; } .specs-table td:last-child { color: var(--cream); font-weight: 600; } .specs-table tr:first-child td:first-child { border-radius: 12px 0 0 0; } .specs-table tr:first-child td:last-child { border-radius: 0 12px 0 0; } .specs-table tr:last-child td:first-child { border-radius: 0 0 0 12px; } .specs-table tr:last-child td:last-child { border-radius: 0 0 12px 0; } /* ── REVIEWS ── */ .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; } .review-card { background: var(--gray); border: 1px solid #252525; border-radius: 12px; padding: 22px; } .review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; } .review-text { font-size: 14px; color: var(--cream); line-height: 1.6; margin-bottom: 14px; font-style: italic; } .review-author { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; } /* ── ALERT ── */ .alert-box { background: #1a1008; border: 1px solid #e84c1e40; border-left: 3px solid var(--orange); border-radius: 0 10px 10px 0; padding: 20px 24px; margin-bottom: 12px; font-size: 14px; color: var(--cream); line-height: 1.6; } .alert-box strong { color: var(--orange); display: block; margin-bottom: 4px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; } .info-box { background: #0d1f2d; border: 1px solid #1ab8e840; border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; padding: 20px 24px; margin-bottom: 12px; font-size: 14px; color: var(--cream); line-height: 1.6; } .info-box strong { color: var(--blue); display: block; margin-bottom: 4px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; } /* ── DIVIDER ── */ .divider { border: none; border-top: 1px solid #1a1a1a; max-width: 812px; margin: 0 auto 64px; } /* ── RATING SUMMARY ── */ .rating-summary { display: flex; align-items: center; gap: 20px; background: var(--gray); border: 1px solid #252525; border-radius: 12px; padding: 24px 28px; margin-bottom: 16px; } .rating-big { font-family: var(--font-head); font-weight: 900; font-size: 56px; color: var(--white); line-height: 1; flex-shrink: 0; } .rating-detail { flex: 1; } .rating-stars-big { color: #f59e0b; font-size: 20px; letter-spacing: 3px; margin-bottom: 4px; } .rating-count { font-size: 13px; color: var(--text-muted); } /* ── FOOTER ── */ .footer-badge { text-align: center; padding: 40px 24px 60px; color: var(--text-muted); font-size: 13px; } .footer-badge .brand { font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--orange); display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.1em; } CarPlay y Android Auto.Sin cables.De verdad. El SwiftLink SE Air convierte tu CarPlay o Android Auto con cable en completamente inalámbrico en menos de 10 segundos. Sin instalaciones. Sin apps. Solo enchufas y funciona. 5s Conexión automática +800 Modelos de coche ≈2cm Tamaño compacto ¿Qué es el SwiftLink SE Air? El SwiftLink SE Air es un adaptador ultracompacto que transforma tu sistema CarPlay o Android Auto con cable en una experiencia 100% inalámbrica. Lo conectas al puerto USB de tu coche una sola vez y a partir de ahí tu móvil se enlaza automáticamente cada vez que subes al vehículo. Usa tecnología Bluetooth + Wi-Fi dual para lograr una conexión estable, rápida y sin cortes. Su procesador de doble núcleo MIPS garantiza transmisión fluida para navegación, música y llamadas, exactamente igual que si estuvieras usando el cable, pero sin el cable. Diseño plug & play: sin instalar apps, sin configurar nada complicado. En menos de un minuto tienes tu coche modernizado. Por qué cambia todo Conexión automática En cuanto arrancas el coche, el SwiftLink se conecta solo a tu móvil en 5–10 segundos. Sin sacar el teléfono del bolsillo ni enchufar nada. +800 modelos compatibles Compatible con la gran mayoría de coches que ya tienen CarPlay o Android Auto por cable. Si tu coche tiene el puerto USB, lo más probable es que funcione. Plug & Play total Sin apps, sin drivers, sin configuraciones raras. Lo enchufas al USB del coche, sigues tres pasos sencillos y listo. Instalación en menos de 2 minutos. Señal estable y fluida Procesador de doble núcleo MIPS con conexión Bluetooth + Wi-Fi. Sin lag, sin cortes, sin retrasos. Igual que el cable pero sin el cable. Ultracompacto y discreto Con apenas 2 cm de tamaño, se queda conectado al puerto USB sin molestar, sin ocupar espacio y sin llamar la atención. Compatible iPhone y Android Funciona con iPhone (iOS 10 o superior) y Android (Android 11 o superior). Un solo adaptador para cualquier móvil de la familia. Cómo se instala 1 Conecta el SwiftLink SE Air al USB del coche Enchufa el adaptador al puerto USB o USB-C de tu vehículo. 2 Empareja tu móvil por primera vez Tarda menos de 2 minutos y solo tienes que hacerlo una vez. 3 A partir de ahí, todo automático Cada vez que entres al coche y lo arranques, el SwiftLink Ficha técnica Modelo SwiftLink SE Air Función Adaptador CarPlay / Android Auto inalámbrico Conexión USB-A / USB-C Tecnología Bluetooth + Wi-Fi dual Procesador Doble núcleo MIPS Tiempo de conexión 5–10 segundos Compatibilidad iOS iOS 10 o superior Compatibilidad Android Android 11 o superior Modelos de coche compatibles +800 modelos Tamaño ≈ 2 cm (ultracompacto) Instalación Plug & Play, sin apps Precio 23,99 €
More you might like
Related
Air-King SwiftLink
Related
SwiftLink SE Max
Related
Sea-Dweller SwiftLink
Related