:root {
  --bg-0: #030810;
  --bg-1: #061022;
  --bg-2: #0a1834;
  --surface: #101f43;
  --surface-2: #152a57;
  --text: #eef3ff;
  --muted: #a8b6db;
  --primary: #2da2ff;
  --primary-strong: #1f74d8;
  --accent-cyan: #61d7ff;
  --accent-violet: #7ba8ff;
  --accent-rose: #9fbcff;
  --border: rgba(128, 162, 228, 0.34);
  --success-bg: rgba(67, 184, 123, 0.18);
  --success-text: #93efb9;
  --error-bg: rgba(255, 117, 150, 0.2);
  --error-text: #ffc5d7;
  --shadow-lg: 0 24px 58px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.36);
  --radius-lg: 22px;
  --radius-md: 15px;
  --radius-sm: 10px;
  --container: 1120px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 6px);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 14%, rgba(45, 162, 255, 0.16), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(97, 215, 255, 0.16), transparent 26%),
    radial-gradient(circle at 52% 90%, rgba(123, 168, 255, 0.12), transparent 32%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 44%, var(--bg-2));
  min-height: 100dvh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(97, 215, 255, 0.04) 44%, transparent 60%),
    linear-gradient(300deg, transparent 0 34%, rgba(45, 162, 255, 0.06) 46%, transparent 62%);
  z-index: -1;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background-color: rgba(3, 8, 16, 0.82);
  border-bottom: 1px solid rgba(138, 168, 230, 0.22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(45, 162, 255, 0.25));
  border-radius: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.22s ease;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(16, 31, 67, 0.336);
  color: #f2f6ff;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
}

.cover {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(128, 161, 228, 0.137);
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 12, 0.9), rgba(2, 6, 12, 0.9)),
    url("../../Pics/LogoEmpresa.png") center/cover no-repeat;
  opacity: 0.9;
  transform: scale(1.04);
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(45, 160, 255, 0.08), transparent 62%);
  pointer-events: none;
}

.cover-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 2.2rem 0 2.6rem;
}

.cover-tagline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #8fd4ff;
  font-weight: 700;
}

.cover-title {
  margin: 0.58rem auto 1rem;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1.08;
  max-width: 16ch;
  color: #f7fbff;
}

.cover-lead {
  margin: 0 auto;
  max-width: 68ch;
  color: #bfd0f5;
  font-size: 1.02rem;
}

.cover-scroll {
  margin-top: 1.7rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #d7ebff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cover-scroll:hover {
  color: #8fd4ff;
}

.arrow-down {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: arrow-bounce 1.6s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.9;
  }

  50% {
    transform: rotate(45deg) translateY(6px);
    opacity: 1;
  }
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: 5rem 0 3.4rem;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -36% -12%;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(45, 162, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.25rem;
}

.tagline {
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0.54rem 0 1rem;
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  line-height: 1.1;
  max-width: 16ch;
  color: #f7f9ff;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.text-gold {
  color: var(--primary);
}

