@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #020508;
  --panel: #050a10;
  --panel-soft: #07101a;
  --blue: #008cff;
  --cyan: #00c6ff;
  --green: #00e66f;
  --text: #f7f9fc;
  --muted: #aab5c0;
  --line: rgba(0, 157, 255, 0.42);
  --line-green: rgba(0, 230, 111, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 20%, rgba(0, 110, 255, .08), transparent 30%),
    radial-gradient(circle at 86% 30%, rgba(0, 230, 111, .05), transparent 26%),
    #020508;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .07;
}

.glow-blue {
  left: -180px;
  top: 160px;
  background: var(--blue);
}

.glow-green {
  right: -200px;
  top: 270px;
  background: var(--green);
}

a {
  color: inherit;
}

.site-header {
  width: 100%;
  height: 84px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(1, 4, 7, .93);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(90deg, var(--blue) 0 62%, var(--green) 62%);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-name {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: .04em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  text-decoration: none;
  color: #eef4fb;
  transition: color .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.language-btn,
.request-btn {
  height: 44px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.language-btn {
  width: 75px;
  color: white;
  background: transparent;
  border: 1px solid var(--green);
}

.request-btn {
  min-width: 220px;
  padding: 0 24px;
  gap: 30px;
  text-decoration: none;
  background: linear-gradient(90deg, #006dff, #00df69);
  box-shadow: 0 0 22px rgba(0, 125, 255, .3);
}

.menu-btn {
  display: none;
  color: white;
  font-size: 25px;
  background: transparent;
  border: 0;
}

.hero {
  max-width: 1460px;
  margin: 0 auto;
  padding: 66px 46px 26px;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(640px, 1.55fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  align-self: center;
}

.kicker {
  margin-bottom: 28px;
  color: var(--blue);
  letter-spacing: .26em;
  font-size: 16px;
}

.kicker span {
  color: var(--green);
}

h1 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(58px, 5vw, 82px);
  line-height: .91;
  letter-spacing: -.035em;
  margin-bottom: 28px;
}

.blue-text {
  color: #0577ff;
}

.green-text {
  color: var(--green);
}

.hero-description {
  color: #c1c9d2;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 38px;
}

.primary-cta,
.secondary-cta {
  min-width: 220px;
  height: 50px;
  padding: 0 25px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.primary-cta {
  background: linear-gradient(90deg, #006bff, #00de69);
  box-shadow: 0 0 26px rgba(0, 116, 255, .28);
}

.secondary-cta {
  border: 1px solid rgba(0, 230, 111, .75);
  background: rgba(2, 7, 12, .72);
}

.secondary-cta span {
  color: var(--green);
  font-size: 22px;
}

.trust-strip {
  border: 1px solid rgba(0, 158, 255, .35);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,14,22,.82), rgba(2,7,12,.9));
}

.trust-strip article {
  min-height: 110px;
  padding: 18px 10px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

.trust-strip article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255,255,255,.12);
}

.trust-icon {
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.trust-icon.green {
  color: var(--green);
}

.trust-strip strong {
  font-size: 11px;
  line-height: 1.55;
}

.carousel-area {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
}

.carousel-stage {
  position: relative;
  height: 505px;
  overflow: hidden;
  perspective: 1400px;
}

.service-card {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 250px;
  height: 410px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8,16,25,.88), rgba(2,6,10,.96));
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
  transition:
    transform .65s cubic-bezier(.2,.8,.2,1),
    opacity .55s ease,
    filter .55s ease,
    border-color .55s ease,
    box-shadow .55s ease;
  transform-origin: center;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(0,153,255,.05), transparent 66%);
}

.service-card h3 {
  font-size: 15px;
  margin-bottom: 12px;
}

.card-number {
  position: absolute;
  left: 16px;
  top: 20px;
  color: var(--blue);
  font-weight: 700;
}

.service-card h3 {
  padding-left: 28px;
}

.service-card img {
  width: calc(100% + 36px);
  height: 245px;
  margin-left: -18px;
  object-fit: cover;
  display: block;
}

.service-card p {
  color: #d6dde5;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 14px;
}

.service-card[data-pos="0"] {
  z-index: 5;
  transform: translateX(-50%) translateX(0) translateY(-8px) scale(1.08);
  opacity: 1;
  border-color: #147dff;
  box-shadow:
    0 0 0 1px rgba(0, 132, 255, .35),
    0 0 30px rgba(0, 108, 255, .48),
    0 28px 60px rgba(0,0,0,.56);
}

.service-card[data-pos="-1"] {
  z-index: 4;
  transform: translateX(-50%) translateX(-185px) translateY(10px) scale(.96) rotateY(5deg);
  opacity: .94;
}

.service-card[data-pos="1"] {
  z-index: 4;
  transform: translateX(-50%) translateX(185px) translateY(10px) scale(.96) rotateY(-5deg);
  opacity: .94;
}

.service-card[data-pos="-2"] {
  z-index: 3;
  transform: translateX(-50%) translateX(-340px) translateY(20px) scale(.86) rotateY(7deg);
  opacity: .82;
  filter: brightness(.78);
}

.service-card[data-pos="2"] {
  z-index: 3;
  transform: translateX(-50%) translateX(340px) translateY(20px) scale(.86) rotateY(-7deg);
  opacity: .82;
  filter: brightness(.78);
  border-color: var(--line-green);
}

.service-card[data-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.72);
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 151, 255, .7);
  color: white;
  background: rgba(2, 9, 15, .82);
  font-size: 31px;
  cursor: pointer;
  z-index: 10;
}

