:root {
  --dark: #0f172a;
  --dark-2: #111827;
  --blue: #2563eb;
  --blue-dark: #2563eb;
  --green: #22c55e;
  --text: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}

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

.container,
.services-container,
.clients-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */

.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--dark);
}

.logo span {
  color: var(--blue);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
}

nav a:hover {
  color: var(--blue-dark);
}

.btn-primary {
  background: #0b1b2b;
  color: white;
  padding: 10px 20px;   /* 🔥 antes probablemente 14px 28px */
  border-radius: 999px;
  font-size: 14px;      /* antes ~16px */
  font-weight: 600;
}
.header {
  padding: 16px 0;
}

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

/* HERO */

.hero {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 95px 0 105px;
  text-align: center;
  border-bottom: 1px solid #eef2f7;
}

.hero h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  font-weight: 800;
}

.subtitle {
  max-width: 780px;
  margin: 26px auto 0;
  font-size: 20px;
  color: #475569;
}

/* PROCESS */

.process-pro {
  padding: 95px 0;
  background: #ffffff;
}

.process-pro h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1.4px;
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step {
  background: var(--soft);
  border: 1px solid #eef2f7;
  border-radius: 24px;
  padding: 28px 24px;
  min-height: 215px;
  transition: 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: white;
}

.step span {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 14px;
}

.step h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.2;
}

.step p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

/* DASHBOARD */

.dashboard-wow {
  background: var(--dark);
  color: white;
}

.dashboard-layout {
  padding: 105px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}

.tag,
.eyebrow,
.clients-eyebrow {
  display: inline-block;
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.dashboard-text h2 {
  color: white !important;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
}

.dashboard-text p {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 590px;
  margin-bottom: 30px;
}

.dashboard-text ul {
  list-style: none;
}

.dashboard-text li {
  margin-bottom: 16px;
  color: #f8fafc;
  font-size: 17px;
}

.dashboard-text li::before {
  content: "✓";
  color: #38bdf8;
  margin-right: 14px;
  font-weight: 900;
}

.dashboard-card {
  background: white;
  color: var(--dark);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.dashboard-header small {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-header h3 {
  font-size: 28px;
  margin-top: 4px;
}

.status {
  background: #dcfce7;
  color: #15803d;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.metrics div {
  background: #f1f5f9;
  border-radius: 18px;
  padding: 24px 18px;
}

.metrics strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}

.metrics span {
  color: #64748b;
  font-size: 14px;
}

.equipment-list {
  display: grid;
  gap: 14px;
}

.equipment {
  background: #f8fafc;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.equipment span {
  font-weight: 600;
}

.equipment.ok strong {
  color: #16a34a;
}

.equipment.warning strong {
  color: #d97706;
}

/* SERVICES */

.services-section {
  background: #ffffff;
  color: var(--text);
  padding: 100px 0;
}

.services-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}

.services-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.7px;
  margin-bottom: 18px;
}

.services-header p {
  font-size: 18px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #e8eef6;
  border-radius: 30px;
  padding: 38px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: white;
}

.service-card.featured {
  background: var(--dark);
  color: white;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-card p {
  color: #64748b;
  margin-bottom: 22px;
}

.service-card.featured p {
  color: #cbd5e1;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  margin-bottom: 12px;
  color: #334155;
}

.service-card.featured li {
  color: #e5e7eb;
}

.service-card li::before {
  content: "✓";
  color: var(--blue);
  margin-right: 10px;
  font-weight: bold;
}

.services-dashboard {
  margin-top: 34px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 30px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.services-dashboard h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.services-dashboard p {
  color: #cbd5e1;
  max-width: 640px;
}

.services-btn {
  background: white;
  color: var(--dark);
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

/* CLIENTS */

.clients-section {
  background: #f8fafc;
  padding: 100px 0;
}

.clients-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.clients-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.7px;
  margin-bottom: 18px;
}

.clients-header p {
  color: var(--muted);
  font-size: 18px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.client-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #edf2f7;
}

.client-image {
  height: 210px;
  background: #e2e8f0;
  overflow: hidden;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-content {
  padding: 24px;
}

.client-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.client-content h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.client-content p {
  color: var(--muted);
}

.clients-cta {
  margin-top: 42px;
  background: white;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.clients-cta h3 {
  font-size: 28px;
}

.clients-cta a {
  background: var(--dark);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}

/* CONTACT */

.contact-section {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -1.4px;
  margin-bottom: 12px;
}

.contact-section p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 34px;
}

.contact-form {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #f8fafc;
  padding: 17px 18px;
  border-radius: 16px;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.contact-form button {
  border: none;
  background: var(--dark);
  color: white;
  padding: 17px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: white;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.38);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 200;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

/* LIMPIEZA DE BLOQUES DE POWER PAGES */

.sectionBlockLayout,
.row,
.columnBlockLayout {
  min-height: 0 !important;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav {
    height: auto;
    padding: 20px 0;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .process-grid,
  .dashboard-layout,
  .services-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-layout {
    gap: 42px;
  }

  .services-dashboard,
  .clients-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 70px 0;
  }

 .hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
}
  .subtitle {
    font-size: 17px;
  }

  .dashboard-card,
  .service-card,
  .services-dashboard,
  .clients-cta {
    padding: 24px;
  }

  .equipment {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .wa-text {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
  }
}
/* FOOTER */

.infra-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding-top: 70px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* BRAND */

.footer-brand h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.logo-infra {
  color: #ffffff;
  font-weight: 700;
}

.logo-ops {
  color: #3b82f6;
  font-weight: 700;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14px;
  max-width: 300px;
}

/* TITLES */

.infra-footer h4 {
  margin-bottom: 16px;
  font-size: 16px;
  color: #f8fafc;
}

/* LISTAS */

.infra-footer ul {
  list-style: none;
  padding: 0;
}

.infra-footer li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5f5;
}

/* LINKS */

.infra-footer a {
  text-decoration: none;
  color: #cbd5f5;
  transition: 0.3s;
}

.infra-footer a:hover {
  color: #3b82f6;
}

/* CTA */

.footer-cta p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}
.logo {
  font-size: 28px;   /* antes probablemente ~20px */
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo span {
  color: #3aa0ff; /* tu azul */
  
}

/* SUBTEXTO */
.logo-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
  font-weight: 400;
}
.logo-sub {
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 100px;
}