/* ========================================
   GLOGSITE - CSS COMPLETO
   ======================================== */

:root {
  --bg: #070b14;
  --card: #0b1220;
  --card2: #0e1930;
  --muted: #93a4c6;
  --text: #eaf2ff;
  --line: rgba(255,255,255,.08);
  --line2: rgba(58,160,255,.18);
  --accent: #3aa0ff;
  --accent2: #69e3ff;
  --good: #2ee59d;
  --warn: #ffcc66;
  
  --r14: 14px;
  --r18: 18px;
  --r22: 22px;
}

* { box-sizing: border-box; }

html, body { 
  height: 100%; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% -15%, rgba(58,160,255,.28), transparent 60%),
    radial-gradient(900px 520px at 85% -5%, rgba(105,227,255,.18), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(46,229,157,.10), transparent 55%),
    linear-gradient(180deg, #060a12, #070b14 30%, #070b14);
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.wrap { 
  max-width: 1120px; 
  margin: 0 auto; 
  padding: 18px; 
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(58,160,255,0.5);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(7,11,20,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.topbar.scrolled {
  background: rgba(7,11,20,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(58,160,255,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.topbar.hidden {
  transform: translateY(-100%);
}

.header-spacer {
  height: 70px;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 18px;
}

.brand-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.logo-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 20px rgba(58,160,255,0.5);
}

.logo-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(58,160,255,0.3);
  animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0; }
}

.brand-text {
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-link.active {
  color: var(--text);
  background: rgba(58,160,255,0.12);
}

.nav-indicator {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link.active .nav-indicator {
  opacity: 1;
}

.nav-icon {
  font-size: 16px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.theme-toggle:hover {
  background: rgba(58,160,255,0.1);
  border-color: rgba(58,160,255,0.3);
  transform: rotate(15deg);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 998;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: linear-gradient(180deg, var(--card), var(--bg));
  border-left: 1px solid var(--line);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 4px 16px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text);
  background: rgba(58,160,255,0.1);
  transform: translateX(8px);
}

/* Toast */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #04101f;
  font-weight: 800;
  border: 0;
  box-shadow: 0 10px 24px rgba(58,160,255,.16);
  transition: all .2s ease;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(58,160,255,.25);
}

.btn:active {
  transform: translateY(0);
}

.btn.ghost {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.btn.small {
  padding: 10px 16px;
  font-size: 13px;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(58,160,255,.16); }
  50% { box-shadow: 0 10px 30px rgba(58,160,255,.3); }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  padding: 40px;
  border: 1px solid rgba(58,160,255,.16);
  background:
    radial-gradient(600px 260px at 30% 0%, rgba(58,160,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius: var(--r22);
  margin-bottom: 20px;
}

.hero h1 {
  margin: 10px 0 16px 0;
  font-size: 42px;
  letter-spacing: -1px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(46,229,157,.10);
  border: 1px solid rgba(46,229,157,.22);
  color: var(--good);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   CARDS & LAYOUT
   ======================================== */

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--r22);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.30);
  transition: all 0.3s ease;
}

.card.soft {
  background: linear-gradient(180deg, rgba(58,160,255,.08), rgba(255,255,255,.02));
  border-color: rgba(58,160,255,.15);
}

.card-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,.40);
  border-color: rgba(58,160,255,.25);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* ========================================
   PRODUCTS
   ======================================== */

a.card.product {
  display: block;
  position: relative;
  overflow: hidden;
}

a.card.product:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(58,160,255,.25);
}

.product-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46,229,157,.10);
  border: 1px solid rgba(46,229,157,.20);
  color: var(--good);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  margin: 12px 0 8px 0;
  font-size: 20px;
  font-weight: 800;
}

.product-desc {
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.currency {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.price-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

/* ========================================
   LISTS & ITEMS
   ======================================== */

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.item {
  padding: 16px;
  border-radius: var(--r18);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.item:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(58,160,255,.15);
  transform: translateX(4px);
}

.item-title {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}

.item-sub {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(58,160,255,.15);
  flex-shrink: 0;
  margin-top: 4px;
}

.dot-pulse {
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,160,255,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(58,160,255,0); }
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(58,160,255,.12);
  border: 1px solid rgba(58,160,255,.20);
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  white-space: nowrap;
}

/* ========================================
   CATEGORIES
   ======================================== */

.categories-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-chip:hover {
  background: rgba(58,160,255,.12);
  border-color: rgba(58,160,255,.25);
  transform: translateY(-2px);
}

/* ========================================
   SECTIONS
   ======================================== */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.section-title {
  margin: 0 0 6px 0;
  font-size: 24px;
  font-weight: 800;
}

.sep {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 20px 0;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 40px;
  padding: 24px 0;
  background: rgba(7,11,20,.55);
  backdrop-filter: blur(12px);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 32px; }
}

