:root {
  --bg: #f4ede4;
  --bg-deep: #ead9ca;
  --surface: rgba(255, 251, 246, 0.84);
  --surface-strong: rgba(255, 248, 242, 0.94);
  --line: rgba(31, 43, 87, 0.12);
  --ink: #1f2b57;
  --text: #30405f;
  --muted: #5f6b82;
  --orange: #f15b2a;
  --orange-deep: #d9481d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(70, 47, 31, 0.15);
  --shadow-soft: 0 12px 30px rgba(70, 47, 31, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(241, 91, 42, 0.16), transparent 24%),
    radial-gradient(circle at right 20%, rgba(31, 43, 87, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f2eb 0%, #ecdfd3 100%);
}

body.menu-open {
  overflow: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
}

.scroll-line {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}

.site-header,
.site-footer,
.section {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, calc(100% - 32px));
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(248, 242, 235, 0.96), rgba(248, 242, 235, 0.72));
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: min(260px, 24vw);
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.button,
.header-cta,
.contact-links a,
.hero-dot {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--orange-deep);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 14px 28px rgba(217, 72, 29, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 43, 87, 0.1);
}

.button:hover,
.header-cta:hover,
.contact-links a:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(241, 91, 42, 0.1);
  flex-shrink: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  position: relative;
  padding: 88px 0;
}

.eyebrow,
.map-kicker {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-card,
.benefit-card,
.feature-card,
.map-panel,
.folder-card,
.contact-panel,
.contact-art {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card,
.contact-art {
  position: relative;
  overflow: hidden;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tilt-card:hover {
  transform: translateY(-4px) rotateX(1deg) rotateY(-1deg);
}

.hero-card {
  min-height: calc(100vh - 96px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 243, 0.62), rgba(235, 212, 196, 0.82)),
    linear-gradient(135deg, #fff5ec 0%, #ebd4c4 100%);
  box-shadow: none;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31, 43, 87, 0.12), rgba(31, 43, 87, 0.04) 20%, rgba(31, 43, 87, 0.16));
}

.hero-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 8px 0 56px;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.hero-scene.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-dot:hover {
  transform: scale(1.08);
}

.hero-dot.is-active {
  border-color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 90ms; }
.stagger-3 { transition-delay: 180ms; }
.stagger-4 { transition-delay: 270ms; }

@media (max-width: 1180px) {
  .map-panel,
  .contact,
  .webtracking-grid {
    grid-template-columns: 1fr;
  }

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

  .solutions .section-heading h2 {
    white-space: normal;
  }

  .feature-card-wide {
    grid-column: span 1;
  }
}

.solutions {
  scroll-margin-top: 16px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.solutions .section-heading {
  max-width: none;
  margin-bottom: 26px;
}

.solutions .section-heading h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  white-space: nowrap;
}

.solutions .solutions-intro {
  max-width: none;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 0;
}

.benefit-card,
.feature-card,
.contact-panel {
  padding: 22px;
}

.benefit-card {
  min-height: 0;
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 12px 24px rgba(217, 72, 29, 0.22);
  font-size: 1.1rem;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.focus-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.focus-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 238, 228, 0.9));
  box-shadow: 0 12px 24px rgba(70, 47, 31, 0.12);
}

.focus-card-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.webtracking {
  padding-top: 56px;
  padding-bottom: 56px;
}

.webtracking .section-heading {
  position: relative;
  max-width: none;
  margin-bottom: 8px;
}

.webtracking .section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin: 0 0 4px;
}

.webtracking-intro {
  max-width: none;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.webtracking-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tracking-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(250, 241, 234, 0.92));
  box-shadow: var(--shadow);
}

.tracking-kicker {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.38rem;
}

.tracking-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.tracking-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tracking-item {
  display: grid;
  gap: 8px;
  align-content: start;
}

.tracking-item-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.4rem);
}

.tracking-embed-crop {
  position: relative;
  height: var(--tracking-crop-height, 780px);
  overflow: hidden;
  border: 1px solid rgba(31, 43, 87, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(70, 47, 31, 0.08);
}

.tracking-embed-frame {
  display: block;
  width: calc(100% / var(--tracking-scale, 1));
  height: var(--tracking-frame-height, 980px);
  border: 0;
  margin-top: var(--tracking-offset-top, 0);
  margin-left: var(--tracking-offset-left, 0);
  overflow: hidden;
  transform: scale(var(--tracking-scale, 1));
  transform-origin: top left;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-location {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-location h2,
.contact-panel h2 {
  margin: 0;
}

.location-copy,
.contact-panel address,
.contact-location address {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-style: normal;
}

.contact-highlight {
  margin: 2px 0 0;
  color: var(--orange-deep);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-direct-list {
  display: grid;
  gap: 10px;
}

.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.contact-direct-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(31, 43, 87, 0.12);
  border-radius: 16px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.86);
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(241, 91, 42, 0.45);
  box-shadow: 0 0 0 4px rgba(241, 91, 42, 0.08);
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
}

.location-map-wrap {
  overflow: hidden;
  border: 1px solid rgba(31, 43, 87, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.location-map {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}




@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    top: 0;
    width: calc(100% - 18px);
    padding: 14px 10px 16px;
  }

  .brand {
    max-width: calc(100% - 72px);
  }

  .brand img {
    width: min(220px, 56vw);
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0 8px;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .site-header[data-menu='open'] .site-nav {
    max-height: 320px;
    padding: 10px 8px 4px;
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(31, 43, 87, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .site-header[data-menu='open'] .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header[data-menu='open'] .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-menu='open'] .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .tracking-panels {
    grid-template-columns: 1fr;
  }

  .tracking-embed-crop-consulta {
    --tracking-crop-height: 520px;
    --tracking-offset-top: -56px;
    --tracking-offset-left: -30px;
  }

  .tracking-embed-crop-login {
    --tracking-crop-height: 520px;
    --tracking-offset-top: -48px;
    --tracking-offset-left: -22px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .section {
    width: min(100% - 18px, 1240px);
  }

  .hero {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .benefits-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .hero-card,
  .benefit-card,
  .feature-card,
  .map-panel,
  .contact-panel,
  .contact-art {
    border-radius: 24px;
  }

  .hero-card {
    min-height: calc(100vh - 88px);
    border-radius: 0;
  }

  .hero-stage {
    padding: 6px 0 52px;
  }

  .hero-scene {
    object-fit: cover;
  }
  .hero-dots {
    bottom: 18px;
    gap: 10px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }

  .benefit-card,
  .feature-card,
  .contact-panel,
  .map-copy {
    padding: 20px;
  }

  .contact-art {
    min-height: 420px;
  }

  .contact-logo {
    right: 16px;
    top: 16px;
    width: min(220px, 56%);
    padding: 12px 14px;
    border-radius: 18px;
  }

  .tracking-embed-crop {
    border-radius: 18px;
  }

  .tracking-embed-crop-consulta {
    --tracking-crop-height: 460px;
    --tracking-scale: 0.88;
    --tracking-offset-top: -40px;
    --tracking-offset-left: -18px;
  }

  .tracking-embed-crop-login {
    --tracking-crop-height: 460px;
    --tracking-scale: 0.90;
    --tracking-offset-top: -36px;
    --tracking-offset-left: -14px;
  }

  .hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.hero-scene.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-dot:hover {
  transform: scale(1.08);
}

.hero-dot.is-active {
  border-color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}
.site-footer {
    flex-direction: column;
  }
}





