.text-rose {
  background: linear-gradient(120deg, #b9d0ff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0.75rem 1.22rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--primary), var(--primary-strong));
  color: #f3f9ff;
  box-shadow: 0 12px 28px rgba(45, 162, 255, 0.32);
}

.btn-ghost {
  border: 1px solid rgba(97, 215, 255, 0.5);
  color: #dff5ff;
  background: rgba(97, 215, 255, 0.1);
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: linear-gradient(165deg, rgba(18, 34, 73, 0.92), rgba(12, 24, 56, 0.94));
  box-shadow: var(--shadow-lg);
}

.hero-card h2 {
  margin: 0;
  color: #f8fbff;
  font-size: 1.1rem;
}

.kpis {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.kpis article {
  border: 1px solid rgba(140, 172, 235, 0.38);
  border-radius: var(--radius-sm);
  padding: 0.74rem 0.82rem;
  background: linear-gradient(160deg, rgba(22, 38, 80, 0.95), rgba(14, 27, 62, 0.94));
}

.kpis strong {
  display: block;
  line-height: 1.2;
  color: #bfe2ff;
  font-size: 1.2rem;
}

.kpis span {
  color: #c4d3f4;
  font-size: 0.9rem;
}

.section {
  min-height: calc(100svh - var(--header-height));
  padding: 5rem 0 3.6rem;
  display: grid;
  align-items: center;
}

.section.alt {
  background: linear-gradient(180deg, rgba(7, 16, 39, 0.94), rgba(4, 12, 33, 0.96));
  border-top: 1px solid rgba(128, 162, 228, 0.16);
  border-bottom: 1px solid rgba(128, 162, 228, 0.16);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--primary);
  font-weight: 700;
}

h2 {
  margin: 0.4rem 0 0.8rem;
  color: #f2f6ff;
  line-height: 1.24;
}

p {
  color: var(--muted);
}

.info-cards,
.results {
  display: grid;
  gap: 0.8rem;
}

.info-cards article,
.results article {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(164deg, rgba(17, 33, 71, 0.9), rgba(12, 25, 56, 0.92));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.info-cards h3,
.results h3 {
  margin: 0 0 0.35rem;
  color: #b8dcff;
}

.info-cards p,
.results p {
  margin: 0;
  color: #c3d1f0;
}

.timeline {
  margin-top: 1rem;
  border-left: 3px solid rgba(45, 162, 255, 0.86);
  padding-left: 1rem;
  display: grid;
  gap: 0.9rem;
}

.timeline article {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  background: linear-gradient(164deg, rgba(16, 31, 68, 0.92), rgba(10, 22, 50, 0.94));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.timeline span {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline h3 {
  margin: 0.24rem 0;
  color: #f4f8ff;
}

.timeline p {
  margin: 0;
}

.skill-cloud {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.skill-cloud span {
  border: 1px solid rgba(138, 168, 230, 0.44);
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #deebff;
  background: linear-gradient(135deg, rgba(97, 215, 255, 0.15), rgba(131, 150, 255, 0.14));
}

.projects-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(164deg, rgba(15, 29, 63, 0.92), rgba(10, 22, 49, 0.94));
  box-shadow: var(--shadow-md);
}

.project-card h3 {
  margin: 0;
  color: #bfe1ff;
}

.services-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-kpis {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.about-kpis article {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.78rem;
  background: linear-gradient(164deg, rgba(15, 29, 63, 0.88), rgba(10, 22, 49, 0.9));
}

.about-kpis strong {
  display: block;
  color: #bfe1ff;
  font-size: 1.05rem;
}

.about-kpis span {
  color: #c3d2f4;
  font-size: 0.86rem;
}

.experience-highlights {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.experience-highlights article {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  background: linear-gradient(164deg, rgba(13, 27, 58, 0.94), rgba(9, 21, 47, 0.95));
}

.experience-highlights h3 {
  margin: 0 0 0.3rem;
  color: #b8dcff;
}

.experience-highlights p {
  margin: 0;
  color: #c3d2f4;
}

.skill-levels-wrap {
  margin-top: 1rem;
}

.skill-levels {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: linear-gradient(164deg, rgba(13, 27, 58, 0.94), rgba(9, 21, 47, 0.95));
  display: grid;
  gap: 0.7rem;
}

.skill-levels article span {
  display: block;
  margin-bottom: 0.35rem;
  color: #d8e8ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.skill-levels article div {
  height: 8px;
  border-radius: 999px;
  background: rgba(122, 169, 255, 0.2);
  overflow: hidden;
}

.skill-levels article div i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
}

.consulting-flow {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.consulting-flow article {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.78rem;
  background: linear-gradient(164deg, rgba(13, 27, 58, 0.94), rgba(9, 21, 47, 0.95));
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.consulting-flow strong {
  color: #8ed4ff;
}

.consulting-flow span {
  color: #d2e4ff;
  font-size: 0.9rem;
}

.project-impact {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.project-impact article {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: linear-gradient(164deg, rgba(13, 27, 58, 0.94), rgba(9, 21, 47, 0.95));
}

.project-impact strong {
  display: block;
  color: #9ed8ff;
  margin-bottom: 0.28rem;
}

.project-impact span {
  color: #c7d8f6;
  font-size: 0.88rem;
}

.contact-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.contact-points article {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.8rem;
  background: linear-gradient(164deg, rgba(13, 27, 58, 0.94), rgba(9, 21, 47, 0.95));
}

.contact-points strong {
  display: block;
  color: #9ed8ff;
  margin-bottom: 0.2rem;
}

.contact-points span {
  color: #d2e3ff;
  font-size: 0.88rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(164deg, rgba(15, 29, 63, 0.92), rgba(10, 22, 49, 0.94));
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  margin: 0;
  color: #bfe1ff;
}

.service-card p {
  margin: 0.5rem 0 0;
}

.project-card p {
  margin: 0.45rem 0 0.6rem;
}

.project-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #c3d2f4;
}

.project-card li + li {
  margin-top: 0.3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
}

.contact-section a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: linear-gradient(168deg, rgba(16, 31, 68, 0.92), rgba(9, 20, 49, 0.95));
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: block;
  margin-top: 0.66rem;
  margin-bottom: 0.3rem;
  color: #f3f7ff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(138, 168, 230, 0.42);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: #edf3ff;
  background: rgba(6, 14, 36, 0.78);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(97, 215, 255, 0.76);
  box-shadow: 0 0 0 4px rgba(97, 215, 255, 0.18);
}

.contact-form .btn {
  margin-top: 1rem;
  width: 100%;
}

.alert {
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.alert ul {
  margin: 0.3rem 0 0;
  padding-left: 1.2rem;
}

.alert-error {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid rgba(255, 117, 150, 0.34);
}

.alert-success {
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid rgba(67, 184, 123, 0.34);
}

.honeypot {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid rgba(138, 168, 230, 0.2);
  background: rgba(3, 8, 16, 0.9);
}

.footer-wrap {
  min-height: 66px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.footer-wrap p {
  margin: 0;
  color: #bcc9e7;
}

.footer-wrap a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid,
  .services-grid,
  .experience-highlights,
  .consulting-flow,
  .project-impact {
    grid-template-columns: 1fr 1fr;
  }

  .about-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: absolute;
    inset: var(--header-height) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(8, 16, 39, 0.98);
    box-shadow: var(--shadow-md);
  }

  .nav-menu a {
    padding: 0.42rem 0.3rem;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 700px) {
  .cover-content {
    padding: 1.8rem 0 2.2rem;
  }

  .cover-lead {
    font-size: 0.96rem;
  }

  .hero {
    padding-top: 3.4rem;
    min-height: auto;
  }

  .section {
    padding: 3.2rem 0;
    min-height: auto;
  }

  .projects-grid,
  .services-grid,
  .kpis,
  .about-kpis,
  .experience-highlights,
  .consulting-flow,
  .project-impact {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }
}
