:root {
  --bg: #f6fafc;
  --bg-soft: #ffffff;
  --bg-alt: #eef5f8;
  --panel: rgba(255, 255, 255, 0.82);
  --text: #163043;
  --muted: #5d7282;
  --line: rgba(19, 48, 67, 0.12);
  --accent: #10b8aa;
  --accent-2: #5ea8ff;
  --accent-3: #dff7f4;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(34, 67, 96, 0.10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(16, 184, 170, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(94, 168, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fcfd 0%, #f6fafc 40%, #eef5f8 100%);
  color: var(--text);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(246, 250, 252, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 48, 67, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
  box-shadow: 0 14px 34px rgba(16, 184, 170, 0.22);
}

.brand strong { display: block; letter-spacing: -0.02em; }
.brand small { display: block; color: var(--muted); font-size: 12px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}
.site-nav a:hover { color: var(--text); }

.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(16, 184, 170, 0.20);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 20px;
}

.section-pad { padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px); }
.section-soft { background: rgba(255,255,255,0.44); border-block: 1px solid rgba(22, 48, 67, 0.06); }
.section-gradient {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(223,247,244,0.78));
  border-block: 1px solid rgba(22,48,67,0.07);
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0f8f88;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  max-width: 900px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 760px;
  color: #395163;
  font-size: clamp(18px, 1.9vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(16, 184, 170, 0.20);
}
.btn.secondary {
  border: 1px solid rgba(22,48,67,0.10);
  background: rgba(255,255,255,0.8);
  color: var(--text);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-pills span,
.brand-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(22,48,67,0.08);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.stats article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(22,48,67,0.08);
}
.stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: #0b7c76;
}
.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual,
.image-frame {
  overflow: hidden;
}
.hero-visual img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual { padding: 12px; }
.hero-visual img { border-radius: 22px; }

.section-heading {
  max-width: 840px;
  margin-bottom: 40px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.narrow { max-width: 920px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-height: 270px;
  padding: 28px;
}
.service-card.featured {
  background: linear-gradient(180deg, rgba(223,247,244,0.94), rgba(255,255,255,0.90));
}
.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16,184,170,0.14), rgba(94,168,255,0.16));
  color: #0f8f88;
  font-size: 22px;
}
.service-card p,
.feature-item p,
.point-card p,
.process-grid p,
.contact-card p,
.split-copy p { color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.split-media { padding: 12px; }
.split-media img { border-radius: 22px; }
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.feature-item { padding: 22px 24px; }

.system-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}
.system-visual { padding: 12px; }
.system-visual img { border-radius: 22px; }
.system-points {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.point-card {
  padding: 24px 24px;
}
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-grid article { padding: 26px; }
.process-grid strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.contact-section { padding-top: 0; }
.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(223,247,244,0.94));
}
.contact-details { display: grid; gap: 14px; }
.contact-details article {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(22,48,67,0.08);
}
.contact-details span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16,184,170,0.14), rgba(94,168,255,0.16));
  color: #0f8f88;
  font-weight: 900;
}
.contact-details small { display: block; color: var(--muted); }
.contact-details p { margin: 0; color: var(--text); }
.contact-details a { font-weight: 800; }

.site-footer {
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(22, 48, 67, 0.08);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer p { margin: 0; }

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .system-grid,
  .contact-card { grid-template-columns: 1fr; }
  .service-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .site-header { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-cta { display: none; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 14px;
  }
  .site-nav a {
    padding: 13px 0;
    border-top: 1px solid rgba(22,48,67,0.08);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .stats,
  .service-grid,
  .process-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(40px, 12vw, 66px); }
  h2 { font-size: clamp(30px, 10vw, 48px); }
}

/* ===== TÍM ===== */
.section-lead {
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 100%;
}
.team-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 16px;
}
.team-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.team-card .team-photo-wrap {
  flex-shrink: 0;
}
.team-card .team-info {
  width: 100%;
  text-align: left;
}
.team-photo-wrap {
  flex-shrink: 0;
}
.team-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .team-card { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
}
