:root {
  --orange: #ff914d;
  --purple: #6011ba;
  --blue: #1827b1;
  --black: #090909;
  --ink: #17131f;
  --muted: #625b6e;
  --line: #e8e1ef;
  --soft: #faf8ff;
  --white: #fff;
  --max: 1160px;
  --display: "MuseoModerno", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--black);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: .55rem;
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 60;
  inset: 1rem 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 2rem));
  margin: auto;
  padding: .55rem .62rem;
  border: 1px solid rgba(9, 9, 9, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 1.2rem 3rem rgba(25, 16, 40, .12);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .96); box-shadow: 0 1rem 2.4rem rgba(25, 16, 40, .16); }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { width: 2.75rem; height: 2.75rem; border-radius: 50%; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--display); font-size: 1.02rem; font-weight: 900; }
.brand small { color: var(--muted); font-size: .68rem; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a {
  padding: .72rem .95rem;
  border-radius: 999px;
  color: #342d3d;
  font-size: .9rem;
  font-weight: 850;
}
.nav-links a:hover, .nav-links a:focus-visible { background: #f2eef8; color: var(--black); }
.nav-cta { background: var(--black) !important; color: #fff !important; }

.section, .hero { position: relative; padding: 5.7rem 0; overflow: hidden; }
.hero {
  min-height: 96svh;
  display: grid;
  align-items: center;
  padding-top: 8.4rem;
  background:
    linear-gradient(rgba(24, 39, 177, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 39, 177, .045) 1px, transparent 1px),
    linear-gradient(135deg, #fff 0%, #fff6ef 48%, #f6f4ff 100%);
  background-size: 70px 70px, 70px 70px, auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--purple);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1.04;
}
h1 {
  max-width: 9.6ch;
  color: #0b0910;
  font-size: clamp(3.45rem, 6vw, 6rem);
}
h2 {
  color: #0d0a12;
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  text-wrap: balance;
}
h3 { color: #141019; font-size: 1.08rem; }
.hero-subtitle {
  margin: 1.1rem 0 0;
  color: #211b2b;
  font-size: clamp(1.14rem, 1.6vw, 1.32rem);
  font-weight: 850;
  line-height: 1.45;
}
.hero-text, .section-copy p, .section-head p, .contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.66;
}
.hero-text { max-width: 41rem; margin: .8rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), #ffc16f); color: #130802; box-shadow: 0 1rem 2.4rem rgba(255, 145, 77, .25); }
.btn-secondary { border-color: #ded6ea; background: #fff; color: #211b2c; box-shadow: 0 .8rem 2rem rgba(28, 20, 40, .07); }

.trust-strip, .problem-list, .niche-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-strip { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.15rem; }
.trust-strip li, .niche-list li {
  border: 1px solid #e8e1ef;
  background: rgba(255, 255, 255, .82);
  color: #4f475c;
  border-radius: 999px;
  padding: .52rem .7rem;
  font-size: .82rem;
  font-weight: 850;
}

.hero-visual, .section-photo, .contact-photo {
  position: relative;
  margin: 0;
  border-radius: .95rem;
  overflow: hidden;
  background: #f3eff8;
  box-shadow: 0 1.8rem 4.2rem rgba(31, 22, 48, .16);
}
.section-photo { aspect-ratio: 16 / 9; }
.hero-visual::before, .section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 54%, rgba(9, 9, 9, .36));
  pointer-events: none;
}
.hero-visual img, .section-photo img, .contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual { min-height: 38rem; }
.hero-visual img { min-height: 38rem; }
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  max-width: 24rem;
  padding: .72rem .85rem;
  border-radius: .8rem;
  background: rgba(255, 255, 255, .88);
  color: #191320;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 3rem;
  align-items: center;
}
.section-copy { max-width: 43rem; }
.problem-list {
  display: grid;
  gap: .72rem;
  margin-top: 1.3rem;
}
.problem-list li {
  display: flex;
  gap: .7rem;
  color: #332d3f;
  font-weight: 850;
  line-height: 1.45;
}
.problem-list li::before {
  content: "";
  width: .55rem;
  height: .55rem;
  margin-top: .45rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 .32rem rgba(255, 145, 77, .15);
  flex: 0 0 auto;
}

.section-head { max-width: 50rem; margin: 0 auto 2rem; text-align: center; }
.solution {
  background: #0b0910;
  color: #fff;
}
.solution h2, .solution h3 { color: #fff; }
.solution .eyebrow { color: var(--orange); }
.solution-layout {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1rem;
  background: #111018;
}
.solution .section-photo {
  min-height: 31rem;
  box-shadow: none;
}
.solution-background {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: .24;
}
.solution-background::before {
  background: linear-gradient(90deg, rgba(11, 9, 16, .86), rgba(11, 9, 16, .58));
}
.solution-background img {
  filter: saturate(.86) contrast(.95);
}
.service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .82rem;
}
.service-card {
  min-height: 10rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: .8rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .075));
  backdrop-filter: blur(12px);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, .18);
}
.service-card p {
  margin: .62rem 0 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.55;
}