@media (max-width: 768px) {
  .grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 24px; }
  .hero h1 { font-size: 28px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 24px; }
  
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-spacer { height: 60px; }
  .header-wrap { height: 60px; }
  
  .btn { padding: 10px 16px; font-size: 13px; }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ========================================
   HOMEPAGE PREMIUM
   ======================================== */

.hero-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  min-height: 70vh;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(46,229,157,0.1);
  border: 1px solid rgba(46,229,157,0.2);
  border-radius: 999px;
  color: var(--good);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--good);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #04101f;
  font-weight: 800;
  padding: 16px 32px;
  font-size: 16px;
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-weight: 600;
  padding: 16px 32px;
}

.btn-glow {
  box-shadow: 0 0 40px rgba(58,160,255,0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 60px rgba(58,160,255,0.5);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card2), var(--card));
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.more {
  background: var(--accent);
  color: #04101f;
  font-size: 11px;
  font-weight: 800;
}

.social-text {
  color: var(--muted);
  font-size: 14px;
}

.social-text strong {
  color: var(--text);
}

/* Hero Visual - Code Window */
.hero-visual {
  position: relative;
}

.code-window {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--line);
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

.window-title {
  margin-left: 8px;
  font-size: 13px;
  color: var(--muted);
  font-family: 'Monaco', 'Menlo', monospace;
}

.window-content {
  padding: 24px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
}

.window-content pre {
  margin: 0;
  overflow-x: auto;
}

.code-comment { color: #6a9955; }
.code-keyword { color: #569cd6; }
.code-string { color: #ce9178; }
.code-success { color: var(--good); }

.floating-badge {
  position: absolute;
  padding: 12px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
}

.badge-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */
.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(58,160,255,0.1);
  border: 1px solid rgba(58,160,255,0.2);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-header-center h2,
.section-header-row h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
}

.link-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.link-arrow:hover {
  gap: 12px;
}

/* Benefits */
.benefits-section {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58,160,255,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(58,160,255,0.2), rgba(105,227,255,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Products Showcase */
.featured-products {
  padding: 60px 0;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card-premium {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card-premium:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(58,160,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  z-index: 2;
}

.product-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(58,160,255,0.1), rgba(105,227,255,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon {
  font-size: 64px;
  opacity: 0.8;
}

.product-info {
  padding: 24px;
}

.product-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-summary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: -2px;
}

.rating-count {
  color: var(--muted);
  font-size: 12px;
}

.product-price {
  text-align: right;
}

.product-price .currency {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.product-price .amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}

.btn-full {
  width: 100%;
}

/* How it Works */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(58,160,255,0.03), transparent);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  max-width: 280px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #04101f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.step-arrow {
  font-size: 32px;
  color: var(--accent);
  opacity: 0.5;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

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

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58,160,255,0.2);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card2), var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid rgba(58,160,255,0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 14px;
  color: var(--text);
}

.author-info span {
  font-size: 13px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  padding: 60px 0;
}

.cta-box {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(58,160,255,0.1), rgba(105,227,255,0.05));
  border: 1px solid rgba(58,160,255,0.2);
  border-radius: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-box > p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-guarantee {
  margin-top: 24px;
  color: var(--good);
  font-size: 14px;
  font-weight: 600;
}

/* Blog Preview */
.blog-preview {
  padding: 60px 0;
}

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

.blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58,160,255,0.2);
}

.blog-card-content {
  padding: 28px;
}

.blog-meta-top {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-category {
  padding: 4px 10px;
  background: rgba(58,160,255,0.1);
  border-radius: 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-date {
  color: var(--muted);
  font-size: 13px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 10px;
}

/* ========================================
   PRODUCT PAGE PREMIUM
   ======================================== */

.product-page {
  padding: 40px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .current {
  color: var(--text);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.product-main {
  min-width: 0;
}

.product-hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 32px;
}

.product-badge-large {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(46,229,157,0.1);
  border: 1px solid rgba(46,229,157,0.2);
  border-radius: 999px;
  color: var(--good);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-title-large {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.product-short-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  font-size: 14px;
}

.highlight-icon {
  font-size: 20px;
}

.content-section {
  margin-bottom: 40px;
}

.content-section .section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(58,160,255,0.2);
  transform: translateX(8px);
}

.feature-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--good), #2ee59d);
  color: #04101f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.feature-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Sidebar */
.product-sidebar {
  position: sticky;
  top: 90px;
}

.purchase-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 24px;
}

.price-display {
  text-align: center;
  margin-bottom: 24px;
}

.price-currency {
  font-size: 24px;
  color: var(--muted);
  font-weight: 600;
  vertical-align: top;
}

.price-value {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
}

.price-benefits {
  margin-bottom: 24px;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.benefit-row span {
  color: var(--good);
  font-weight: 800;
}

.benefit-row:last-child {
  border-bottom: none;
}

.btn-buy {
  background: linear-gradient(135deg, var(--good), #2ee59d);
  color: #04101f;
  font-size: 18px;
  font-weight: 800;
  padding: 18px;
  margin-bottom: 12px;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46,229,157,0.3);
}

.buy-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(46,229,157,0.05);
  border: 1px solid rgba(46,229,157,0.15);
  border-radius: 16px;
}

.guarantee-icon {
  font-size: 32px;
}

.guarantee-badge strong {
  display: block;
  color: var(--good);
  margin-bottom: 4px;
}

.guarantee-badge p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.secure-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.secure-icon {
  font-size: 16px;
}

.trust-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.trust-card h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--muted);
}

