@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --bg: #0f172a;
  --card: #111827;
  --accent: #22d3ee;
  --accent-2: #f59e0b;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(34,211,238,0.12), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(245,158,11,0.12), transparent 35%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}
.logo span { color: var(--accent); }

nav {
  display: flex;
  gap: 14px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a.active {
  background: rgba(34, 211, 238, 0.12);
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 10px;
}

h1, h2, h3, h4 {
  margin: 8px 0;
  color: #fff;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  margin: 12px 0 20px;
  max-width: 640px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b1224;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.btn.center { display: inline-block; margin: 10px auto 0; }

.tags {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.05);
}

.card.floating {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.9);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature, .product-card, .news-card, .team-card {
  background: var(--card);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover,
.product-card:hover,
.news-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.4);
}

.feature img,
.product-card img,
.team-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-peeks,
.product-grid,
.news-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.product-card h3 { margin-top: 6px; }
.news-card a { color: var(--accent); text-decoration: none; font-weight: 600; }

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 24px;
}

.filter-btn {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--accent);
  color: #fff;
}

.alt {
  background: rgba(255,255,255,0.02);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline .year {
  font-weight: 700;
  color: var(--accent-2);
}

.team-grid {
  margin-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

.contact-form {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  margin-top: 6px;
}

.form-feedback {
  min-height: 20px;
  color: var(--accent);
  margin-top: 8px;
}

.contact-info {
  background: rgba(255,255,255,0.03);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-info .map {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.footer {
  background: #0b1220;
  padding: 40px 0 20px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.footer h4 { color: #fff; }

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer a { color: var(--text); text-decoration: none; }

.legal {
  text-align: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 64px;
    right: 4%;
    background: rgba(15, 23, 42, 0.95);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .timeline-item { grid-template-columns: 1fr; }
}
/* L6bet - Estilos principais */

:root {
  --color-bg: #050816;
  --color-surface: #0f172a;
  --color-accent: #22c55e;
  --color-accent-soft: rgba(34, 197, 94, 0.12);
  --color-text: #e5e7eb;
  --color-muted: #9ca3af;
  --color-border: #1f2937;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 40%, #000 100%);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.88));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-mark {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #020617;
  border-radius: 14px;
  padding: 0.35rem 0.55rem;
  font-size: 0.95rem;
}

.logo-text {
  font-size: 1.1rem;
  color: #e5e7eb;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--color-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: #f9fafb;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  color: var(--color-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero h1 span {
  background: linear-gradient(120deg, #22c55e, #4ade80);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 34rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background var(--transition-med), color var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #022c22;
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(34, 197, 94, 0.4);
}

.btn.secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.btn.secondary:hover {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  max-height: 360px;
  width: 100%;
}

.hero-card {
  position: absolute;
  right: -10px;
  bottom: -24px;
  background: radial-gradient(circle at top left, #22c55e1c, #020617);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  width: min(280px, 80%);
  backdrop-filter: blur(20px);
}

.hero-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.hero-card p {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.link-inline {
  font-size: 0.9rem;
  color: var(--color-accent);
}

.section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
}

.company {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
}

.products-preview {
  background: radial-gradient(circle at top, #020617, #000);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card img {
  border-radius: 16px;
  margin-bottom: 0.9rem;
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.product-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.product-body p {
  margin: 0 0 0.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.cta-center {
  margin-top: 2.2rem;
  text-align: center;
}

.app-highlight {
  background: radial-gradient(circle at top, #020617, #020617);
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.8rem;
  color: var(--color-accent);
}

.note {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.news {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.news-card .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.news-card h3 {
  margin: 0 0 0.5rem;
}

.news-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.prefooter-cta {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(34, 197, 94, 0.3);
}

.prefooter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.prefooter-text h2 {
  margin: 0 0 0.5rem;
}

.prefooter-text p {
  margin: 0;
  color: var(--color-muted);
}

.site-footer {
  padding: 2.5rem 0 1.2rem;
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 2.2rem;
  margin-bottom: 1.5rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.6rem;
}

.footer-grid p {
  margin: 0 0 0.3rem;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.25rem;
}

.footer-grid a {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.footer-grid a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.85);
  margin-top: 1.5rem;
  padding-top: 0.8rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* Animações de revelação */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* Layouts internos compartilhados para outras páginas */
.page-hero {
  padding: 3rem 0 2.2rem;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--color-muted);
}

.breadcrumbs {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.breadcrumbs a {
  color: var(--color-muted);
}

.breadcrumbs span {
  margin: 0 0.3rem;
}

.layout-main {
  padding-bottom: 3rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--color-muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.badge-soft {
  font-size: 0.75rem;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.pill {
  border-radius: 999px;
}

/* Formulário de contato */
.form-card {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
  background: rgba(15, 23, 42, 1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  padding: 1.1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  background: rgba(15, 23, 42, 0.9);
}

.map-placeholder strong {
  color: #e5e7eb;
}

/* Tabela / listagem de produtos */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.filter-pill {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.82rem;
  color: var(--color-muted);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.filter-pill.active {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
  color: #bbf7d0;
  transform: translateY(-1px);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.meta-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--color-muted);
}

/* Equipe / cards */
.avatar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.avatar-card {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar-photo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.7);
  object-fit: cover;
}

.avatar-info h4 {
  margin: 0;
  font-size: 0.95rem;
}

.avatar-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Responsivo */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr);
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-card {
    right: auto;
    left: 12px;
    bottom: -20px;
  }

  .company-grid,
  .products-grid,
  .news-grid,
  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-grid,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prefooter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 1.2rem;
    top: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 16px;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: var(--shadow-soft);
    min-width: 190px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 2.8rem;
  }

  .company-grid,
  .products-grid,
  .news-grid,
  .product-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 2.7rem 0;
  }

  .page-hero {
    padding-top: 2.3rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


