/* =============================================
   MVSCODE — Layout, Componentes e Seções
   ============================================= */

/* ---- Cursor ---- */
.cursor {
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.5;
}

/* ---- Navbar ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(8,10,14,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--cyan); }

.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: none;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--cyan);
  color: var(--black);
}

/* ---- Botões ---- */
.btn-primary {
  background: var(--cyan);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  cursor: none;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  cursor: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--white); }

/* ---- Section base ---- */
section {
  position: relative; z-index: 1;
  padding: 120px 60px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 80px;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--cyan);
  display: block;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-title .line2 {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  display: block;
}
.hero-title .accent { color: var(--cyan); }

.hero-sub {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* Code window (hero) */
.hero-visual {
  position: absolute;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  width: 420px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1s forwards;
}
.code-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.code-header {
  background: var(--card);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot   { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }
.code-title { font-size: 11px; color: var(--muted); margin-left: 8px; letter-spacing: 1px; }

.code-body {
  padding: 20px;
  font-size: 12px;
  line-height: 1.7;
  color: #7FDBCA;
}
.code-body .c-comment { color: var(--muted); font-style: italic; }
.code-body .c-key     { color: var(--orange); }
.code-body .c-str     { color: var(--green); }
.code-body .c-fn      { color: var(--cyan); }
.code-body .c-num     { color: #FFB347; }

.typing-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--cyan);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

/* ---- Stats Strip ---- */
.stats-strip {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 60px;
  display: flex; gap: 80px;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 48px; font-weight: 800; line-height: 1;
  color: var(--white);
}
.stat-num span { color: var(--cyan); }
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* ---- Serviços ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--black);
  padding: 48px 40px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover              { background: var(--surface); }
.service-card:hover::before      { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  position: relative;
}
.service-icon svg { width: 100%; height: 100%; }

.service-num {
  position: absolute; top: -8px; right: -8px;
  font-size: 10px; color: var(--cyan); letter-spacing: 2px;
}
.service-name {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.service-desc { font-size: 12px; color: var(--muted); line-height: 1.8; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 4px 10px;
}

/* ---- Como Funciona ---- */
.how-section { background: var(--surface); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--cyan), var(--border), transparent);
  z-index: 0;
}
.step {
  padding: 0 30px;
  text-align: center;
  position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--black);
  border: 1px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  font-family: var(--font-head);
  font-size: 22px; font-weight: 800;
  color: var(--cyan);
  position: relative;
}
.step-num::before {
  content: '';
  position: absolute; inset: -4px;
  border: 1px solid rgba(0,229,255,0.2);
}
.step-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-desc  { font-size: 12px; color: var(--muted); line-height: 1.8; }

/* ---- Tech Stack ---- */
.tech-section { padding: 60px 0; overflow: hidden; position: relative; z-index: 1; }
.tech-section-header { padding: 0 60px; margin-bottom: 32px; }

