- tokens.css: CSS custom properties para Tema A (Industrial) y Tema B (Moderno) - design-system/index.html: 20 componentes con theme switcher - social-media/: 3 propuestas de look & feel para redes sociales - branding/: opciones de branding y look & feel aprobadas - Brief del proyecto incluido
1253 lines
48 KiB
HTML
1253 lines
48 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nexus Autoparts - Look & Feel Proposals</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;800&family=Barlow:wght@300;400;500;700&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;700&family=Bebas+Neue&family=Oswald:wght@300;400;600;700&family=Archivo+Black&family=Work+Sans:wght@300;400;500;600&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
|
|
<style>
|
|
/* ===== RESET & BASE ===== */
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #fff; scroll-behavior: smooth; }
|
|
img { max-width: 100%; }
|
|
|
|
/* ===== NAVIGATION ===== */
|
|
.page-nav {
|
|
position: sticky; top: 0; z-index: 100;
|
|
background: rgba(10,10,10,0.95); backdrop-filter: blur(10px);
|
|
border-bottom: 1px solid #222;
|
|
padding: 15px 0;
|
|
}
|
|
.page-nav-inner {
|
|
max-width: 1200px; margin: 0 auto; padding: 0 20px;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
}
|
|
.page-nav h1 { font-size: 1rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: #888; }
|
|
.page-nav-links { display: flex; gap: 8px; }
|
|
.page-nav-links a {
|
|
padding: 8px 16px; border-radius: 6px; text-decoration: none;
|
|
font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; transition: all 0.2s;
|
|
}
|
|
.nav-a { background: #F5A623; color: #000; }
|
|
.nav-b { background: #FF6B35; color: #fff; }
|
|
.nav-c { background: #E63946; color: #fff; }
|
|
.nav-e { background: #1B4965; color: #F5F0E8; }
|
|
.page-nav-links a:hover { transform: translateY(-2px); opacity: 0.9; }
|
|
|
|
/* ===== SECTION SEPARATOR ===== */
|
|
.brand-section {
|
|
max-width: 1400px; margin: 0 auto;
|
|
padding: 80px 20px 40px;
|
|
}
|
|
.brand-title {
|
|
text-align: center; margin-bottom: 60px;
|
|
}
|
|
.brand-title h2 {
|
|
font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
|
|
padding: 10px 24px; border-radius: 50px; display: inline-block; margin-bottom: 16px;
|
|
}
|
|
.brand-title h3 { font-size: 2rem; font-weight: 300; color: #ccc; margin-bottom: 8px; }
|
|
.brand-title p { color: #666; font-size: 0.95rem; }
|
|
|
|
/* ===== MOCKUP FRAME ===== */
|
|
.mockup-browser {
|
|
border-radius: 12px; overflow: hidden; margin-bottom: 50px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
|
|
}
|
|
.browser-bar {
|
|
padding: 12px 16px; display: flex; align-items: center; gap: 8px;
|
|
}
|
|
.browser-dot { width: 12px; height: 12px; border-radius: 50%; }
|
|
.browser-url {
|
|
flex: 1; margin-left: 12px; padding: 6px 16px; border-radius: 6px;
|
|
font-size: 0.75rem; font-family: monospace;
|
|
}
|
|
|
|
/* ===== A: INDUSTRIAL ROBUSTO ===== */
|
|
.a-wrap { background: #111; }
|
|
.a-title h2 { background: #F5A623; color: #000; }
|
|
.a-browser-bar { background: #1a1a1a; }
|
|
.a-browser-bar .browser-dot:nth-child(1) { background: #ff5f56; }
|
|
.a-browser-bar .browser-dot:nth-child(2) { background: #ffbd2e; }
|
|
.a-browser-bar .browser-dot:nth-child(3) { background: #27c93f; }
|
|
.a-browser-bar .browser-url { background: #111; color: #888; }
|
|
|
|
/* Navbar A */
|
|
.a-navbar {
|
|
background: #0d0d0d; padding: 16px 40px;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
border-bottom: 3px solid #F5A623;
|
|
}
|
|
.a-navbar .logo { display: flex; align-items: center; gap: 12px; }
|
|
.a-navbar .logo-mark {
|
|
width: 42px; height: 42px; background: #F5A623; color: #000;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem;
|
|
clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
|
|
}
|
|
.a-navbar .logo-name {
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
|
|
font-size: 1.5rem; color: #fff; text-transform: uppercase; letter-spacing: 0.05em;
|
|
}
|
|
.a-navbar .logo-name small {
|
|
display: block; font-family: 'Barlow', sans-serif; font-weight: 400;
|
|
font-size: 0.6rem; letter-spacing: 0.25em; color: #F5A623; text-transform: uppercase;
|
|
}
|
|
.a-navbar nav a {
|
|
color: #aaa; text-decoration: none; font-family: 'Barlow Condensed', sans-serif;
|
|
font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em;
|
|
margin-left: 30px; transition: color 0.2s;
|
|
}
|
|
.a-navbar nav a:hover { color: #F5A623; }
|
|
|
|
/* Hero A */
|
|
.a-hero {
|
|
background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #252525 100%);
|
|
padding: 100px 60px; position: relative; overflow: hidden;
|
|
}
|
|
.a-hero::before {
|
|
content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
|
|
background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(245,166,35,0.02) 30px, rgba(245,166,35,0.02) 60px);
|
|
}
|
|
.a-hero::after {
|
|
content: ''; position: absolute; right: -100px; top: -100px;
|
|
width: 500px; height: 500px;
|
|
background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
|
|
}
|
|
.a-hero-content { position: relative; z-index: 1; max-width: 600px; }
|
|
.a-hero h1 {
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
|
|
font-size: 3.5rem; color: #fff; text-transform: uppercase; line-height: 1.1;
|
|
}
|
|
.a-hero h1 span { color: #F5A623; }
|
|
.a-hero p {
|
|
font-family: 'Barlow', sans-serif; color: #999; font-size: 1.1rem;
|
|
margin: 20px 0 30px; line-height: 1.6;
|
|
}
|
|
.a-hero .stats { display: flex; gap: 40px; margin-top: 40px; }
|
|
.a-hero .stat-item { text-align: center; }
|
|
.a-hero .stat-num {
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
|
|
font-size: 2rem; color: #F5A623;
|
|
}
|
|
.a-hero .stat-label {
|
|
font-family: 'Barlow', sans-serif; font-size: 0.75rem; color: #666;
|
|
text-transform: uppercase; letter-spacing: 0.1em;
|
|
}
|
|
|
|
/* Search A */
|
|
.a-search {
|
|
background: #151515; padding: 40px 60px; border-top: 1px solid #222;
|
|
}
|
|
.a-search-bar {
|
|
display: flex; gap: 0; max-width: 800px;
|
|
}
|
|
.a-search-bar select {
|
|
padding: 16px 20px; background: #222; color: #ccc; border: 2px solid #333;
|
|
font-family: 'Barlow', sans-serif; font-size: 0.9rem; border-right: none;
|
|
appearance: none; -webkit-appearance: none; cursor: pointer;
|
|
}
|
|
.a-search-bar input {
|
|
flex: 1; padding: 16px 20px; background: #222; color: #fff;
|
|
border: 2px solid #333; font-family: 'Barlow', sans-serif; font-size: 0.95rem;
|
|
outline: none;
|
|
}
|
|
.a-search-bar input:focus { border-color: #F5A623; }
|
|
.a-search-bar button {
|
|
padding: 16px 32px; background: #F5A623; color: #000;
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
|
|
font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
|
|
border: none; cursor: pointer;
|
|
clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
|
|
padding-right: 40px;
|
|
}
|
|
|
|
/* Product Cards A */
|
|
.a-products { background: #111; padding: 40px 60px; }
|
|
.a-products h3 {
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
|
|
font-size: 1.4rem; color: #F5A623; text-transform: uppercase;
|
|
letter-spacing: 0.1em; margin-bottom: 24px;
|
|
}
|
|
.a-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
|
|
.a-card {
|
|
background: #1a1a1a; border: 1px solid #2a2a2a; overflow: hidden;
|
|
transition: border-color 0.2s;
|
|
}
|
|
.a-card:hover { border-color: #F5A623; }
|
|
.a-card-img {
|
|
height: 180px; background: #222;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 3rem; color: #333;
|
|
border-bottom: 3px solid #F5A623;
|
|
}
|
|
.a-card-body { padding: 20px; }
|
|
.a-card-body h4 {
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
|
|
font-size: 1.1rem; color: #fff; text-transform: uppercase;
|
|
}
|
|
.a-card-body .compat {
|
|
font-family: 'Barlow', sans-serif; font-size: 0.8rem; color: #888;
|
|
margin: 8px 0 12px;
|
|
}
|
|
.a-card-body .price-row { display: flex; align-items: center; justify-content: space-between; }
|
|
.a-card-body .price {
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
|
|
font-size: 1.4rem; color: #F5A623;
|
|
}
|
|
.a-card-body .add-btn {
|
|
padding: 8px 16px; background: #F5A623; color: #000;
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
|
|
font-size: 0.8rem; text-transform: uppercase; border: none; cursor: pointer;
|
|
}
|
|
|
|
/* ===== B: TECNICO MODERNO ===== */
|
|
.b-wrap { background: #f8f9fb; }
|
|
.b-title h2 { background: #FF6B35; color: #fff; }
|
|
|
|
.b-browser-bar { background: #f0f0f0; }
|
|
.b-browser-bar .browser-dot:nth-child(1) { background: #ff5f56; }
|
|
.b-browser-bar .browser-dot:nth-child(2) { background: #ffbd2e; }
|
|
.b-browser-bar .browser-dot:nth-child(3) { background: #27c93f; }
|
|
.b-browser-bar .browser-url { background: #fff; color: #666; border: 1px solid #ddd; }
|
|
|
|
/* Navbar B */
|
|
.b-navbar {
|
|
background: #fff; padding: 14px 40px;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
}
|
|
.b-navbar .logo { display: flex; align-items: center; gap: 10px; }
|
|
.b-navbar .logo-mark {
|
|
width: 36px; height: 36px;
|
|
}
|
|
.b-navbar .logo-mark svg { width: 100%; height: 100%; }
|
|
.b-navbar .logo-name {
|
|
font-family: 'Poppins', sans-serif; font-weight: 700;
|
|
font-size: 1.3rem; color: #1a1a2e;
|
|
}
|
|
.b-navbar .logo-name em { font-style: normal; color: #FF6B35; }
|
|
.b-navbar nav a {
|
|
color: #555; text-decoration: none; font-family: 'Poppins', sans-serif;
|
|
font-weight: 500; font-size: 0.85rem; margin-left: 28px; transition: color 0.2s;
|
|
}
|
|
.b-navbar nav a:hover { color: #FF6B35; }
|
|
|
|
/* Hero B */
|
|
.b-hero {
|
|
background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
|
|
padding: 80px 60px; position: relative; overflow: hidden;
|
|
}
|
|
.b-hero::before {
|
|
content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
|
|
background-image: radial-gradient(circle at 2px 2px, rgba(26,26,46,0.03) 1px, transparent 0);
|
|
background-size: 32px 32px;
|
|
}
|
|
.b-hero-content { position: relative; z-index: 1; max-width: 550px; }
|
|
.b-hero h1 {
|
|
font-family: 'Poppins', sans-serif; font-weight: 700;
|
|
font-size: 2.8rem; color: #1a1a2e; line-height: 1.2;
|
|
}
|
|
.b-hero h1 span { color: #FF6B35; }
|
|
.b-hero p {
|
|
font-family: 'Montserrat', sans-serif; color: #666; font-size: 1rem;
|
|
margin: 20px 0 30px; line-height: 1.7;
|
|
}
|
|
.b-hero .stats { display: flex; gap: 40px; margin-top: 40px; }
|
|
.b-hero .stat-item {
|
|
background: #fff; padding: 16px 24px; border-radius: 12px;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
|
|
}
|
|
.b-hero .stat-num {
|
|
font-family: 'Poppins', sans-serif; font-weight: 700;
|
|
font-size: 1.6rem; color: #FF6B35;
|
|
}
|
|
.b-hero .stat-label {
|
|
font-family: 'Montserrat', sans-serif; font-size: 0.7rem; color: #999;
|
|
text-transform: uppercase; letter-spacing: 0.05em;
|
|
}
|
|
|
|
/* Search B */
|
|
.b-search {
|
|
background: #fff; padding: 30px 60px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
.b-search-bar {
|
|
display: flex; gap: 12px; max-width: 800px;
|
|
}
|
|
.b-search-bar select {
|
|
padding: 14px 18px; background: #f4f5f7; color: #333;
|
|
border: 1px solid #ddd; border-radius: 10px;
|
|
font-family: 'Poppins', sans-serif; font-size: 0.85rem;
|
|
appearance: none; cursor: pointer;
|
|
}
|
|
.b-search-bar input {
|
|
flex: 1; padding: 14px 18px; background: #f4f5f7; color: #1a1a2e;
|
|
border: 1px solid #ddd; border-radius: 10px;
|
|
font-family: 'Montserrat', sans-serif; font-size: 0.9rem; outline: none;
|
|
}
|
|
.b-search-bar input:focus { border-color: #FF6B35; box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
|
|
.b-search-bar button {
|
|
padding: 14px 28px; background: #FF6B35; color: #fff;
|
|
font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
|
|
border: none; border-radius: 10px; cursor: pointer;
|
|
}
|
|
|
|
/* Product Cards B */
|
|
.b-products { background: #f8f9fb; padding: 40px 60px; }
|
|
.b-products h3 {
|
|
font-family: 'Poppins', sans-serif; font-weight: 600;
|
|
font-size: 1.2rem; color: #1a1a2e; margin-bottom: 24px;
|
|
}
|
|
.b-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
|
|
.b-card {
|
|
background: #fff; border-radius: 14px; overflow: hidden;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
.b-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
|
|
.b-card-img {
|
|
height: 180px; background: #f4f5f7;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 3rem; color: #ddd;
|
|
}
|
|
.b-card-body { padding: 20px; }
|
|
.b-card-body h4 {
|
|
font-family: 'Poppins', sans-serif; font-weight: 600;
|
|
font-size: 1rem; color: #1a1a2e;
|
|
}
|
|
.b-card-body .compat {
|
|
font-family: 'Montserrat', sans-serif; font-size: 0.78rem; color: #999;
|
|
margin: 6px 0 14px;
|
|
}
|
|
.b-card-body .price-row { display: flex; align-items: center; justify-content: space-between; }
|
|
.b-card-body .price {
|
|
font-family: 'Poppins', sans-serif; font-weight: 700;
|
|
font-size: 1.3rem; color: #FF6B35;
|
|
}
|
|
.b-card-body .add-btn {
|
|
padding: 8px 18px; background: #1a1a2e; color: #fff;
|
|
font-family: 'Poppins', sans-serif; font-weight: 600;
|
|
font-size: 0.78rem; border: none; border-radius: 8px; cursor: pointer;
|
|
}
|
|
|
|
/* ===== C: PREMIUM AUTOMOTRIZ ===== */
|
|
.c-wrap { background: #050505; }
|
|
.c-title h2 { background: #E63946; color: #fff; }
|
|
|
|
.c-browser-bar { background: #111; }
|
|
.c-browser-bar .browser-dot:nth-child(1) { background: #ff5f56; }
|
|
.c-browser-bar .browser-dot:nth-child(2) { background: #ffbd2e; }
|
|
.c-browser-bar .browser-dot:nth-child(3) { background: #27c93f; }
|
|
.c-browser-bar .browser-url { background: #0a0a0a; color: #555; }
|
|
|
|
/* Navbar C */
|
|
.c-navbar {
|
|
background: #0a0a0a; padding: 18px 40px;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
border-bottom: 1px solid #1a1a1a;
|
|
}
|
|
.c-navbar .logo-name {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 1.8rem; color: #fff; letter-spacing: 0.12em;
|
|
}
|
|
.c-navbar .logo-name .red { color: #E63946; }
|
|
.c-navbar nav a {
|
|
color: #777; text-decoration: none; font-family: 'Oswald', sans-serif;
|
|
font-weight: 400; font-size: 0.85rem; text-transform: uppercase;
|
|
letter-spacing: 0.12em; margin-left: 30px; transition: color 0.2s;
|
|
}
|
|
.c-navbar nav a:hover { color: #E63946; }
|
|
|
|
/* Hero C */
|
|
.c-hero {
|
|
background: linear-gradient(160deg, #0a0a0a 0%, #151515 40%, #0a0a0a 100%);
|
|
padding: 100px 60px; position: relative; overflow: hidden; text-align: center;
|
|
}
|
|
.c-hero::before {
|
|
content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
|
|
width: 600px; height: 300px;
|
|
background: radial-gradient(ellipse, rgba(230,57,70,0.06) 0%, transparent 70%);
|
|
}
|
|
.c-hero::after {
|
|
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
|
|
background: linear-gradient(90deg, transparent, #E63946, transparent);
|
|
}
|
|
.c-hero-content { position: relative; z-index: 1; }
|
|
.c-hero h1 {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 4.5rem; color: #fff; letter-spacing: 0.1em;
|
|
text-shadow: 0 0 80px rgba(230,57,70,0.15);
|
|
}
|
|
.c-hero h1 span { color: #E63946; }
|
|
.c-hero .divider {
|
|
width: 80px; height: 3px; background: #E63946;
|
|
margin: 16px auto;
|
|
}
|
|
.c-hero p {
|
|
font-family: 'Oswald', sans-serif; font-weight: 300; color: #888;
|
|
font-size: 1.1rem; letter-spacing: 0.15em; text-transform: uppercase;
|
|
margin-bottom: 30px;
|
|
}
|
|
.c-hero .stats { display: flex; gap: 60px; justify-content: center; margin-top: 50px; }
|
|
.c-hero .stat-item { text-align: center; }
|
|
.c-hero .stat-num {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 2.5rem; color: #E63946;
|
|
}
|
|
.c-hero .stat-label {
|
|
font-family: 'Oswald', sans-serif; font-weight: 300; font-size: 0.7rem;
|
|
color: #555; text-transform: uppercase; letter-spacing: 0.2em;
|
|
}
|
|
|
|
/* Search C */
|
|
.c-search {
|
|
background: #0f0f0f; padding: 40px 60px;
|
|
border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a;
|
|
}
|
|
.c-search-bar {
|
|
display: flex; gap: 0; max-width: 800px; margin: 0 auto;
|
|
}
|
|
.c-search-bar select {
|
|
padding: 16px 20px; background: #1a1a1a; color: #888;
|
|
border: 1px solid #2a2a2a; font-family: 'Oswald', sans-serif;
|
|
font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
|
|
appearance: none; cursor: pointer;
|
|
}
|
|
.c-search-bar input {
|
|
flex: 1; padding: 16px 20px; background: #1a1a1a; color: #fff;
|
|
border: 1px solid #2a2a2a; border-left: none;
|
|
font-family: 'Oswald', sans-serif; font-size: 0.9rem; outline: none;
|
|
}
|
|
.c-search-bar input:focus { border-color: #E63946; }
|
|
.c-search-bar button {
|
|
padding: 16px 36px; background: #E63946; color: #fff;
|
|
font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
|
|
letter-spacing: 0.15em; border: none; cursor: pointer;
|
|
}
|
|
|
|
/* Product Cards C */
|
|
.c-products { background: #0a0a0a; padding: 40px 60px; }
|
|
.c-products h3 {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 1.5rem; color: #fff; letter-spacing: 0.15em;
|
|
text-align: center; margin-bottom: 24px;
|
|
}
|
|
.c-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
|
|
.c-card {
|
|
background: #111; border: 1px solid #1a1a1a; overflow: hidden;
|
|
transition: border-color 0.2s;
|
|
}
|
|
.c-card:hover { border-color: #E63946; }
|
|
.c-card-img {
|
|
height: 180px; background: #151515;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 3rem; color: #222;
|
|
position: relative;
|
|
}
|
|
.c-card-img::after {
|
|
content: ''; position: absolute; bottom: 0; left: 0; right: 0;
|
|
height: 2px; background: linear-gradient(90deg, transparent, #E63946, transparent);
|
|
}
|
|
.c-card-body { padding: 20px; }
|
|
.c-card-body h4 {
|
|
font-family: 'Oswald', sans-serif; font-weight: 600;
|
|
font-size: 1rem; color: #fff; text-transform: uppercase; letter-spacing: 0.05em;
|
|
}
|
|
.c-card-body .compat {
|
|
font-family: 'Oswald', sans-serif; font-weight: 300; font-size: 0.78rem;
|
|
color: #666; margin: 6px 0 14px;
|
|
}
|
|
.c-card-body .price-row { display: flex; align-items: center; justify-content: space-between; }
|
|
.c-card-body .price {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 1.5rem; color: #E63946;
|
|
}
|
|
.c-card-body .add-btn {
|
|
padding: 8px 20px; background: transparent; color: #E63946;
|
|
font-family: 'Oswald', sans-serif; font-weight: 600;
|
|
font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
|
|
border: 1px solid #E63946; cursor: pointer;
|
|
}
|
|
|
|
/* ===== E: RETRO MODERNO ===== */
|
|
.e-wrap { background: #EDE8DD; color: #2C3E50; }
|
|
.e-title h2 { background: #1B4965; color: #F5F0E8; }
|
|
|
|
.e-browser-bar { background: #e8e3d8; }
|
|
.e-browser-bar .browser-dot:nth-child(1) { background: #ff5f56; }
|
|
.e-browser-bar .browser-dot:nth-child(2) { background: #ffbd2e; }
|
|
.e-browser-bar .browser-dot:nth-child(3) { background: #27c93f; }
|
|
.e-browser-bar .browser-url { background: #F5F0E8; color: #888; border: 1px solid #d4c9b8; }
|
|
|
|
/* Navbar E */
|
|
.e-navbar {
|
|
background: #F5F0E8; padding: 16px 40px;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
border-bottom: 2px solid #1B4965;
|
|
}
|
|
.e-navbar .logo { display: flex; align-items: center; gap: 12px; }
|
|
.e-navbar .logo-badge {
|
|
width: 44px; height: 44px; border: 2px solid #1B4965; border-radius: 50%;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-family: 'Archivo Black', sans-serif; font-size: 1rem; color: #1B4965;
|
|
}
|
|
.e-navbar .logo-name {
|
|
font-family: 'Archivo Black', sans-serif;
|
|
font-size: 1.2rem; color: #1B4965; text-transform: uppercase;
|
|
}
|
|
.e-navbar .logo-name small {
|
|
display: block; font-family: 'Work Sans', sans-serif; font-weight: 400;
|
|
font-size: 0.6rem; letter-spacing: 0.2em; color: #C45D3E; text-transform: uppercase;
|
|
}
|
|
.e-navbar nav a {
|
|
color: #666; text-decoration: none; font-family: 'Work Sans', sans-serif;
|
|
font-weight: 500; font-size: 0.85rem; margin-left: 28px; transition: color 0.2s;
|
|
}
|
|
.e-navbar nav a:hover { color: #C45D3E; }
|
|
|
|
/* Hero E */
|
|
.e-hero {
|
|
background: #F5F0E8; padding: 80px 60px; text-align: center;
|
|
position: relative;
|
|
}
|
|
.e-hero .badge-large {
|
|
width: 200px; height: 200px; margin: 0 auto 30px;
|
|
border: 3px solid #1B4965; border-radius: 50%;
|
|
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
|
position: relative;
|
|
}
|
|
.e-hero .badge-large::before {
|
|
content: '★ EST. 2026 ★'; position: absolute; top: -12px;
|
|
background: #F5F0E8; padding: 0 12px;
|
|
font-family: 'Work Sans', sans-serif; font-weight: 600;
|
|
font-size: 0.65rem; letter-spacing: 0.15em; color: #C45D3E;
|
|
}
|
|
.e-hero .badge-large h1 {
|
|
font-family: 'Archivo Black', sans-serif;
|
|
font-size: 2.2rem; color: #1B4965; text-transform: uppercase; line-height: 1;
|
|
}
|
|
.e-hero .badge-large span {
|
|
font-family: 'Work Sans', sans-serif; font-weight: 300;
|
|
font-size: 0.8rem; letter-spacing: 0.25em; color: #C45D3E; text-transform: uppercase;
|
|
}
|
|
.e-hero p {
|
|
font-family: 'Work Sans', sans-serif; font-weight: 300;
|
|
font-size: 1.1rem; color: #777; letter-spacing: 0.05em;
|
|
margin-bottom: 30px;
|
|
}
|
|
.e-hero .stats { display: flex; gap: 40px; justify-content: center; margin-top: 40px; }
|
|
.e-hero .stat-item {
|
|
background: #EDE8DD; padding: 16px 24px; border-radius: 50px;
|
|
border: 2px solid #d4c9b8;
|
|
}
|
|
.e-hero .stat-num {
|
|
font-family: 'Archivo Black', sans-serif;
|
|
font-size: 1.5rem; color: #C45D3E;
|
|
}
|
|
.e-hero .stat-label {
|
|
font-family: 'Work Sans', sans-serif; font-weight: 400; font-size: 0.65rem;
|
|
color: #999; text-transform: uppercase; letter-spacing: 0.1em;
|
|
}
|
|
|
|
/* Search E */
|
|
.e-search {
|
|
background: #EDE8DD; padding: 30px 60px;
|
|
border-top: 1px solid #d4c9b8;
|
|
}
|
|
.e-search-bar {
|
|
display: flex; gap: 12px; max-width: 800px;
|
|
}
|
|
.e-search-bar select {
|
|
padding: 14px 18px; background: #F5F0E8; color: #666;
|
|
border: 2px solid #d4c9b8; border-radius: 50px;
|
|
font-family: 'Work Sans', sans-serif; font-size: 0.85rem;
|
|
appearance: none; cursor: pointer;
|
|
}
|
|
.e-search-bar input {
|
|
flex: 1; padding: 14px 18px; background: #F5F0E8; color: #2C3E50;
|
|
border: 2px solid #d4c9b8; border-radius: 50px;
|
|
font-family: 'Work Sans', sans-serif; font-size: 0.9rem; outline: none;
|
|
}
|
|
.e-search-bar input:focus { border-color: #1B4965; }
|
|
.e-search-bar button {
|
|
padding: 14px 28px; background: #1B4965; color: #F5F0E8;
|
|
font-family: 'Archivo Black', sans-serif; font-size: 0.8rem;
|
|
text-transform: uppercase; letter-spacing: 0.08em;
|
|
border: none; border-radius: 50px; cursor: pointer;
|
|
}
|
|
|
|
/* Product Cards E */
|
|
.e-products { background: #F5F0E8; padding: 40px 60px; }
|
|
.e-products h3 {
|
|
font-family: 'Archivo Black', sans-serif;
|
|
font-size: 1.1rem; color: #1B4965; text-transform: uppercase;
|
|
letter-spacing: 0.08em; margin-bottom: 24px;
|
|
}
|
|
.e-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
|
|
.e-card {
|
|
background: #EDE8DD; border: 2px solid #d4c9b8; border-radius: 12px; overflow: hidden;
|
|
transition: border-color 0.2s;
|
|
}
|
|
.e-card:hover { border-color: #1B4965; }
|
|
.e-card-img {
|
|
height: 180px; background: #e5dfd4;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 3rem; color: #ccc;
|
|
}
|
|
.e-card-body { padding: 20px; }
|
|
.e-card-body h4 {
|
|
font-family: 'Archivo Black', sans-serif;
|
|
font-size: 0.9rem; color: #1B4965; text-transform: uppercase;
|
|
}
|
|
.e-card-body .compat {
|
|
font-family: 'Work Sans', sans-serif; font-weight: 400; font-size: 0.78rem;
|
|
color: #999; margin: 6px 0 14px;
|
|
}
|
|
.e-card-body .price-row { display: flex; align-items: center; justify-content: space-between; }
|
|
.e-card-body .price {
|
|
font-family: 'Archivo Black', sans-serif;
|
|
font-size: 1.3rem; color: #C45D3E;
|
|
}
|
|
.e-card-body .add-btn {
|
|
padding: 8px 18px; background: #1B4965; color: #F5F0E8;
|
|
font-family: 'Work Sans', sans-serif; font-weight: 600;
|
|
font-size: 0.78rem; border: none; border-radius: 50px; cursor: pointer;
|
|
}
|
|
|
|
/* ===== SHARED BUTTONS ===== */
|
|
.btn-a-primary {
|
|
padding: 16px 36px; background: #F5A623; color: #000;
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
|
|
font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
|
|
border: none; cursor: pointer;
|
|
}
|
|
.btn-a-secondary {
|
|
padding: 16px 36px; background: transparent; color: #F5A623;
|
|
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
|
|
font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
|
|
border: 2px solid #F5A623; cursor: pointer;
|
|
}
|
|
.btn-b-primary {
|
|
padding: 14px 32px; background: #FF6B35; color: #fff;
|
|
font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
|
|
border: none; border-radius: 10px; cursor: pointer;
|
|
}
|
|
.btn-b-secondary {
|
|
padding: 14px 32px; background: transparent; color: #1a1a2e;
|
|
font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
|
|
border: 2px solid #1a1a2e; border-radius: 10px; cursor: pointer;
|
|
}
|
|
.btn-c-primary {
|
|
padding: 16px 40px; background: #E63946; color: #fff;
|
|
font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
|
|
letter-spacing: 0.15em; border: none; cursor: pointer;
|
|
}
|
|
.btn-c-secondary {
|
|
padding: 16px 40px; background: transparent; color: #ccc;
|
|
font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.9rem;
|
|
letter-spacing: 0.1em; border: 1px solid #555; cursor: pointer;
|
|
}
|
|
.btn-e-primary {
|
|
padding: 14px 32px; background: #1B4965; color: #F5F0E8;
|
|
font-family: 'Archivo Black', sans-serif; font-size: 0.85rem;
|
|
text-transform: uppercase; letter-spacing: 0.08em;
|
|
border: none; border-radius: 50px; cursor: pointer;
|
|
}
|
|
.btn-e-secondary {
|
|
padding: 14px 32px; background: transparent; color: #C45D3E;
|
|
font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
|
|
border: 2px solid #C45D3E; border-radius: 50px; cursor: pointer;
|
|
}
|
|
|
|
.hero-buttons { display: flex; gap: 16px; margin-top: 8px; }
|
|
|
|
/* ===== FOOTER MOCKUPS ===== */
|
|
.a-footer {
|
|
background: #0d0d0d; padding: 40px 60px 20px;
|
|
border-top: 3px solid #F5A623;
|
|
}
|
|
.b-footer {
|
|
background: #1a1a2e; padding: 40px 60px 20px;
|
|
}
|
|
.c-footer {
|
|
background: #050505; padding: 40px 60px 20px;
|
|
border-top: 1px solid #1a1a1a; position: relative;
|
|
}
|
|
.c-footer::before {
|
|
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
|
|
background: linear-gradient(90deg, transparent, #E63946, transparent);
|
|
}
|
|
.e-footer {
|
|
background: #1B4965; padding: 40px 60px 20px; color: #F5F0E8;
|
|
}
|
|
|
|
.footer-grid {
|
|
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
|
|
padding-bottom: 30px; margin-bottom: 20px;
|
|
}
|
|
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
|
|
.footer-col p, .footer-col a { font-size: 0.85rem; line-height: 2; display: block; text-decoration: none; }
|
|
|
|
.a-footer .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; color: #F5A623; }
|
|
.a-footer .footer-col p, .a-footer .footer-col a { font-family: 'Barlow', sans-serif; color: #888; }
|
|
.a-footer .footer-bottom { border-top: 1px solid #222; padding-top: 16px; text-align: center; font-size: 0.75rem; color: #555; font-family: 'Barlow', sans-serif; }
|
|
|
|
.b-footer .footer-col h4 { font-family: 'Poppins', sans-serif; color: #FF6B35; }
|
|
.b-footer .footer-col p, .b-footer .footer-col a { font-family: 'Montserrat', sans-serif; color: rgba(255,255,255,0.6); }
|
|
.b-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); font-family: 'Montserrat', sans-serif; }
|
|
|
|
.c-footer .footer-col h4 { font-family: 'Bebas Neue', sans-serif; color: #E63946; letter-spacing: 0.15em; }
|
|
.c-footer .footer-col p, .c-footer .footer-col a { font-family: 'Oswald', sans-serif; font-weight: 300; color: #666; }
|
|
.c-footer .footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 16px; text-align: center; font-size: 0.75rem; color: #444; font-family: 'Oswald', sans-serif; }
|
|
|
|
.e-footer .footer-col h4 { font-family: 'Archivo Black', sans-serif; color: #C45D3E; }
|
|
.e-footer .footer-col p, .e-footer .footer-col a { font-family: 'Work Sans', sans-serif; color: rgba(245,240,232,0.6); }
|
|
.e-footer .footer-bottom { border-top: 1px solid rgba(245,240,232,0.15); padding-top: 16px; text-align: center; font-size: 0.75rem; color: rgba(245,240,232,0.3); font-family: 'Work Sans', sans-serif; }
|
|
|
|
/* ===== RESPONSIVE ===== */
|
|
@media (max-width: 900px) {
|
|
.a-product-grid, .b-product-grid, .c-product-grid, .e-product-grid { grid-template-columns: 1fr; }
|
|
.footer-grid { grid-template-columns: 1fr 1fr; }
|
|
.a-hero, .b-hero, .c-hero, .e-hero { padding: 60px 30px; }
|
|
.a-hero h1 { font-size: 2.5rem; }
|
|
.b-hero h1 { font-size: 2rem; }
|
|
.c-hero h1 { font-size: 3rem; }
|
|
.page-nav-links a { padding: 6px 10px; font-size: 0.7rem; }
|
|
}
|
|
@media (max-width: 600px) {
|
|
.footer-grid { grid-template-columns: 1fr; }
|
|
.hero-buttons { flex-direction: column; }
|
|
.a-search-bar, .b-search-bar, .c-search-bar, .e-search-bar { flex-direction: column; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- STICKY NAV -->
|
|
<div class="page-nav">
|
|
<div class="page-nav-inner">
|
|
<h1>Nexus Autoparts — Look & Feel</h1>
|
|
<div class="page-nav-links">
|
|
<a href="#option-a" class="nav-a">A: Industrial</a>
|
|
<a href="#option-b" class="nav-b">B: Tech Moderno</a>
|
|
<a href="#option-c" class="nav-c">C: Premium</a>
|
|
<a href="#option-e" class="nav-e">E: Retro</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ==================== OPTION A: INDUSTRIAL ROBUSTO ==================== -->
|
|
<div id="option-a" class="brand-section a-wrap">
|
|
<div class="brand-title a-title">
|
|
<h2>Opción A</h2>
|
|
<h3>Industrial Robusto</h3>
|
|
<p>Negro • Ámbar • Acero — Barlow Condensed — Fuerte, directo, confiable</p>
|
|
</div>
|
|
|
|
<div class="mockup-browser">
|
|
<div class="browser-bar a-browser-bar">
|
|
<div class="browser-dot"></div><div class="browser-dot"></div><div class="browser-dot"></div>
|
|
<div class="browser-url">nexusautoparts.com</div>
|
|
</div>
|
|
<!-- Navbar -->
|
|
<div class="a-navbar">
|
|
<div class="logo">
|
|
<div class="logo-mark">N</div>
|
|
<div class="logo-name">NEXUS<small>AUTOPARTS</small></div>
|
|
</div>
|
|
<nav>
|
|
<a href="#">Inicio</a>
|
|
<a href="#">Catálogo</a>
|
|
<a href="#">Marcas</a>
|
|
<a href="#">Nosotros</a>
|
|
<a href="#">Contacto</a>
|
|
</nav>
|
|
</div>
|
|
<!-- Hero -->
|
|
<div class="a-hero">
|
|
<div class="a-hero-content">
|
|
<h1>ENCUENTRA LA <span>REFACCIÓN EXACTA</span> PARA TU VEHÍCULO</h1>
|
|
<p>Más de 1.4 millones de partes OEM y aftermarket. Búsqueda inteligente por marca, modelo y año.</p>
|
|
<div class="hero-buttons">
|
|
<button class="btn-a-primary"><i class="fas fa-search"></i> BUSCAR REFACCIONES</button>
|
|
<button class="btn-a-secondary">VER CATÁLOGO</button>
|
|
</div>
|
|
<div class="stats">
|
|
<div class="stat-item">
|
|
<div class="stat-num">1.4M+</div>
|
|
<div class="stat-label">Partes OEM</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">300K+</div>
|
|
<div class="stat-label">Aftermarket</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">50+</div>
|
|
<div class="stat-label">Marcas</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Search -->
|
|
<div class="a-search">
|
|
<div class="a-search-bar">
|
|
<select><option>Marca</option></select>
|
|
<select><option>Modelo</option></select>
|
|
<select><option>Año</option></select>
|
|
<input type="text" placeholder="Número de parte, nombre o descripción...">
|
|
<button><i class="fas fa-search"></i> BUSCAR</button>
|
|
</div>
|
|
</div>
|
|
<!-- Products -->
|
|
<div class="a-products">
|
|
<h3><i class="fas fa-fire"></i> Productos Destacados</h3>
|
|
<div class="a-product-grid">
|
|
<div class="a-card">
|
|
<div class="a-card-img"><i class="fas fa-cog"></i></div>
|
|
<div class="a-card-body">
|
|
<h4>Balatas Cerámicas Delanteras</h4>
|
|
<div class="compat"><i class="fas fa-car"></i> Toyota Corolla 2018-2024 • Honda Civic 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$1,250 MXN</div>
|
|
<button class="add-btn"><i class="fas fa-cart-plus"></i> AGREGAR</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="a-card">
|
|
<div class="a-card-img"><i class="fas fa-oil-can"></i></div>
|
|
<div class="a-card-body">
|
|
<h4>Filtro de Aceite Premium</h4>
|
|
<div class="compat"><i class="fas fa-car"></i> Nissan Sentra 2015-2024 • Versa 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$185 MXN</div>
|
|
<button class="add-btn"><i class="fas fa-cart-plus"></i> AGREGAR</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="a-card">
|
|
<div class="a-card-img"><i class="fas fa-car-battery"></i></div>
|
|
<div class="a-card-body">
|
|
<h4>Amortiguador Trasero Gas</h4>
|
|
<div class="compat"><i class="fas fa-car"></i> VW Jetta 2019-2024 • Golf 2018-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$2,890 MXN</div>
|
|
<button class="add-btn"><i class="fas fa-cart-plus"></i> AGREGAR</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Footer -->
|
|
<div class="a-footer">
|
|
<div class="footer-grid">
|
|
<div class="footer-col">
|
|
<h4>Nexus Autoparts</h4>
|
|
<p>Tu proveedor de refacciones de confianza. Piezas OEM y aftermarket para todas las marcas.</p>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Catálogo</h4>
|
|
<a href="#">Motor</a><a href="#">Frenos</a><a href="#">Suspensión</a><a href="#">Eléctrico</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Soporte</h4>
|
|
<a href="#">Contacto</a><a href="#">Garantías</a><a href="#">Envíos</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Síguenos</h4>
|
|
<a href="#"><i class="fab fa-facebook"></i> Facebook</a>
|
|
<a href="#"><i class="fab fa-instagram"></i> Instagram</a>
|
|
<a href="#"><i class="fab fa-whatsapp"></i> WhatsApp</a>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">© 2026 Nexus Autoparts. Todos los derechos reservados.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ==================== OPTION B: TECNICO MODERNO ==================== -->
|
|
<div id="option-b" class="brand-section b-wrap">
|
|
<div class="brand-title b-title">
|
|
<h2>Opción B</h2>
|
|
<h3 style="color:#1a1a2e;">Técnico Moderno</h3>
|
|
<p style="color:#999;">Azul Noche • Naranja • Blanco — Poppins — Limpio, tech, profesional</p>
|
|
</div>
|
|
|
|
<div class="mockup-browser">
|
|
<div class="browser-bar b-browser-bar">
|
|
<div class="browser-dot"></div><div class="browser-dot"></div><div class="browser-dot"></div>
|
|
<div class="browser-url">nexusautoparts.com</div>
|
|
</div>
|
|
<div class="b-navbar">
|
|
<div class="logo">
|
|
<div class="logo-mark">
|
|
<svg viewBox="0 0 36 36" width="36" height="36">
|
|
<circle cx="18" cy="8" r="4" fill="#FF6B35"/>
|
|
<circle cx="8" cy="28" r="3.5" fill="#FF6B35"/>
|
|
<circle cx="28" cy="28" r="3.5" fill="#FF6B35"/>
|
|
<line x1="18" y1="8" x2="8" y2="28" stroke="#1a1a2e" stroke-width="1.5"/>
|
|
<line x1="18" y1="8" x2="28" y2="28" stroke="#1a1a2e" stroke-width="1.5"/>
|
|
<line x1="8" y1="28" x2="28" y2="28" stroke="#1a1a2e" stroke-width="1.5"/>
|
|
</svg>
|
|
</div>
|
|
<div class="logo-name"><em>Nexus</em> Autoparts</div>
|
|
</div>
|
|
<nav>
|
|
<a href="#">Inicio</a>
|
|
<a href="#">Catálogo</a>
|
|
<a href="#">Marcas</a>
|
|
<a href="#">Nosotros</a>
|
|
<a href="#">Contacto</a>
|
|
</nav>
|
|
</div>
|
|
<div class="b-hero">
|
|
<div class="b-hero-content">
|
|
<h1>La plataforma <span>inteligente</span> para encontrar refacciones</h1>
|
|
<p>Busca por marca, modelo, año o número OEM. Más de 1.4 millones de partes disponibles al instante.</p>
|
|
<div class="hero-buttons">
|
|
<button class="btn-b-primary"><i class="fas fa-search"></i> Buscar Refacciones</button>
|
|
<button class="btn-b-secondary">Explorar Catálogo</button>
|
|
</div>
|
|
<div class="stats">
|
|
<div class="stat-item">
|
|
<div class="stat-num">1.4M+</div>
|
|
<div class="stat-label">Partes OEM</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">300K+</div>
|
|
<div class="stat-label">Aftermarket</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">50+</div>
|
|
<div class="stat-label">Marcas</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="b-search">
|
|
<div class="b-search-bar">
|
|
<select><option>Marca</option></select>
|
|
<select><option>Modelo</option></select>
|
|
<select><option>Año</option></select>
|
|
<input type="text" placeholder="Buscar por número de parte, nombre o descripción...">
|
|
<button><i class="fas fa-search"></i> Buscar</button>
|
|
</div>
|
|
</div>
|
|
<div class="b-products">
|
|
<h3>Productos Destacados</h3>
|
|
<div class="b-product-grid">
|
|
<div class="b-card">
|
|
<div class="b-card-img"><i class="fas fa-cog"></i></div>
|
|
<div class="b-card-body">
|
|
<h4>Balatas Cerámicas Delanteras</h4>
|
|
<div class="compat">Toyota Corolla 2018-2024 • Honda Civic 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$1,250</div>
|
|
<button class="add-btn"><i class="fas fa-cart-plus"></i> Agregar</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="b-card">
|
|
<div class="b-card-img"><i class="fas fa-oil-can"></i></div>
|
|
<div class="b-card-body">
|
|
<h4>Filtro de Aceite Premium</h4>
|
|
<div class="compat">Nissan Sentra 2015-2024 • Versa 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$185</div>
|
|
<button class="add-btn"><i class="fas fa-cart-plus"></i> Agregar</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="b-card">
|
|
<div class="b-card-img"><i class="fas fa-car-battery"></i></div>
|
|
<div class="b-card-body">
|
|
<h4>Amortiguador Trasero Gas</h4>
|
|
<div class="compat">VW Jetta 2019-2024 • Golf 2018-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$2,890</div>
|
|
<button class="add-btn"><i class="fas fa-cart-plus"></i> Agregar</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="b-footer">
|
|
<div class="footer-grid">
|
|
<div class="footer-col">
|
|
<h4>Nexus Autoparts</h4>
|
|
<p>La plataforma inteligente para refacciones automotrices. Conectamos piezas con profesionales.</p>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Catálogo</h4>
|
|
<a href="#">Motor</a><a href="#">Frenos</a><a href="#">Suspensión</a><a href="#">Eléctrico</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Soporte</h4>
|
|
<a href="#">Contacto</a><a href="#">Garantías</a><a href="#">Envíos</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Síguenos</h4>
|
|
<a href="#"><i class="fab fa-facebook"></i> Facebook</a>
|
|
<a href="#"><i class="fab fa-instagram"></i> Instagram</a>
|
|
<a href="#"><i class="fab fa-whatsapp"></i> WhatsApp</a>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">© 2026 Nexus Autoparts. Todos los derechos reservados.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ==================== OPTION C: PREMIUM AUTOMOTRIZ ==================== -->
|
|
<div id="option-c" class="brand-section c-wrap">
|
|
<div class="brand-title c-title">
|
|
<h2>Opción C</h2>
|
|
<h3>Premium Automotriz</h3>
|
|
<p>Negro Mate • Rojo Racing • Plata — Bebas Neue — Elegante, racing, premium</p>
|
|
</div>
|
|
|
|
<div class="mockup-browser">
|
|
<div class="browser-bar c-browser-bar">
|
|
<div class="browser-dot"></div><div class="browser-dot"></div><div class="browser-dot"></div>
|
|
<div class="browser-url">nexusautoparts.com</div>
|
|
</div>
|
|
<div class="c-navbar">
|
|
<div class="logo-name">NEXUS <span class="red">AUTO</span>PARTS</div>
|
|
<nav>
|
|
<a href="#">Inicio</a>
|
|
<a href="#">Catálogo</a>
|
|
<a href="#">Marcas</a>
|
|
<a href="#">Nosotros</a>
|
|
<a href="#">Contacto</a>
|
|
</nav>
|
|
</div>
|
|
<div class="c-hero">
|
|
<div class="c-hero-content">
|
|
<h1>NEXUS <span>AUTO</span>PARTS</h1>
|
|
<div class="divider"></div>
|
|
<p>Performance • Calidad • Precisión</p>
|
|
<div class="hero-buttons" style="justify-content: center;">
|
|
<button class="btn-c-primary"><i class="fas fa-search"></i> BUSCAR PIEZAS</button>
|
|
<button class="btn-c-secondary">CATÁLOGO COMPLETO</button>
|
|
</div>
|
|
<div class="stats">
|
|
<div class="stat-item">
|
|
<div class="stat-num">1.4M+</div>
|
|
<div class="stat-label">Partes OEM</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">300K+</div>
|
|
<div class="stat-label">Aftermarket</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">50+</div>
|
|
<div class="stat-label">Marcas</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="c-search">
|
|
<div class="c-search-bar">
|
|
<select><option>MARCA</option></select>
|
|
<select><option>MODELO</option></select>
|
|
<select><option>AÑO</option></select>
|
|
<input type="text" placeholder="Número de parte, nombre o descripción...">
|
|
<button>BUSCAR</button>
|
|
</div>
|
|
</div>
|
|
<div class="c-products">
|
|
<h3>PRODUCTOS DESTACADOS</h3>
|
|
<div class="c-product-grid">
|
|
<div class="c-card">
|
|
<div class="c-card-img"><i class="fas fa-cog"></i></div>
|
|
<div class="c-card-body">
|
|
<h4>BALATAS CERÁMICAS DELANTERAS</h4>
|
|
<div class="compat">Toyota Corolla 2018-2024 • Honda Civic 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$1,250</div>
|
|
<button class="add-btn">AGREGAR</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="c-card">
|
|
<div class="c-card-img"><i class="fas fa-oil-can"></i></div>
|
|
<div class="c-card-body">
|
|
<h4>FILTRO DE ACEITE PREMIUM</h4>
|
|
<div class="compat">Nissan Sentra 2015-2024 • Versa 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$185</div>
|
|
<button class="add-btn">AGREGAR</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="c-card">
|
|
<div class="c-card-img"><i class="fas fa-car-battery"></i></div>
|
|
<div class="c-card-body">
|
|
<h4>AMORTIGUADOR TRASERO GAS</h4>
|
|
<div class="compat">VW Jetta 2019-2024 • Golf 2018-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$2,890</div>
|
|
<button class="add-btn">AGREGAR</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="c-footer">
|
|
<div class="footer-grid">
|
|
<div class="footer-col">
|
|
<h4>NEXUS AUTOPARTS</h4>
|
|
<p>Refacciones de alto rendimiento para profesionales que exigen lo mejor.</p>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>CATÁLOGO</h4>
|
|
<a href="#">Motor</a><a href="#">Frenos</a><a href="#">Suspensión</a><a href="#">Eléctrico</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>SOPORTE</h4>
|
|
<a href="#">Contacto</a><a href="#">Garantías</a><a href="#">Envíos</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>SÍGUENOS</h4>
|
|
<a href="#"><i class="fab fa-facebook"></i> Facebook</a>
|
|
<a href="#"><i class="fab fa-instagram"></i> Instagram</a>
|
|
<a href="#"><i class="fab fa-whatsapp"></i> WhatsApp</a>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">© 2026 NEXUS AUTOPARTS. TODOS LOS DERECHOS RESERVADOS.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ==================== OPTION E: RETRO MODERNO ==================== -->
|
|
<div id="option-e" class="brand-section e-wrap">
|
|
<div class="brand-title e-title">
|
|
<h2>Opción E</h2>
|
|
<h3 style="color:#1B4965;">Mecánico Retro-Moderno</h3>
|
|
<p style="color:#999;">Petróleo • Óxido • Crema — Archivo Black — Clásico con carácter</p>
|
|
</div>
|
|
|
|
<div class="mockup-browser">
|
|
<div class="browser-bar e-browser-bar">
|
|
<div class="browser-dot"></div><div class="browser-dot"></div><div class="browser-dot"></div>
|
|
<div class="browser-url">nexusautoparts.com</div>
|
|
</div>
|
|
<div class="e-navbar">
|
|
<div class="logo">
|
|
<div class="logo-badge">N</div>
|
|
<div class="logo-name">NEXUS<small>AUTOPARTS</small></div>
|
|
</div>
|
|
<nav>
|
|
<a href="#">Inicio</a>
|
|
<a href="#">Catálogo</a>
|
|
<a href="#">Marcas</a>
|
|
<a href="#">Nosotros</a>
|
|
<a href="#">Contacto</a>
|
|
</nav>
|
|
</div>
|
|
<div class="e-hero">
|
|
<div class="badge-large">
|
|
<h1>NEXUS</h1>
|
|
<span>AUTOPARTS</span>
|
|
</div>
|
|
<p>“Refacciones con garantía, servicio con experiencia”</p>
|
|
<div class="hero-buttons" style="justify-content: center;">
|
|
<button class="btn-e-primary"><i class="fas fa-search"></i> Buscar Refacciones</button>
|
|
<button class="btn-e-secondary">Ver Catálogo</button>
|
|
</div>
|
|
<div class="stats">
|
|
<div class="stat-item">
|
|
<div class="stat-num">1.4M+</div>
|
|
<div class="stat-label">Partes OEM</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">300K+</div>
|
|
<div class="stat-label">Aftermarket</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-num">50+</div>
|
|
<div class="stat-label">Marcas</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="e-search">
|
|
<div class="e-search-bar">
|
|
<select><option>Marca</option></select>
|
|
<select><option>Modelo</option></select>
|
|
<select><option>Año</option></select>
|
|
<input type="text" placeholder="Buscar por número de parte, nombre o descripción...">
|
|
<button>Buscar</button>
|
|
</div>
|
|
</div>
|
|
<div class="e-products">
|
|
<h3>Productos Destacados</h3>
|
|
<div class="e-product-grid">
|
|
<div class="e-card">
|
|
<div class="e-card-img"><i class="fas fa-cog"></i></div>
|
|
<div class="e-card-body">
|
|
<h4>Balatas Cerámicas</h4>
|
|
<div class="compat">Toyota Corolla 2018-2024 • Honda Civic 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$1,250</div>
|
|
<button class="add-btn">Agregar</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="e-card">
|
|
<div class="e-card-img"><i class="fas fa-oil-can"></i></div>
|
|
<div class="e-card-body">
|
|
<h4>Filtro de Aceite Premium</h4>
|
|
<div class="compat">Nissan Sentra 2015-2024 • Versa 2016-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$185</div>
|
|
<button class="add-btn">Agregar</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="e-card">
|
|
<div class="e-card-img"><i class="fas fa-car-battery"></i></div>
|
|
<div class="e-card-body">
|
|
<h4>Amortiguador Trasero</h4>
|
|
<div class="compat">VW Jetta 2019-2024 • Golf 2018-2023</div>
|
|
<div class="price-row">
|
|
<div class="price">$2,890</div>
|
|
<button class="add-btn">Agregar</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="e-footer">
|
|
<div class="footer-grid">
|
|
<div class="footer-col">
|
|
<h4>Nexus Autoparts</h4>
|
|
<p>Refacciones con garantía y servicio con experiencia. Tu taller merece lo mejor.</p>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Catálogo</h4>
|
|
<a href="#">Motor</a><a href="#">Frenos</a><a href="#">Suspensión</a><a href="#">Eléctrico</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Soporte</h4>
|
|
<a href="#">Contacto</a><a href="#">Garantías</a><a href="#">Envíos</a>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Síguenos</h4>
|
|
<a href="#"><i class="fab fa-facebook"></i> Facebook</a>
|
|
<a href="#"><i class="fab fa-instagram"></i> Instagram</a>
|
|
<a href="#"><i class="fab fa-whatsapp"></i> WhatsApp</a>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">© 2026 Nexus Autoparts. Todos los derechos reservados.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- FINAL -->
|
|
<div style="text-align:center; padding:60px 20px; color:#555; font-size:0.9rem;">
|
|
<p>Nexus Autoparts — Propuestas de Look & Feel</p>
|
|
<small>Cada opción muestra: navegación, hero, búsqueda, tarjetas de producto y footer</small><br>
|
|
<small style="color:#444;">Generado por Hugo, Project Manager © 2026</small>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |