/*
  GLYON SITE - ESTILO PRINCIPAL
  ---------------------------------------------
  Onde alterar cores principais:
  - Procure por :root logo abaixo.
  - --accent muda o azul principal.
  - --accent-2 muda o roxo secundario.
  - --bg muda o fundo escuro do site.

  Este arquivo controla visual, espacamento, cards, menus e responsividade.
*/
:root {
  --bg: #020712;
  --bg-2: #061222;
  --panel: rgba(7, 18, 33, .78);
  --panel-2: rgba(8, 24, 44, .92);
  --border: rgba(0, 196, 255, .24);
  --border-strong: rgba(0, 196, 255, .48);
  --text: #f5f8ff;
  --muted: #9fb4ca;
  --accent: #08c7ff;
  --accent-dark: #0b6dff;
  --accent-2: #8d54ff;
  --success: #0bd986;
  --shadow: 0 20px 60px rgba(0, 0, 0, .42);
  --radius: 18px;
  --max: 1600px;
  --font: Inter, Segoe UI, Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 78% 10%, rgba(87, 38, 170, .26), transparent 34%),
    radial-gradient(circle at 15% 3%, rgba(0, 182, 255, .14), transparent 30%),
    linear-gradient(180deg, #020713 0%, #030814 45%, #02050d 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 80px 0 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 175, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 175, 255, .06) 1px, transparent 1px);
  background-size: 110px 70px;
  opacity: .68;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 72px)); margin-inline: auto; }