.tech-row {
  display: flex; align-items: center; gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.tech-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; min-width: 80px;
}
.tech-scroll {
  display: flex; gap: 32px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.tech-scroll.reverse { animation-direction: reverse; }
.tech-item {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  color: var(--border);
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s;
  padding: 0 16px;
}
.tech-item:hover { color: var(--cyan); }

/* ---- Depoimentos ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--cyan); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 80px;
  color: rgba(0,229,255,0.1);
  position: absolute; top: 16px; left: 28px;
  line-height: 1;
}
.testimonial-text {
  font-size: 13px; line-height: 1.9;
  color: var(--muted); margin-bottom: 28px;
  position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--cyan); flex-shrink: 0;
}
.author-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; }
.author-role { font-size: 11px; color: var(--muted); letter-spacing: 1px; }

/* ---- Planos ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  transition: all 0.3s;
  position: relative;
}
.pricing-card.featured {
  background: var(--card);
  border-color: var(--cyan);
}
.pricing-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 16px;
}
.pricing-card:hover { transform: translateY(-4px); }

.plan-name {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800;
  line-height: 1; letter-spacing: -2px; margin-bottom: 8px;
}
.plan-price sup     { font-size: 24px; vertical-align: super; letter-spacing: 0; }
.plan-period        { font-size: 12px; color: var(--muted); margin-bottom: 32px; }

.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 40px;
}
.plan-features li {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.plan-features li::before { content: '→'; color: var(--cyan); font-size: 12px; flex-shrink: 0; }
.plan-features li.on { color: var(--white); }

.btn-plan {
  display: block; width: 100%; text-align: center;
  padding: 14px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: none; text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--border); color: var(--white);
}
.btn-plan:hover { border-color: var(--cyan); color: var(--cyan); }
.pricing-card.featured .btn-plan {
  background: var(--cyan); color: var(--black);
  border-color: var(--cyan); font-weight: 700;
}
.pricing-card.featured .btn-plan:hover { background: var(--green); border-color: var(--green); }

/* ---- CTA ---- */
.cta-section {
  background: var(--surface);
  text-align: center;
  padding: 120px 60px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(40px, 6vw, 80px); margin-bottom: 24px; position: relative; }
.cta-section .section-sub   { margin: 0 auto 48px; text-align: center; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- Footer ---- */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo { font-size: 26px; display: block; margin-bottom: 16px; }
.footer-brand p     { font-size: 12px; color: var(--muted); line-height: 1.8; max-width: 280px; }

.footer-col-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul    { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a     { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-col span  { font-size: 12px; color: var(--muted); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy    { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-size: 11px; color: var(--muted);
  text-decoration: none; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--cyan); }

/* ============================================
   RESPONSIVO — Laptop pequeno / Tablet landscape
   (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  nav                  { padding: 20px 32px; }
  .nav-links           { display: none; }
  .hero                { padding: 110px 32px 72px; }
  .hero-visual         { display: none; }
  section              { padding: 80px 32px; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .steps               { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .steps::before       { display: none; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-top          { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-strip         { gap: 40px; flex-wrap: wrap; padding: 32px 32px; }
  .tech-section-header { padding: 0 32px; }
  .section-sub         { margin-bottom: 48px; }
  .cta-section         { padding: 100px 32px; }
  footer               { padding: 56px 32px; }
}

/* ============================================
   RESPONSIVO — Tablet portrait (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  nav                  { padding: 18px 24px; }

  .hero                { padding: 100px 24px 64px; }
  .hero-title          { font-size: clamp(36px, 9vw, 64px); letter-spacing: -1.5px; word-break: break-word; overflow-wrap: break-word; }
  .hero-sub            { font-size: 13px; max-width: 100%; }

  section              { padding: 72px 24px; }
  .section-title       { font-size: clamp(30px, 7vw, 48px); letter-spacing: -1px; }
  .section-sub         { font-size: 13px; max-width: 100%; margin-bottom: 40px; }

  .services-grid       { grid-template-columns: 1fr; gap: 0; }
  .steps               { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }

  .pricing-grid        { max-width: 100%; }

  .stats-strip         { padding: 28px 24px; gap: 28px; display: grid; grid-template-columns: 1fr 1fr; }
  .stat-num            { font-size: 40px; }

  .footer-top          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tech-section-header { padding: 0 24px; }
  .cta-section         { padding: 80px 24px; }
  footer               { padding: 48px 24px; }
}

/* ============================================
   RESPONSIVO — Mobile grande (≤ 600px)
   ============================================ */
@media (max-width: 600px) {

  /* Desativa cursor customizado no touch */
  .cursor, .cursor-ring { display: none; }
  body                  { cursor: auto; }

  /* Nav */
  nav        { padding: 14px 20px; }
  .nav-cta   { display: none; }
  .logo      { font-size: 20px; }

  /* Hero */
  .hero {
    padding: 96px 20px 56px;
    min-height: auto;
    align-items: flex-start;
  }
  .hero-tag    { font-size: 10px; letter-spacing: 3px; }
  .hero-title  {
    font-size: clamp(28px, 8.5vw, 50px);
    letter-spacing: -1px;
    margin-bottom: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero-sub    { font-size: 13px; line-height: 1.7; margin-bottom: 32px; }
  .hero-btns   { flex-direction: column; gap: 12px; width: 100%; }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 13px;
    box-sizing: border-box;
  }

  /* Stats */
  .stats-strip {
    padding: 24px 20px;
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-num   { font-size: 34px; }
  .stat-label { font-size: 9px; }

  /* Sections */
  section {
    padding: 56px 20px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
  .section-title {
    font-size: clamp(26px, 8vw, 40px);
    letter-spacing: -1px;
    margin-bottom: 14px;
  }
  .section-sub {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 100%;
  }

  /* Serviços */
  .services-grid  { grid-template-columns: 1fr; gap: 0; }
  .service-card   { padding: 28px 20px; }
  .service-name   { font-size: 18px; }
  .service-desc   { font-size: 12px; }

  /* Como funciona */
  .steps          { grid-template-columns: 1fr; gap: 36px; }
  .step           { padding: 0; }
  .step-title     { font-size: 16px; }
  .step-desc      { font-size: 12px; }

  /* Tech stack */
  .tech-section        { padding: 36px 0; overflow: hidden; }
  .tech-section-header { padding: 0 20px; }
  .tech-label          { display: none; }
  .tech-row            { padding: 20px 0; }

  /* Depoimentos */
  .testimonials-grid   { grid-template-columns: 1fr; }
  .testimonial-card    { padding: 24px 20px; }
  .testimonial-text    { font-size: 12px; }

  /* Planos */
  .pricing-grid        { grid-template-columns: 1fr; }
  .pricing-card        { padding: 32px 20px; }
  .plan-price          { font-size: 40px; }
  .btn-plan            { font-size: 11px; }

  /* CTA */
  .cta-section         { padding: 64px 20px; }
  .cta-btns            { flex-direction: column; align-items: center; gap: 12px; }
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 11px;
    padding: 14px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Footer */
  footer        { padding: 40px 20px; }
  .footer-top   { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .footer-socials { justify-content: center; }
  .footer-copy    { font-size: 10px; }
}

/* ============================================
   RESPONSIVO — Mobile pequeno (≤ 390px)
   iPhone SE, Galaxy A, Moto G etc.
   ============================================ */
@media (max-width: 390px) {

  nav     { padding: 12px 16px; }
  .logo   { font-size: 18px; }

  .hero   { padding: 88px 16px 48px; }
  .hero-title {
    font-size: clamp(26px, 8vw, 38px);
    letter-spacing: -0.5px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-tag { display: none; }

  section       { padding: 48px 16px; }
  .section-title { font-size: clamp(24px, 9vw, 36px); }

  .stats-strip  { padding: 20px 16px; gap: 16px; }
  .stat-num     { font-size: 28px; }
  .stat-label   { font-size: 8px; letter-spacing: 1px; }

  .service-card  { padding: 24px 16px; }
  .service-name  { font-size: 16px; }

  .testimonial-card { padding: 20px 16px; }

  .pricing-card  { padding: 28px 16px; }
  .plan-price    { font-size: 36px; }

  .cta-section   { padding: 52px 16px; }

  footer         { padding: 36px 16px; }

  .btn-primary,
  .btn-secondary { padding: 13px 16px; font-size: 10px; }
}

/* ============================================
   RESPONSIVO — Mobile muito pequeno (≤ 320px)
   Galaxy Fold fechado, iPhone 4/5
   ============================================ */
@media (max-width: 320px) {

  .hero-title    { font-size: 28px; letter-spacing: -1px; }
  .section-title { font-size: 22px; }
  .stat-num      { font-size: 24px; }
  .plan-price    { font-size: 30px; }

  .stats-strip   { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
  .service-card  { padding: 20px 14px; }
  .pricing-card  { padding: 24px 14px; }
  footer         { padding: 32px 14px; }
}

/* ============================================
   RESPONSIVO — Telas muito largas (≥ 1440px)
   ============================================ */
@media (min-width: 1440px) {
  nav            { padding: 28px 80px; }
  section        { padding: 140px 80px; }
  .hero          { padding: 140px 80px 100px; }
  .stats-strip   { padding: 40px 80px; gap: 100px; }
  footer         { padding: 80px; }
  .footer-top    { gap: 80px; }
  .cta-section   { padding: 140px 80px; }
  .tech-section-header { padding: 0 80px; }
  .hero-visual   { right: 80px; width: 480px; }
}
