/* ===========================
   Estilos gerais
   Site: deu no poste 11 horas
   =========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050816;
  color: #f9fafb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ===========================
   Layout principal
   =========================== */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===========================
   Cabeçalho / Navegação
   =========================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.12), transparent 55%),
              rgba(3, 7, 18, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 0.9rem;
  background: conic-gradient(from 160deg, #22d3ee, #22c55e, #a855f7, #22d3ee);
  padding: 2px;
}

.brand-mark-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 0%, #22c55e, #0f172a 50%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-weight: 700;
  font-size: 0.85rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.78rem;
  color: #9ca3af;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e5e7eb;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav a {
  color: #e5e7eb;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a.nav-active {
  color: #5eead4;
  border-color: rgba(45, 212, 191, 0.7);
}

.nav-cta {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.8);
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.25), transparent 55%),
              rgba(15, 23, 42, 0.9);
  box-shadow: 0 18px 55px rgba(34, 211, 238, 0.25);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta span.icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

/* ===========================
   Hero / Banner (home)
   =========================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  padding: 3.5rem 0 3rem;
}

.hero-copy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at left, rgba(56, 189, 248, 0.3), transparent 60%),
              rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  margin-bottom: 1.25rem;
}

.hero-copy-eyebrow strong {
  color: #a5b4fc;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
}

.hero-title span.gradient {
  background: linear-gradient(120deg, #22d3ee, #a855f7, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.99rem;
  color: #9ca3af;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.9rem;
}

.chip {
  font-size: 0.76rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.35), transparent 60%),
              rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.chip.chip-green {
  border-color: rgba(45, 212, 191, 0.9);
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.45), transparent 60%),
              rgba(15, 23, 42, 0.95);
}

.chip.chip-purple {
  border-color: rgba(168, 85, 247, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #22d3ee, #22c55e);
  color: #020617;
  box-shadow: 0 18px 55px rgba(34, 211, 238, 0.35);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(34, 211, 238, 0.45);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.9);
}

.hero-meta {
  margin-top: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.hero-meta strong {
  color: #e5e7eb;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(circle at bottom, rgba(249, 115, 22, 0.23), transparent 50%),
    radial-gradient(circle at center, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 1),
    0 0 60px rgba(34, 211, 238, 0.35);
  overflow: hidden;
}

.hero-orbit-image {
  position: absolute;
  inset: 14%;
  border-radius: 999px;
  overflow: hidden;
}

.hero-orbit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.02);
}

.hero-orbit-ring {
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.5);
}

.hero-orbit-pill {
  position: absolute;
  right: 10%;
  top: 24%;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.97);
  color: #e5e7eb;
  font-size: 0.78rem;
  border: 1px solid rgba(34, 211, 238, 0.7);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.hero-orbit-pill span.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 0.35rem;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.hero-orbit-tag {
  position: absolute;
  left: 6%;
  bottom: 14%;
  padding: 0.4rem 0.8rem;
  border-radius: 0.6rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(168, 85, 247, 0.8);
  color: #c4b5fd;
  font-size: 0.75rem;
  max-width: 160px;
}

.hero-orbit-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.3), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.32), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.75;
}

/* ===========================
   Seções genéricas
   =========================== */

.section {
  padding: 3.5rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a5b4fc;
  margin-bottom: 0.45rem;
}

.section-title {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.section-lead {
  color: #9ca3af;
  font-size: 0.95rem;
  max-width: 28rem;
}

.section-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
}

.pill-muted {
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  color: #9ca3af;
}

/* ===========================
   Cartões / Listagens
   =========================== */

.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));
}

.card {
  border-radius: 1.1rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow:
    0 22px 65px rgba(15, 23, 42, 0.8),
    0 0 30px rgba(15, 23, 42, 0.9);
  padding: 1.2rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(236, 72, 153, 0.2), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.card-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.9);
  color: #a7f3d0;
  background: rgba(6, 78, 59, 0.75);
}

.card-body {
  font-size: 0.86rem;
  color: #9ca3af;
  margin-bottom: 0.8rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: #6b7280;
}

.card-meta strong {
  color: #e5e7eb;
}

.badge-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.8rem;
  color: #a5b4fc;
  margin-top: 0.4rem;
}

.card-footer-link svg {
  width: 12px;
  height: 12px;
}

/* ===========================
   Página de produtos
   =========================== */

.products-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.15fr);
  gap: 2.2rem;
}

.filter-panel {
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.25rem 1.2rem 1.4rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
}

.filter-title {
  font-size: 0.96rem;
  margin-bottom: 0.7rem;
}

.filter-group {
  margin-bottom: 1.1rem;
}