.carousel-arrow:hover {
  border-color: var(--green);
  color: var(--green);
}

.carousel-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -12px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #3b4650;
  cursor: pointer;
}

.carousel-dots button.active {
  background: #0577ff;
  box-shadow: 0 0 12px rgba(0,119,255,.75);
}

.service-grid {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 46px 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.info-card {
  min-height: 215px;
  padding: 25px 20px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  border: 1px solid rgba(0, 164, 255, .6);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(6,13,21,.8), rgba(2,7,11,.92));
  box-shadow: inset 0 -1px 0 rgba(0,230,111,.26);
}

.info-card:nth-child(even) {
  border-color: rgba(0, 180, 255, .55);
}

.info-icon {
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
}

.info-card h3 {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.info-card p {
  color: #b9c2cb;
  font-size: 13px;
  line-height: 1.7;
  min-height: 83px;
}

.info-card a {
  color: var(--green);
  text-decoration: none;
  font-size: 13px;
}

.feature-footer {
  margin-top: 2px;
  padding: 24px 70px;
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, #07101a, #020508);
}

.feature-footer article {
  min-width: 0;
  padding-right: 18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.12);
}

.footer-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.feature-footer strong {
  font-size: 13px;
}

.feature-footer p {
  margin-top: 6px;
  color: #aab5c0;
  font-size: 12px;
  line-height: 1.55;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9ca8b3;
  font-size: 12px;
}

.socials a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  background: #0a61d8;
}

.socials a:nth-of-type(2) {
  background: linear-gradient(135deg, #7344ff, #ff4438);
}

.socials a:nth-of-type(3) {
  background: #0e1116;
}

.socials a:nth-of-type(4) {
  background: #f31328;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 11px;
}

.wa-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: #07d96c;
  border: 4px solid rgba(255,255,255,.82);
  box-shadow:
    0 0 0 7px rgba(0, 206, 255, .16),
    0 0 26px rgba(0,230,111,.72);
  font-size: 28px;
}

@media (max-width: 1250px) {
  .desktop-nav {
    gap: 20px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .carousel-area {
    margin-top: 10px;
  }

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

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

  .socials {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-btn {
    display: block;
    justify-self: end;
  }

  .carousel-stage {
    height: 455px;
  }

  .service-card {
    width: 230px;
    height: 380px;
  }

  .service-card img {
    height: 220px;
  }

  .service-card[data-pos="-1"] {
    transform: translateX(-50%) translateX(-150px) scale(.94);
  }

  .service-card[data-pos="1"] {
    transform: translateX(-50%) translateX(150px) scale(.94);
  }

  .service-card[data-pos="-2"],
  .service-card[data-pos="2"] {
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand-mark {
    font-size: 43px;
  }

  .brand-name {
    font-size: 22px;
  }

  .hero {
    padding: 45px 18px 22px;
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 55px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

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

  .trust-strip article:nth-child(2)::after {
    display: none;
  }

  .carousel-area {
    grid-template-columns: 40px 1fr 40px;
  }

  .carousel-stage {
    height: 430px;
  }

  .service-card {
    width: min(74vw, 260px);
  }

  .service-card[data-pos="-1"],
  .service-card[data-pos="1"],
  .service-card[data-pos="-2"],
  .service-card[data-pos="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .service-grid {
    padding: 0 18px 22px;
    grid-template-columns: 1fr;
  }

  .feature-footer {
    padding: 25px 20px;
    grid-template-columns: 1fr;
  }

  .feature-footer article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 18px;
  }

  .socials {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .whatsapp-float small {
    display: none;
  }

  .wa-circle {
    width: 55px;
    height: 55px;
  }
}
