* {
  box-sizing: border-box;
}

:root {
  --bg: #071224;
  --bg2: #0d1b2a;
  --card: rgba(13, 27, 42, 0.88);
  --primary: #00bdf2;
  --primary2: #45c6ff;
  --text: #ffffff;
  --muted: #b9c6d6;
  --line: rgba(255, 255, 255, 0.13);
  --green: #36d399;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 189, 242, 0.2), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(69, 198, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #071224 0%, #0b2038 48%, #071224 100%);
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 72%);
  z-index: -1;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 18, 36, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

.navbar-logo {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-button {
  padding: 11px 18px;
  border: 1px solid rgba(69,198,255,.32);
  border-radius: 999px;
  background: rgba(69,198,255,.08);
  color: white !important;
}

.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}


.hero-logo {
  width: min(520px, 100%);
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.eyebrow,
.section-heading span,
.section-tag,
.pilot span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.eyebrow {
  border: 1px solid rgba(69,198,255,.32);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(69,198,255,.08);
  margin-bottom: 24px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(54, 211, 153, .12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}




h1 {
  font-size: clamp(2.8rem, 4vw, 5.6rem);
  line-height: 1.05;
  max-width: 900px;
   letter-spacing: -0.075em;
  margin-bottom: 18px;

}


h5 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin-bottom: 36px;
}




h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.hero-copy p,
.contact p,
.product-highlight p,
.pilot p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 700px;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #03101f;
  box-shadow: 0 18px 42px rgba(0,189,242,.28);
}

.btn-secondary {
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  color: white;
}

.btn.full {
  width: 100%;
}

.trust-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-row div,
.card,
.hero-card,
.product-highlight,
.preview,
.pilot,
form {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.trust-row div {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    transition: all .25s ease;
}

.trust-row div:hover {
    transform: translateX(5px);
    border-color: #45c6ff;
}


.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 4px;
}

.hero-card {
  border-radius: 30px;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 10%, rgba(69,198,255,.18), transparent 35%),
    rgba(13, 27, 42, .9);
}

.hero-card h3 {
  color: var(--primary2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
}

.hero-card h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  color: white;
}

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}



.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(0,189,242,.12);
  color: var(--primary2);
  font-weight: 900;
}

.product-highlight {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  border-radius: 30px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(0, 189, 242, .16), rgba(13, 27, 42, .92)),
    var(--bg2);
}

.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #9ff2c9;
  background: rgba(54, 211, 153, .14);
  font-weight: 900;
  margin-bottom: 16px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.chips span {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .9rem;
}

.preview {
  border-radius: 24px;
  overflow: hidden;
  background: #09182d;
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.preview-body {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 16px;
  padding: 18px;
}

.doc-list,
.ai-box {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.doc-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  margin: 12px 0;
}

.doc-line.short { width: 60%; }
.doc-line.medium { width: 78%; }

.alert {
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(251, 191, 36, .12);
  color: #ffe2a1;
  border: 1px solid rgba(251, 191, 36, .24);
}

.novadocs {
  background: rgba(255,255,255,.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.metrics div {
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 22px;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--primary2);
  font-size: 2rem;
}

.metrics span {
  color: var(--muted);
}

.pilot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px 56px;
  border-radius: 34px;
}

.pilot h2 {
  font-size: clamp(2rem, 6.2vw, 3.2rem);
  line-height: 1.1;
  max-width: 950px;
}

.pilot p {
  max-width: 820px;
  color: #b9c6d6;
  line-height: 1.7;
}




.pilot-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pilot-points span {
  padding: 9px 14px;
  border-radius: 999px;
  color: #45c6ff;
  background: rgba(69,198,255,.08);
  border: 1px solid rgba(69,198,255,.2);
  font-weight: 700;
}

.pilot-btn {
  white-space: nowrap;
  padding: 0 34px;
}

@media (max-width: 900px) {
  .pilot {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .pilot-btn {
    width: 100%;
  }
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
}

form {
  display: grid;
  gap: 14px;
  border-radius: 26px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  color: white;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer strong,
.footer span {
  display: block;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  background: #25d366;
  color: #03210d;
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
}

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

  .grid.four,
  .grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 50px 0;
  }

  .grid.four,
  .grid.five,
  .trust-row,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .pilot {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .navbar-logo {
    height: 44px;
  }

  .brand span {
    font-size: 1.1rem;
  }
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    line-height: 1;
    text-shadow: 0 0 20px rgba(69,198,255,.15);
}



.brand-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #9fb3c8;
    margin-top: 4px;
    line-height: 1.2;
}

.trust-row div {
    border-radius: 20px;
    padding: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
}

.trust-row strong {
    font-size: 1.2rem;
    color: #45c6ff;
}

.trust-row span {
    margin-top: 10px;
    line-height: 1.5;
}
.trust-title{
    margin-bottom:20px;
}

.trust-title h3{
    font-size:1.5rem;
    margin-bottom:8px;
    color:white;
}

.trust-title p{
    color:#9fb3c8;
    margin:0;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(69,198,255,.08);
    border:1px solid rgba(69,198,255,.2);
    color:#45c6ff;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:24px;
}
.section-label {
    text-align: center;
    color: #45c6ff;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #00bdf2,
        #45c6ff
    );
}

.card:hover {

    transform: translateY(-8px);

    border-color: rgba(69,198,255,.4);

    box-shadow:
        0 20px 50px rgba(0,0,0,.25),
        0 0 30px rgba(69,198,255,.12);
}

#servicios {
  padding-bottom: 20px;
}

#productos {
  padding-top: 50px;
}

.pilot-section {
    padding-top: 10px;
}

.pilot-section {
    padding-bottom: 60px;
}

#contacto {
    padding-top: 20px;
}

.pilot-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem) !important;
  line-height: 1.08;
  color: #ffffff;
  margin: 12px 0 22px;
}

.pilot-section .pilot .pilot-content h2.pilot-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem) !important;
  line-height: 1.08 !important;
  color: #ffffff !important;
  margin: 12px 0 22px !important;
}

section.pilot-section .pilot-content .pilot-label {
  color: #45c6ff;
  font-size: 1.2rem !important;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}


.contact-label {
  display: block;
  color: #45c6ff;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.contact-highlights {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  gap: 18px;
  margin-top: 34px;
}

.contact-highlights span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #45c6ff;
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-highlights span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #45c6ff;
  box-shadow: 0 0 18px rgba(69,198,255,.85);
}


.footer {
    margin-top: 5px;
    padding: 20px 10px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-company {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-tagline {
    margin-top: 10px;

    color: #45c6ff;

    font-size: 1rem;
    font-weight: 600;
}

.footer-location {
    margin-top: 16px;

    color: rgba(255,255,255,.70);

    font-size: .95rem;
}

.footer-copy {
    margin-top: 24px;

    color: rgba(255,255,255,.50);

    font-size: .85rem;
}
.footer-company {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;

  width: 73px;
  height: 73px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #25d366;

  z-index: 9999;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}

.whatsapp img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.whatsapp::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.success-message{
    display:none;

    margin-top:20px;
    padding:18px 22px;

    border-radius:16px;

    background:rgba(37,211,102,.12);
    border:1px solid rgba(37,211,102,.30);

    color:#6dff9f;

    font-weight:600;
    line-height:1.6;
}

.form-message {
    margin-top: 20px;
    padding: 16px 20px;

    border-radius: 12px;

    color: #45c6ff;
    font-weight: 600;

    background: rgba(69,198,255,.08);
    border: 1px solid rgba(69,198,255,.20);

    display: none;
}