.filter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-tag {
  font-size: 0.76rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.filter-tag:hover {
  transform: translateY(-1px);
}

.filter-tag.is-active {
  background: linear-gradient(135deg, #22d3ee, #22c55e);
  color: #020617;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.35);
}

.products-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-media {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.product-desc {
  font-size: 0.86rem;
  color: #9ca3af;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.product-meta span {
  color: #6b7280;
}

.product-meta strong {
  color: #e5e7eb;
}

.product-chip {
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.9);
  color: #a7f3d0;
}

.products-empty {
  font-size: 0.86rem;
  color: #9ca3af;
  padding: 1.6rem 1.2rem;
  border-radius: 0.9rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  text-align: center;
}

/* ===========================
   Sobre / Equipa
   =========================== */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.prose {
  font-size: 0.95rem;
  color: #d1d5db;
}

.prose p + p {
  margin-top: 0.9rem;
}

.prose strong {
  color: #e5e7eb;
}

.timeline {
  margin-top: 1.5rem;
  border-left: 1px solid rgba(75, 85, 99, 0.8);
  padding-left: 1.25rem;
}

.timeline-item {
  margin-bottom: 1rem;
}

.timeline-year {
  font-size: 0.82rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline-title {
  font-size: 0.96rem;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}

.timeline-text {
  font-size: 0.86rem;
  color: #9ca3af;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.9rem 0.95rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
  font-size: 0.86rem;
}

.team-name {
  font-weight: 600;
}

.team-role {
  font-size: 0.78rem;
  color: #9ca3af;
}

.team-footer {
  margin-top: 0.4rem;
  font-size: 0.76rem;
  color: #6b7280;
}

/* ===========================
   Contacto
   =========================== */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
}

.contact-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.3rem 1.2rem 1.4rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-label {
  font-size: 0.82rem;
  color: #e5e7eb;
}

.form-control {
  border-radius: 0.7rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.95);
  padding: 0.55rem 0.7rem;
  color: #e5e7eb;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-control:focus {
  border-color: rgba(34, 211, 238, 0.9);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.7);
  background: rgba(15, 23, 42, 1);
}

.form-control::placeholder {
  color: #6b7280;
}

.form-help {
  font-size: 0.75rem;
  color: #6b7280;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9rem;
  font-size: 0.76rem;
  color: #6b7280;
}

.form-status {
  color: #a7f3d0;
  display: none;
}

.form-status.is-visible {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.form-status span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.86rem;
}

.contact-block-title {
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-block-sub {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.map-placeholder {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: #6b7280;
}

/* ===========================
   News / Destaques
   =========================== */

.news-grid {
  display: grid;
  grid-template-columns: 2.1fr 1.4fr;
  gap: 1.6rem;
}

.news-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-main-hero {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
}

.news-main-hero-img {
  height: 190px;
  overflow: hidden;
}

.news-main-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-main-hero-body {
  padding: 1rem 1.1rem 1.1rem;
}

.news-main-hero-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.news-main-hero-meta {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.news-main-hero-text {
  font-size: 0.86rem;
  color: #9ca3af;
}

.news-list {
  display: grid;
  gap: 0.7rem;
}

.news-item {
  display: flex;
  gap: 0.8rem;
  font-size: 0.84rem;
}

.news-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22d3ee;
  margin-top: 0.3rem;
}

.news-item-body {
  flex: 1;
}

.news-item-title {
  margin-bottom: 0.15rem;
}

.news-item-meta {
  font-size: 0.74rem;
  color: #6b7280;
}

.news-side {
  border-radius: 1.1rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 1rem 1rem 1.15rem;
  background: rgba(15, 23, 42, 0.98);
}

.news-side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.news-side-title {
  font-size: 0.9rem;
}

.news-side-badge {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.85);
  color: #c4b5fd;
}

.news-side-list {
  font-size: 0.8rem;
  color: #9ca3af;
}

.news-side-list li + li {
  margin-top: 0.45rem;
}

/* ===========================
   Rodapé
   =========================== */

.footer {
  margin-top: auto;
  border-top: 1px solid rgba(31, 41, 55, 1);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
}

.footer-inner {
  padding: 1.6rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #9ca3af;
}

.footer-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.7rem;
}

.footer-seo span {
  border-radius: 999px;
  border: 1px dashed rgba(55, 65, 81, 0.9);
  padding: 0.2rem 0.6rem;
}

/* ===========================
   Utilidades
   =========================== */

.hide-on-desktop {
  display: none;
}

.text-highlight {
  color: #5eead4;
}

.text-soft {
  color: #9ca3af;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pill-success {
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.2rem 0.7rem;
  color: #a7f3d0;
  border: 1px solid rgba(45, 212, 191, 0.9);
  background: rgba(6, 78, 59, 0.7);
}

.kpi {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-size: 0.8rem;
}

.kpi strong {
  font-size: 1.1rem;
}

/* ===========================
   Responsividade
   =========================== */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .news-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.8rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 56px 1.2rem auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.85rem 1rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.95);
    transform-origin: top right;
    transform: scale(0.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .hero-inner {
    padding-top: 2.5rem;
  }

  .section {
    padding: 2.8rem 0 2.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    gap: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-main-hero-img {
    height: 170px;
  }

  .news-main-hero-body {
    padding-inline: 0.85rem;
  }

  .filter-panel {
    padding-inline: 1rem;
  }
}


