:root {
  --blue: #0785d7;
  --blue-2: #2f83d6;
  --blue-3: #55a9f5;
  --ink: #07101a;
  --ink-2: #162232;
  --gray: #667085;
  --muted: #7a8594;
  --line: #e6edf5;
  --soft: #f4f8fc;
  --soft-2: #eef4fa;
  --white: #ffffff;
  --whatsapp: #25d366;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(12, 27, 45, .10);
  --shadow-soft: 0 12px 32px rgba(12, 27, 45, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 18px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
}
.skip-link:focus { top: 18px; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: linear-gradient(90deg, #f7fbff, #ffffff 52%, #f2f7fc);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: .82rem;
}
.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar strong {
  color: var(--ink);
  letter-spacing: .04em;
  font-weight: 900;
}
.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gray);
  font-weight: 750;
}
.topbar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__contacts svg { color: var(--blue); }

.navbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 215px;
  height: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}
.nav-menu a {
  position: relative;
  color: #1e2a38;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--blue);
  transition: transform .2s ease;
}
.nav-menu a:hover { color: var(--blue); }
.nav-menu a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: .94rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 34px rgba(7,133,215,.22);
}
.btn-outline {
  color: var(--ink);
  background: rgba(255,255,255,.86);
  border-color: #d7e2ee;
}
.btn-outline:hover { border-color: var(--blue); box-shadow: var(--shadow-soft); }
.btn-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .22);
}
.btn-whatsapp svg { width: 1.25em; height: 1.25em; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  background: linear-gradient(180deg, #f8fbff, #fff);
  border-bottom: 1px solid var(--line);
}
.hero-slider {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.hero-slide__media,
.hero-slide__media img,
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide__media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}
.hero-slide__overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 29%, rgba(255,255,255,.74) 51%, rgba(255,255,255,.20) 78%, rgba(255,255,255,.02) 100%),
    radial-gradient(circle at 18% 25%, rgba(7,133,215,.10), transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(244,248,252,.12));
}
.hero-slide__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 128px;
}
.hero-copy {
  max-width: 610px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  background: rgba(7,133,215,.08);
  border: 1px solid rgba(7,133,215,.16);
  padding: 8px 13px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 950;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  margin: 22px 0 22px;
  font-size: clamp(3.1rem, 5.8vw, 5.95rem);
  line-height: .93;
  letter-spacing: -.07em;
  font-weight: 950;
  color: var(--ink);
}
h1 span {
  display: block;
  color: var(--blue);
  letter-spacing: -.06em;
}
.hero-copy p {
  max-width: 560px;
  color: #435164;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.55;
  font-weight: 650;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.slider-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: -86px;
  padding-bottom: 34px;
}
.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: #c7d3df;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.slider-dot.is-active {
  width: 32px;
  background: var(--blue);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: .86rem;
  font-weight: 900;
}
.hero-badges svg { color: var(--blue); }

.intro-section { padding: 76px 0 30px; background: var(--white); }
.intro-card {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff, #f5f9fd);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
h2 {
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4.1vw, 4rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}
h3 {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.lead { color: var(--gray); font-size: 1.16rem; font-weight: 650; }
.quote-card {
  padding: 28px;
  border-radius: 24px;
  background: #f1f7fd;
  border: 1px solid #dceaf8;
}
.quote-card p {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.3;
  font-weight: 900;
}
.quote-card span { color: var(--gray); font-weight: 650; }

.section { padding: 94px 0; }
.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}
.section-head.compact { margin-bottom: 30px; }
.section-head p,
.faq-copy p,
.contact-copy p,
.company-copy p,
.instagram-card p {
  color: var(--gray);
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -55px -85px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,133,215,.12), transparent 70%);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7,133,215,.26);
  box-shadow: 0 30px 72px rgba(12,27,45,.13);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--blue);
  background: #f1f8ff;
  border: 1px solid #d6eaff;
  margin-bottom: 18px;
}
.service-card__icon svg { width: 29px; height: 29px; }
.service-card h3 { font-size: 1.16rem; margin-bottom: 11px; }
.service-card p { color: var(--gray); margin-bottom: 22px; }
.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 950;
}

