:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --bg-app: #f8fafc;
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #e0e7ff;
  --secondary: #0ea5e9;
  --green: #10b981;
  --red: #ef4444;
  --yellow: #f59e0b;
  --radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-app);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

/* Topbar */
.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  height: 72px;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-mark {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  height: 38px;
  width: 38px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

/* Buttons */
.button {
  align-items: center;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.button:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary-light);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--primary-light);
  transform: none;
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}


/* ═══════════════════════════════════════════
   LANDING PAGE - Estilo Unico.io
═══════════════════════════════════════════ */

/* Topbar Dark */
.topbar-dark {
  background: rgba(3, 7, 18, 0.9) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.nav-dark a {
  color: #94a3b8;
}

.nav-dark a:hover {
  color: #fff;
}

/* Hero Principal */
.lp-hero {
  background: radial-gradient(ellipse at 60% -30%, #1e1b4b 0%, #030712 60%);
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 100px 7vw 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 24px;
}

.lp-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
}

.lp-hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.lp-hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.lp-cta-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
  border: none !important;
  font-size: 1rem;
  padding: 0 28px;
  min-height: 52px;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4) !important;
}

.lp-cta-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.5) !important;
}

.lp-cta-ghost {
  color: #94a3b8;
  font-weight: 600;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.lp-cta-ghost:hover {
  color: #fff;
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

.lp-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mockup Card */
.lp-hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.5s ease;
}

.lp-card:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.lp-card-head {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.lp-card-body {
  padding: 24px;
}

.lp-stat-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.lp-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.lp-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 12px;
}

.lp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-status-dot.green {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.lp-status-dot.yellow {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.lp-status-dot.blue {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

/* Logos strip */
.lp-logos {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 7vw;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

.lp-logo-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 16px;
  color: #475569;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* Sections */
.lp-section {
  padding: 100px 7vw;
}

.lp-section-dark {
  background: radial-gradient(ellipse at 50% 0%, #1e1b4b, #030712);
}

.lp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.lp-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 12px 0;
  color: var(--ink);
}

.lp-section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.lp-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* Features Grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.lp-feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.1);
  transform: translateY(-4px);
}

.lp-feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.lp-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.lp-feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Steps */
.lp-steps {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 220px;
  flex: 1;
}

.lp-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #4f46e5;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.lp-step h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.lp-step p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.lp-step-arrow {
  font-size: 1.5rem;
  color: #4f46e5;
  padding-top: 48px;
  opacity: 0.7;
}

/* Pricing */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.lp-price-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15), 0 20px 40px rgba(79, 70, 229, 0.1);
}

.lp-badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.lp-price-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.lp-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.lp-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.lp-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lp-price-list li {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA Final */
.lp-cta-section {
  background: radial-gradient(ellipse at 50% 0%, #1e1b4b, #030712);
  padding: 100px 7vw;
  text-align: center;
  color: #fff;
}

.lp-cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}

.lp-cta-section p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin: 0 0 36px;
}

@media (max-width: 900px) {
  .lp-hero {
    grid-template-columns: 1fr;
    padding: 60px 6vw;
  }

  .lp-hero-mockup {
    display: none;
  }

  .lp-features {
    grid-template-columns: 1fr 1fr;
  }

  .lp-pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .lp-steps {
    flex-direction: column;
    align-items: center;
  }

  .lp-step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .lp-features {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.hero {
  align-items: center;
  background: radial-gradient(100% 100% at 50% 0%, #ffffff 0%, var(--bg-app) 100%);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: calc(100vh - 72px);
  padding: 80px 6vw;
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
  z-index: 2;
  position: relative;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  text-transform: uppercase;
  display: inline-block;
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 99px;
}

h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

/* Screen Mockup */
.screen {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  width: 100%;
  padding: 24px;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.screen:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.screen-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.screen-header span {
  background: var(--line);
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

.metric-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}

.metric-grid div {
  background: var(--bg-app);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s ease;
}

.metric-grid div:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.metric-grid strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.metric-grid small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-list p {
  align-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  display: flex;
  font-weight: 600;
  gap: 12px;
  margin: 0;
  padding: 16px;
  font-size: 0.95rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.dot {
  border-radius: 50%;
  height: 12px;
  width: 12px;
  flex-shrink: 0;
}

.dot-green {
  background: var(--green);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.dot-yellow {
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.dot-red {
  background: var(--red);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

/* App Section (Painel) */
.app-section {
  padding: 80px 2vw;
  background: var(--ink);
}

.app-shell {
  background: var(--paper);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 800px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #94a3b8;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: #1e293b;
}

.auth-modal {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  color: #1e293b;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


.auth-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
  color: #0f172a;
  font-weight: 600;
}

.auth-modal label {
  color: #475569;
}

.auth-modal input {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
}

.auth-modal input:focus {
  background: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-modal .button {
  background: #3b82f6;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px;
}

.auth-modal .button:hover {
  background: #2563eb;
}

.sidebar {
  background: #fdfdfd;
  border-right: 1px solid var(--line);
  padding: 28px 24px;
}

.sidebar-brand {
  margin-bottom: 40px;
}

.menu-item {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  padding: 14px 16px;
  width: 100%;
  transition: all 0.2s;
}

.menu-item:hover {
  background: var(--bg-app);
  color: var(--ink);
}

.menu-item.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.workspace {
  padding: 32px 40px;
  background: var(--paper);
  overflow-y: auto;
  max-height: 800px;
}

.workspace-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.workspace-top h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 800;
}

.panel-view {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.panel-view.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login Panel */
.auth-view {
  max-width: 420px;
  margin: 60px auto;
  text-align: center;
}

.auth-view h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.auth-view p {
  color: var(--muted);
  margin-bottom: 32px;
}

/* Tables */
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
  text-align: left;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
}

th {
  background: var(--bg-app);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 0.2s;
}

tbody tr:hover {
  background: var(--bg-app);
}

/* Forms */
.form-section {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.form-section legend {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0 12px;
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

input,
select,
textarea {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 16px;
  font-size: 0.95rem;
  background: #fff;
  transition: all 0.2s;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.result-box {
  background: var(--primary-light);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius);
  color: var(--primary-hover);
  font-weight: 600;
  padding: 20px;
  margin-top: 24px;
}

@media (max-width: 980px) {

  .app-shell,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-hero {
    padding: 40px;
  }

  .auth-hero h2 {
    font-size: 2rem;
  }

  .auth-form-wrapper {
    padding: 40px 24px;
  }

  .sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-brand {
    width: 100%;
    margin-bottom: 10px;
  }

  .menu-item {
    width: auto;
    padding: 10px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}