.trust-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 4px;
}

.trust-stat span {
  font-size: 12px;
  color: var(--muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hero-premium {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .social-proof {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-showcase,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .benefits-grid,
  .products-showcase,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .code-window {
    display: none;
  }

  .floating-badge {
    display: none;
  }

  .section-header-center h2,
  .section-header-row h2 {
    font-size: 28px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .product-title-large {
    font-size: 28px;
  }

  .product-highlights {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BLOG NOVO
   ========================= */

.blog-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0 28px;
}

.filter-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  transition:all .25s ease;
}

.filter-chip:hover,
.filter-chip.active{
  color:var(--text);
  background:rgba(58,160,255,.12);
  border-color:rgba(58,160,255,.28);
}

.filter-total{
  opacity:.8;
  font-size:12px;
}

.blog-grid-enhanced{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
}

.blog-card-enhanced{
  overflow:hidden;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog-card-enhanced:hover{
  transform:translateY(-4px);
  border-color:rgba(58,160,255,.18);
  box-shadow:0 18px 38px rgba(0,0,0,.24);
}

.blog-thumb-link{
  display:block;
}

.blog-thumb{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}

.blog-card-body{
  padding:20px;
}

.blog-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:var(--muted);
  margin-bottom:12px;
}

.blog-category-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:rgba(58,160,255,.12);
  color:#9fd0ff;
  border:1px solid rgba(58,160,255,.22);
}

.blog-card-title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
}

.blog-card-title a{
  color:var(--text);
}

.blog-card-excerpt{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:16px;
}

.blog-card-actions{
  display:flex;
  justify-content:flex-start;
}

.post-page{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.post-hero{
  padding:28px;
}

.post-top-badges{
  margin-bottom:12px;
}

.post-title{
  margin:0 0 12px;
  font-size:clamp(32px, 5vw, 52px);
  line-height:1.1;
}

.post-excerpt{
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
  max-width:900px;
}

.post-meta-bar{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
}

.post-cover-wrap{
  margin-top:22px;
}

.post-cover-image{
  width:100%;
  border-radius:18px;
  display:block;
  max-height:460px;
  object-fit:cover;
}

.post-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:24px;
  align-items:start;
}

.post-content-card{
  padding:28px;
}

.blog-content{
  font-size:16px;
  line-height:1.85;
}

.blog-content h2,
.blog-content h3,
.blog-content h4{
  margin-top:28px;
  margin-bottom:12px;
}

.blog-content pre{
  overflow:auto;
  padding:16px;
  border-radius:14px;
  background:#0d1320;
  border:1px solid rgba(255,255,255,.08);
}

.blog-content code{
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.blog-content p,
.blog-content ul,
.blog-content ol{
  margin-bottom:16px;
}

.post-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.tag-chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:13px;
}

.post-sidebar{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.sticky-card{
  position:sticky;
  top:90px;
}

.post-sidebar-actions{
  margin-top:14px;
}

.cta-card h3{
  margin-top:8px;
}

.related-posts-section{
  margin-top:10px;
}

.related-posts-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.related-post-card{
  overflow:hidden;
}

.related-post-thumb{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:14px;
}

.related-post-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:14px;
}

@media (max-width: 980px){
  .post-layout{
    grid-template-columns:1fr;
  }

  .sticky-card{
    position:static;
    top:auto;
  }
}

.product-detail-image {
  margin: 20px 0;
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255,255,255,0.1);
}
.product-main-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;

}

.site-logo{
  height:52px;
  width:auto;
  margin-right:12px;
}

.admin-logo{
  height:36px;
  width:auto;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-text{
  font-size:20px;
  font-weight:700;
  letter-spacing:0.3px;
}