.company-section {
  background: linear-gradient(180deg, #f7fbff, #fff);
  border-block: 1px solid var(--line);
}
.company-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.company-photo {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.company-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,16,26,.18));
  pointer-events: none;
}
.company-photo img {
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
}
.company-copy {
  padding: 8px 0;
}
.company-copy p { margin-bottom: 14px; }
.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 24px;
}
.mini-metrics div {
  padding: 17px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(12,27,45,.05);
}
.mini-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 1.06rem;
  margin-bottom: 4px;
}
.mini-metrics span { color: var(--gray); font-size: .92rem; }
.company-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.clients-section { background: #fff; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.client-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid var(--line);
  color: #253244;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(12,27,45,.04);
}
.client-card svg { color: var(--blue); }

.instagram-section { padding: 0 0 92px; background: #fff; }
.instagram-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(85,169,245,.36), transparent 32%),
    linear-gradient(135deg, #07101a, #17202c 52%, #0a2c4f);
  box-shadow: var(--shadow);
}
.instagram-card .section-kicker {
  color: #bde1ff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.instagram-card h2 {
  max-width: 790px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.faq-section {
  background: #f7fbff;
  border-block: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 36px;
}
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12,27,45,.04);
}
summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}
details p { margin: 12px 0 0; color: var(--gray); }

.contact-section { padding-bottom: 110px; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}
.contact-panel,
.contact-form {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-panel img {
  width: 100%;
  aspect-ratio: 4 / 2.35;
  object-fit: cover;
}
.contact-copy { padding: 28px; }
.contact-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
}
.contact-list svg {
  width: 27px;
  height: 27px;
  color: var(--blue);
}
.contact-list a[href*="wa.me"] svg { color: var(--whatsapp); }
.contact-list strong {
  display: block;
  color: var(--ink);
}
.contact-list span { color: var(--gray); }
.contact-form { padding: 30px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #4b5868;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f9fbfd;
  border: 1px solid #dfe7f0;
  border-radius: 16px;
  outline: none;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
}
textarea { min-height: 148px; resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7,133,215,.12);
}
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 850;
}
.alert-success {
  background: rgba(33,198,116,.10);
  border: 1px solid rgba(33,198,116,.26);
  color: #137344;
}
.alert-error {
  background: rgba(255,90,90,.10);
  border: 1px solid rgba(255,90,90,.28);
  color: #a92424;
}

.footer {
  padding: 58px 0 24px;
  color: #d4dce6;
  background: #07101a;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 34px;
}
.footer img {
  width: 190px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.2));
}
.footer p,
.footer a,
.footer__bottom { color: #aeb8c5; }
.footer h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1rem;
}
.footer a {
  display: block;
  margin: 8px 0;
  transition: color .2s ease;
}
.footer a:hover { color: var(--blue-3); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(37,211,102,.34);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 1080px) {
  .navbar__cta { display: none; }
  .nav-menu { gap: 18px; }
  .hero-slider { min-height: 630px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .company-grid,
  .contact-grid,
  .faq-grid,
  .intro-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .topbar__inner,
  .topbar__contacts {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
  .navbar__inner { min-height: 76px; }
  .brand img { width: 174px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .hero-slider { min-height: 680px; }
  .hero-slide__overlay {
    background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.94) 54%, rgba(255,255,255,.70) 100%);
  }
  .hero-slide__media img { object-position: 62% center; }
  .hero-slide__inner { padding: 82px 0 150px; }
  .slider-bar { align-items: flex-start; flex-direction: column; margin-top: -115px; }
  .hero-badges { justify-content: flex-start; }
  .section { padding: 72px 0; }
  .intro-section { padding-top: 54px; }
  .instagram-card,
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .form-row,
  .mini-metrics,
  .services-grid,
  .clients-grid,
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { display: none; }
  h1 { font-size: clamp(2.35rem, 14vw, 4rem); letter-spacing: -.06em; }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-copy p { font-size: 1rem; }
  .hero__actions .btn { width: 100%; }
  .hero-badges span { width: 100%; }
  .intro-card,
  .instagram-card,
  .contact-form,
  .contact-copy { padding: 22px; }
  .service-card { min-height: auto; }
}