.difference { background: linear-gradient(135deg, #fff7f1, #fff 46%, #f4f2ff); }
.niche-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.niche-list li { background: #fff; }

.final-cta { background: #0b0910; color: #fff; }
.final-cta h2 { color: #fff; }
.final-cta .eyebrow { color: var(--orange); }
.final-cta p { color: rgba(255, 255, 255, .7); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-photo { margin-top: 1.35rem; aspect-ratio: 3 / 2; box-shadow: 0 1.4rem 3.6rem rgba(0, 0, 0, .28); }
.contact-links { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.1rem; }
.contact-links a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-weight: 900;
}
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .78rem .85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: .9rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .28);
}
.field {
  display: grid;
  gap: .42rem;
}
.field-full { grid-column: 1 / -1; }
.lead-form label {
  align-self: end;
  margin-top: .15rem;
  color: rgba(255, 255, 255, .82);
  font-size: .86rem;
  font-weight: 850;
}
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .72rem;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: .88rem;
  outline: none;
}
.lead-form button, .form-status { grid-column: 1 / -1; }
.lead-form textarea { resize: vertical; min-height: 7.2rem; }
.lead-form input:focus, .lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 145, 77, .13);
}
.lead-form ::placeholder { color: rgba(255, 255, 255, .5); }
.lead-form button:disabled { cursor: wait; opacity: .72; }
.form-transport { position: absolute; width: 1px; height: 1px; border: 0; opacity: 0; pointer-events: none; }
.form-status { min-height: 1.4rem; margin: 0; color: #9ff3ba; font-weight: 900; }
.lead-form.is-success { animation: successPulse .7s ease; }

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 50%;
  background: #25d366;
  color: #07140a;
  box-shadow: 0 1rem 2.8rem rgba(37, 211, 102, .32);
}
.whatsapp-float svg { width: 1.95rem; fill: currentColor; }

.site-footer { padding: 1.1rem 0; border-top: 1px solid #eee8f4; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-inner img { width: 13rem; }
.footer-inner p { margin: 0; color: var(--muted); font-weight: 850; }

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .58s ease, transform .58s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

@keyframes successPulse {
  0% { box-shadow: 0 0 0 rgba(255, 145, 77, 0); }
  45% { box-shadow: 0 0 0 .5rem rgba(255, 145, 77, .16); }
  100% { box-shadow: 0 0 0 rgba(255, 145, 77, 0); }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  h1 { max-width: 11ch; }
  .hero-visual, .hero-visual img { min-height: 31rem; }
  .solution-layout { min-height: auto; }
  .solution .section-photo { min-height: 100%; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 1.35rem)); }
  .site-header { inset: .7rem 0 auto; border-radius: 1rem; }
  .brand img { width: 2.5rem; height: 2.5rem; }
  .brand small, .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: .68rem .78rem !important; }
  .section, .hero { padding: 4.6rem 0; }
  .hero { padding-top: 7rem; }
  h1 { max-width: 100%; font-size: clamp(2.7rem, 13vw, 3.6rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.9rem); }
  .hero-actions, .btn { width: 100%; }
  .hero-visual, .hero-visual img { min-height: 24rem; }
  .hero-visual figcaption { font-size: .88rem; }
  .service-grid, .lead-form { grid-template-columns: 1fr; }
  .lead-form textarea, .lead-form button, .form-status { grid-column: auto; }
  .footer-inner { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
