/* Landing Portaria Fácil + Blog */
:root {
  --navy: #1b3a57;
  --navy-light: #2d5a87;
  --accent: #667eea;
  --accent-2: #764ba2;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(27, 58, 87, 0.12);
  --shadow-sm: 0 4px 20px rgba(27, 58, 87, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo span {
  color: #93c5fd;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  margin: 0 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn.light {
  background: var(--white);
  color: var(--navy);
}

/* Hero / Nav */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 55%, #3b6ea8 100%);
  color: var(--white);
  padding: 1.25rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.25), transparent 50%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
}

.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat {
  background: var(--white);
  color: var(--navy);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

.stat h4 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--accent);
}

.stat p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 4.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header .eyebrow {
  color: var(--accent);
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--navy);
}

.section-header p {
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefits .card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.benefits .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #e2e8f0;
}

.benefits .card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.benefits .card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.module-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
}

.module-card h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.module-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.module-card li {
  margin-bottom: 0.35rem;
}

.profile-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.profile-card,
.security-grid > div {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.profile-card h3,
.security-grid h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.profile-card p,
.security-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.75rem;
}

.cta-card p {
  margin: 0;
  opacity: 0.9;
}

.cta-card .eyebrow {
  margin-bottom: 0.25rem;
}

/* Blog */
.blog {
  background: var(--white);
  border-radius: 24px;
  margin: 0 auto 2rem;
  max-width: 1200px;
  padding: 3.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.blog .section-header .eyebrow {
  color: var(--accent);
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blog-filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: var(--bg);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card-cover {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-light), var(--accent));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.blog-card-cover.alt-2 {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.blog-card-cover.alt-3 {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.blog-card-cover.alt-4 {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.blog-card-cover.alt-5 {
  background: linear-gradient(135deg, #be185d, #f472b6);
}

.blog-card-cover.alt-6 {
  background: linear-gradient(135deg, #0369a1, #38bdf8);
}

.blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body time {
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card-body h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--navy);
}

.blog-card-body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.blog-read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-read-more::after {
  content: "→";
  transition: transform 0.2s;
}

.blog-card:hover .blog-read-more::after {
  transform: translateX(4px);
}

.blog-cta-box {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #f0f9ff, #fff);
  border-radius: var(--radius);
  border: 1px dashed #bae6fd;
}

.blog-cta-box p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* Blog article pages */
.blog-page-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem 2rem;
}

.blog-page-header .nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
}

.blog-page-header .logo {
  color: var(--white);
}

.blog-back {
  max-width: 760px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #93c5fd;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blog-back:hover {
  color: var(--white);
}

.blog-article-wrap {
  max-width: 760px;
  margin: -1.5rem auto 3rem;
  padding: 0 1.5rem;
}

.blog-article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.blog-article .blog-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  background: #eef2ff;
  color: var(--accent);
}

.blog-article h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.blog-article-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.blog-article h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.blog-article p,
.blog-article li {
  color: #334155;
  font-size: 1rem;
}

.blog-article ul,
.blog-article ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1.25rem;
}

.blog-article li {
  margin-bottom: 0.4rem;
}

.blog-highlight {
  background: #f0f9ff;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
}

.blog-article-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.blog-list-page {
  padding: 2rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-list-page h1 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.blog-list-page > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Vídeos */
.videos {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 3.5rem 1.5rem;
}

.videos .section-header .eyebrow {
  color: var(--accent);
}

.video-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.video-filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.video-filter-btn:hover,
.video-filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  min-height: 120px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.video-card-play {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.video-card-play.is-disabled {
  cursor: not-allowed;
  opacity: 0.92;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--navy-light), var(--accent));
}

.video-duration,
.video-soon {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
}

.video-soon {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
}

.video-card-body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.video-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.video-card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
}

.video-card-body p {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.video-card-body time {
  font-size: 0.75rem;
  color: var(--muted);
}

.video-cta-box {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed #cbd5e1;
}

.video-cta-box p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.video-error {
  text-align: center;
  color: #b45309;
  grid-column: 1 / -1;
}

.video-featured-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.video-featured-wrap .section-header {
  margin-bottom: 1.5rem;
}

.video-featured {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  min-height: 200px;
}

.video-featured-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}

.video-featured-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.video-featured-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-featured-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-featured-info h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.video-featured-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.video-featured-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.video-featured-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.video-featured-placeholder p {
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 0.75rem;
}

.video-page {
  padding: 2rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-page h1 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.video-page > .lead-page {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  cursor: pointer;
}

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.25rem;
  box-shadow: var(--shadow);
  z-index: 1;
}

.video-modal-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 2rem 0.75rem 0;
  padding-right: 2rem;
}

.video-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg);
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .video-featured-inner {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 1.5rem;
}

.footer .logo {
  margin-bottom: 0.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer h4 {
  color: var(--white);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.footer p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.footer a {
  color: #93c5fd;
}

.footer a:hover {
  color: var(--white);
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Novidades / changelog */
.section.updates {
  background: linear-gradient(180deg, #eef2ff 0%, var(--bg) 100%);
}

.section.updates .updates-eyebrow {
  color: var(--accent);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.update-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(102, 126, 234, 0.12);
}

.update-card--featured {
  grid-column: 1 / -1;
  border: 2px solid rgba(102, 126, 234, 0.35);
  background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
}

.update-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.update-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.update-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.update-card > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.update-card ul,
.update-commands {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--text);
}

.update-card li,
.update-commands li {
  margin-bottom: 0.4rem;
}

.update-commands {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.35rem 1rem;
}

.update-commands li {
  margin: 0;
  padding: 0.45rem 0.65rem;
  background: rgba(102, 126, 234, 0.08);
  border-radius: 8px;
  font-size: 0.85rem;
}

.update-card code {
  font-size: 0.82em;
  background: rgba(27, 58, 87, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 1rem 1.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    display: none;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .cta-card {
    padding: 1.75rem;
  }

  .blog-article {
    padding: 1.5rem;
  }

  .update-commands {
    grid-template-columns: 1fr;
  }
}