.site-shell { min-height: 100vh; }
.header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 44px;
  border-bottom: 1px solid rgba(84, 172, 255, .16);
  background: rgba(2, 7, 18, .88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo { width: 186px; flex: 0 0 186px; }
.logo img { width: 100%; height: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 20px; flex: 1; }
.nav a, .category-btn {
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  transition: .2s ease;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--accent); text-shadow: 0 0 18px rgba(0, 200, 255, .38); }
.category-wrap { position: relative; }
.category-btn {
  background: rgba(8, 22, 39, .9);
  border: 1px solid var(--border-strong);
  min-width: 210px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.category-menu {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  width: 280px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(3, 13, 25, .96);
  box-shadow: var(--shadow);
}
.category-wrap:hover .category-menu { display: grid; gap: 4px; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.search-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 360px;
  padding: 15px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: rgba(255,255,255,.72);
  background: rgba(5, 17, 30, .85);
  font-weight: 600;
}
.icon-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid transparent;
  position: relative;
}
.icon-link:hover { border-color: var(--border); color: var(--accent); }
.cart-count {
  position: absolute;
  right: 1px;
  top: 0;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
}
.mobile-btn { display: none; margin-left: auto; border: 1px solid var(--border); background: transparent; color: #fff; border-radius: 12px; padding: 10px 12px; }
.btn {
  min-height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 30px;
  font-weight: 900;
  color: #fff;
  border: 1px solid rgba(0, 197, 255, .35);
  background: linear-gradient(135deg, #0b72ff, #09d2ff);
  box-shadow: 0 12px 35px rgba(0, 135, 255, .24), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn.secondary { background: rgba(5, 18, 31, .82); box-shadow: none; }
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.28); }
.eyebrow { display: block; color: var(--accent); font-size: 13px; letter-spacing: .36em; text-transform: uppercase; font-weight: 900; margin-bottom: 18px; }
.gradient { background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 20px;
  padding: 54px 0 26px;
}
.hero h1, .page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero p, .page-hero p { color: #d5e3f2; font-size: 18px; line-height: 1.5; max-width: 670px; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 0 0 4%;
  background: radial-gradient(circle at 48% 45%, rgba(0, 192, 255, .20), transparent 34%), radial-gradient(circle at 75% 28%, rgba(130, 80, 255, .20), transparent 34%);
  filter: blur(10px);
}
.hero-visual img { position: relative; width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 40px 80px rgba(0,0,0,.5)); }
.panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 28, 48, .68), rgba(4, 10, 20, .84));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefits, .info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 18px auto;
  overflow: hidden;
}
.benefits > div, .info-strip > div {
  min-height: 96px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(7, 21, 37, .58);
}
.benefits i, .info-strip i { color: var(--accent); font-size: 34px; font-style: normal; }
.benefits strong, .info-strip strong { display:block; color:#fff; font-size:16px; }
.benefits span, .info-strip span { display:block; color:var(--muted); font-size:13px; line-height:1.35; }
.categories-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 18px; }
.category-card {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
  padding: 16px;
  overflow: hidden;
  transition: .2s ease;
}
.category-card:hover, .product-card:hover, .solution-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.category-card h3 { margin: 0 0 10px; font-size: 17px; line-height: 1.1; }
.category-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.3; }
.category-card img { width: 100%; height: 86px; object-fit: contain; align-self: end; }
.arrow { color: var(--accent); font-weight: 900; display: inline-block; margin-top: 10px; }
.section { margin-top: 28px; }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 18px; }
.section-title h2 { margin: 0; font-size: 30px; letter-spacing: -.03em; }
.section-title a { color: var(--accent); font-weight: 800; }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.product-card { overflow: hidden; transition: .2s ease; }
.product-img { position: relative; background: rgba(0,0,0,.22); min-height: 150px; display: grid; place-items: center; }
.product-img img { width: 100%; height: 160px; object-fit: contain; padding: 10px; }
.badge { position: absolute; left: 12px; top: 12px; background: rgba(0, 160, 255, .18); color: var(--accent); border: 1px solid var(--border-strong); border-radius: 8px; padding: 5px 8px; font-size: 11px; font-weight: 900; }
.product-body { padding: 16px; }
.product-body h3 { margin: 0 0 8px; font-size: 16px; line-height: 1.2; }
.product-body p { color: var(--muted); margin: 0 0 8px; min-height: 38px; font-size: 13px; line-height: 1.35; }
.rating { color: #ffc846; font-size: 13px; margin-bottom: 8px; }
.price { display: block; color: #fff; font-size: 18px; font-weight: 900; margin-bottom: 3px; }
.installments { color: var(--muted); font-size: 12px; display:block; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; }
.product-actions a { color: var(--accent); font-weight: 800; font-size: 13px; }
.product-actions button { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border-strong); background: rgba(0, 160, 255, .08); color: #fff; cursor: pointer; }
.page-hero {
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  min-height: 520px;
  gap: 40px;
  margin-top: 34px;
  padding: 58px 64px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(129, 80, 255, .21), transparent 42%),
    linear-gradient(135deg, rgba(4, 20, 36, .78), rgba(3, 10, 24, .88));
  overflow: hidden;
}
.breadcrumb { color: rgba(255,255,255,.68); font-weight: 700; font-size: 13px; margin-bottom: 22px; display:block; }
.page-visual { min-height: 340px; display: grid; place-items: center; }
.page-visual img { width: 100%; max-height: 420px; object-fit: contain; filter: drop-shadow(0 36px 70px rgba(0,0,0,.55)); }
.cards-grid { display: grid; gap: 14px; }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.six { grid-template-columns: repeat(6, 1fr); }
.solution-card { padding: 24px; transition: .2s ease; min-height: 160px; }
.solution-card img { width: 100%; height: 120px; object-fit: contain; margin-bottom: 12px; }
.solution-card.icon-only img { display: none; }
.solution-card h3 { margin: 0 0 10px; font-size: 19px; }
.solution-card p { color: var(--muted); margin: 0; line-height: 1.45; }
.process { margin-top: 28px; }
.process h2 { font-size: 30px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { padding: 24px; }
.process-grid b { color: var(--accent); font-size: 30px; opacity: .85; }
.process-grid strong { display:block; margin: 10px 0 8px; font-size:18px; }
.process-grid p { color: var(--muted); margin:0; line-height:1.45; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 34px; margin: 26px auto; }
.cta-band h2 { margin: 0 0 6px; font-size: 30px; }
.cta-band p { margin: 0; color: var(--muted); }
.catalog-layout { display: grid; grid-template-columns: 300px 1fr; gap: 20px; margin-top: 24px; }
.filters { padding: 22px; align-self: start; position: sticky; top: 100px; }
.filters h3 { margin: 0 0 16px; }
.filter-group { border-top: 1px solid rgba(255,255,255,.08); padding: 15px 0; }
.filter-group strong { display:block; margin-bottom:10px; }
.filter-group label { display:block; color: var(--muted); margin: 8px 0; font-size: 14px; }
.catalog-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.catalog-top select { background: rgba(2, 12, 24, .85); color:#fff; border:1px solid var(--border); border-radius:10px; padding:10px; }
.support-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:20px; margin-top:26px; }
.faq details { border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 15px 18px; margin-bottom: 8px; background: rgba(255,255,255,.025); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { color: var(--muted); }
.contact-cards { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.contact-cards article { padding:20px; border: 1px solid var(--border); border-radius: 16px; background: rgba(7, 21, 37, .58); }
.simple-page { min-height: 65vh; padding: 70px 0; }
.simple-page h1 { font-size: 48px; }
.cart-list { display:grid; gap:12px; }
.cart-item { display:grid; grid-template-columns: 100px 1fr 80px 90px; align-items:center; gap:16px; padding:16px; }
.cart-item img { height:70px; object-fit:contain; }
.cart-item input { background:#fff; color:#111; border:0; border-radius:8px; padding:10px; }
.cart-item button { border:1px solid var(--border); background:transparent; color:#fff; border-radius:10px; padding:10px; }
.form { display:grid; gap:12px; max-width:760px; }
.form input, .form textarea, .support-search { width:100%; padding:16px; border-radius:12px; border:1px solid var(--border); background: rgba(3, 14, 27, .75); color:#fff; }
.form textarea { min-height: 130px; resize: vertical; }
.form button { justify-self:start; border:0; cursor:pointer; }
.footer { margin-top: 44px; border-top: 1px solid rgba(84,172,255,.16); background: rgba(2, 7, 18, .92); padding: 48px 0 26px; }
.footer-grid { display:grid; grid-template-columns: 1.35fr repeat(5, 1fr); gap:32px; }
.footer-logo { width: 180px; margin-bottom: 18px; }
.footer p, .footer a, .footer span { color: var(--muted); font-size:14px; line-height:1.7; display:block; }
.footer h4 { margin:0 0 14px; font-size:14px; letter-spacing:.08em; }
.newsletter { display:flex; border:1px solid var(--border); border-radius:12px; overflow:hidden; margin-top:12px; }
.newsletter input { flex:1; min-width:0; background:transparent; border:0; color:#fff; padding:12px; }
.newsletter button { width:48px; border:0; background:linear-gradient(135deg,var(--accent-dark),var(--accent)); color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:20px; border-top:1px solid rgba(255,255,255,.08); margin-top:34px; padding-top:20px; }
.footer-bottom img { width:34px; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; background:#10d76f; color:#fff; border-radius:999px; padding:15px 22px; font-weight:900; box-shadow:0 16px 40px rgba(0,0,0,.35); }
@media (max-width: 1200px) {
  .search-link { min-width: 240px; }
  .hero, .page-hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .categories-row, .cards-grid.six { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
}
@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header { height: auto; min-height: 72px; padding: 14px; flex-wrap: wrap; }
  .logo { width: 140px; flex-basis: 140px; }
  .mobile-btn { display:block; }
  .nav, .header-actions { display:none; width:100%; }
  body.menu-open .nav, body.menu-open .header-actions { display:grid; gap:10px; }
  .search-link { min-width:0; width:100%; }
  .hero { padding-top: 34px; min-height: auto; }
  .hero h1, .page-hero h1 { font-size: 42px; }
  .page-hero { padding: 30px 22px; margin-top:18px; }
  .benefits, .info-strip, .categories-row, .cards-grid.four, .cards-grid.six, .products-grid, .process-grid, .support-grid, .contact-cards { grid-template-columns: 1fr; }
  .cta-band, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
}
