['@type' => 'ListItem', 'position' => 1, 'name' => 'Inicio', 'item' => 'https://myjet24.com'], ['@type' => 'ListItem', 'position' => 2, 'name' => 'Blog', 'item' => 'https://myjet24.com/blog'], ['@type' => 'ListItem', 'position' => 3, 'name' => $post->title, 'item' => route('blog.show', $post->slug)], :root { --bg: #ffffff; --bg2: #f8f5ff; --bg3: #f0ebff; --text: #0f0a1e; --text2: #6b7280; --border: #e5e0f5; --card-bg: #ffffff; --card-border: #ede9fe; --purple: #7c3aed; --purple2: #6d28d9; --purple-light: #ede9fe; --purple-glow: rgba(124,58,237,0.15); } [data-theme="dark"] { --bg: #0c0818; --bg2: #130f24; --bg3: #1a1430; --text: #f5f3ff; --text2: #9ca3af; --border: #2a2040; --card-bg: #130f24; --card-border: #2a2040; --purple: #a78bfa; --purple2: #8b5cf6; --purple-light: rgba(167,139,250,0.1); --purple-glow: rgba(167,139,250,0.2); } * { font-family: 'Plus Jakarta Sans', sans-serif; box-sizing: border-box; } body { background: var(--bg); color: var(--text); overflow-x: hidden; padding-top: 0; margin: 0; } /* NAV */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); height: 72px; display: flex; align-items: center; transition: background 0.3s; } [data-theme="dark"] .nav { background: rgba(12,8,24,0.92); } .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; } .logo { font-size: 1.5rem; font-weight: 900; color: var(--purple); text-decoration: none; letter-spacing: -0.5px; } .logo span { color: var(--text); } .nav-links { display: flex; gap: 0.25rem; align-items: center; } .nav-link { color: var(--text2); text-decoration: none; font-weight: 600; font-size: 0.9rem; padding: 0.5rem 0.75rem; border-radius: 8px; transition: all 0.2s; } .nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-light); } .nav-cta { background: var(--purple); color: #fff; padding: 0.55rem 1.2rem; border-radius: 10px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; white-space: nowrap; box-shadow: 0 4px 12px var(--purple-glow); } .nav-cta:hover { background: var(--purple2); transform: translateY(-1px); } .theme-btn { width: 48px; height: 26px; background: var(--border); border-radius: 13px; position: relative; cursor: pointer; border: none; transition: background 0.3s; flex-shrink: 0; } .theme-dot { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--purple); border-radius: 50%; transition: transform 0.3s; } [data-theme="dark"] .theme-dot { transform: translateX(22px); } /* SHARED COMPONENTS */ .section-tag { display: inline-block; color: var(--purple); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.6rem; } .section-h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -0.5px; color: var(--text); margin: 0 0 0.75rem; } .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--purple); color: #fff; padding: 0.85rem 1.75rem; border-radius: 12px; font-weight: 800; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; box-shadow: 0 6px 20px var(--purple-glow); } .btn-primary:hover { background: var(--purple2); transform: translateY(-2px); box-shadow: 0 12px 28px var(--purple-glow); } .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--purple-light); color: var(--purple); padding: 0.85rem 1.75rem; border-radius: 12px; font-weight: 800; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; border: 1px solid rgba(124,58,237,0.2); } .btn-secondary:hover { background: var(--purple); color: #fff; transform: translateY(-2px); } /* FOOTER */ footer { background: #0c0818; color: #94a3b8; padding: 4rem 1.5rem 2rem; margin-top: 5rem; } .footer-inner { max-width: 1280px; margin: 0 auto; } .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #1e1640; } .footer-brand { font-size: 1.4rem; font-weight: 900; color: #a78bfa; margin-bottom: 0.75rem; } .footer-tagline { font-size: 0.85rem; line-height: 1.6; } .footer-col-title { font-size: 0.78rem; font-weight: 800; color: #e2e8f0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; } .footer-links { display: flex; flex-direction: column; gap: 0.5rem; } .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; } .footer-links a:hover { color: #a78bfa; } .footer-bottom { padding-top: 2rem; text-align: center; font-size: 0.8rem; } @media(max-width: 768px) { body { padding-top: 0; } .nav { height: 64px; } .nav-links .nav-link:not(.active) { display: none; } .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } } @media(max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }