:root {
  --ink: #111827;
  --ink-2: #253346;
  --muted: #64748b;
  --line: #dce4ee;
  --paper: #f5f8fb;
  --white: #ffffff;
  --teal: #008f8c;
  --teal-dark: #075f5f;
  --teal-soft: #e3f8f5;
  --green: #28c76f;
  --radius: 0.625rem;
  --shadow: 0 1.375rem 3.4375rem rgba(17, 24, 39, 0.14);
  --container: 72.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 42rem),
    var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

.reveal-section.is-pending .reveal-item {
  opacity: 0;
  transform: translateY(1.6rem) scale(0.975);
  filter: blur(0.5rem);
}

.reveal-section.is-visible .reveal-item {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(0.875rem);
  transition: box-shadow 240ms ease;
  will-change: box-shadow;
}

.site-header.is-compact {
  box-shadow: 0 0.625rem 1.5rem rgba(17, 24, 39, 0.08);
}

.nav {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition:
    min-height 180ms ease,
    padding 180ms ease;
}

.brand,
h1,
h2,
h3 {
  font-family: "Oxanium", "Trebuchet MS", sans-serif;
  letter-spacing: 0;
}

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

.brand-logo-crop {
  position: relative;
  display: block;
  width: 9.375rem;
  height: 5.5rem;
  overflow: hidden;
  transition:
    width 180ms ease,
    height 180ms ease;
  will-change: width, height;
}

.brand-logo-crop img {
  position: absolute;
  top: -3.125rem;
  left: -2.875rem;
  display: block;
  width: 12.8125rem;
  max-height: none;
  height: auto;
  transform-origin: top left;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a,
.nav-button,
.button,
.contact-link,
.whatsapp-float {
  font-weight: 800;
  text-decoration: none;
}

.nav-links a {
  position: relative;
  color: var(--muted);
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 0.12rem;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--teal);
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-button,
.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.button:hover,
.nav-button:hover {
  transform: translateY(-0.125rem);
}

.nav-button {
  min-height: 2.75rem;
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--white) 0 54%, var(--teal-soft) 54% 100%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 143, 140, 0.08));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  min-height: calc(100vh - 4.75rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22.5rem, 0.85fr);
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-copy {
  max-width: 42.5rem;
  padding-right: 1.5rem;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  color: var(--ink);
  font-size: 6rem;
  line-height: 0.95;
}

h2 {
  max-width: 53.125rem;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.12;
}

h3 {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-text {
  max-width: 38.125rem;
  margin-top: 1.25rem;
  color: var(--ink-2);
  font-size: 1.14rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 0.85rem;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(227, 248, 245, 0.82);
  border: 1px solid rgba(0, 143, 140, 0.18);
  border-radius: 999rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 1rem 2.125rem rgba(0, 143, 140, 0.24);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.product-panel {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--ink), var(--teal), var(--green));
}

.product-panel:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.7rem 3.8rem rgba(17, 24, 39, 0.18);
}

.panel-header {
  min-height: 3.125rem;
  display: grid;
  grid-template-columns: 0.75rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0 0.85rem;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--green);
}

.panel-header em {
  color: var(--teal);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.panel-card {
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.panel-card:hover,
.dark-card:hover,
.service-card:hover {
  transform: translateY(-0.25rem);
}

.panel-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.panel-card strong {
  color: var(--ink);
}

.panel-card-dark {
  background: linear-gradient(135deg, var(--ink), var(--teal-dark));
}

.panel-card-dark span,
.panel-card-dark strong {
  color: var(--white);
}

.panel-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.panel-flow span {
  position: relative;
  padding: 0.65rem 0.55rem;
  color: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  background: #eef5f7;
  border: 1px solid var(--line);
  border-radius: 999rem;
}

.panel-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.62rem;
  width: 0.62rem;
  height: 0.08rem;
  background: var(--line);
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid span {
  display: grid;
  gap: 0.15rem;
  padding: 1.05rem 0;
  color: var(--ink);
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.trust-grid span:last-child {
  border-right: 0;
}

.section {
  padding: 6rem 0;
  background: var(--paper);
  scroll-margin-top: 5rem;
}

.section:nth-of-type(odd):not(.section-dark) {
  background: #ffffff;
}

.hero,
.contact-section {
  scroll-margin-top: 5rem;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22.5rem, 0.95fr);
  gap: 5rem;
  align-items: start;
}

.section-heading p:not(.section-label) {
  max-width: 42.5rem;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.wide {
  max-width: 56.25rem;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  display: flex;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.principles article:hover span {
  color: var(--teal-dark);
}

.principles span,
.dark-card span,
.service-card span {
  flex: 0 0 3rem;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.principles h3,
.dark-card h3,
.service-card h3 {
  margin-bottom: 0.65rem;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, #0f172a 0, #111827 48%, #113737 100%);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: #cbd5e1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.4rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.product-showcase h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 1.75rem;
}

.product-showcase p:not(.showcase-label) {
  max-width: 42rem;
  color: #d6e1e8;
}

.showcase-label {
  margin-bottom: 0.25rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-mark {
  display: grid;
  place-items: center;
  min-height: 9rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
}

.showcase-mark img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
}

.dark-card,
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 15.3125rem;
  padding: 1.45rem;
  border-radius: var(--radius);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.dark-card {
  background: rgba(31, 41, 55, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 0.625rem 1.75rem rgba(17, 24, 39, 0.06);
}

.service-card span,
.dark-card span {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.card-icon {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  width: 3.1rem;
  height: 3.1rem;
  color: var(--teal);
  opacity: 0.22;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.dark-card .card-icon {
  color: #5eead4;
  opacity: 0.28;
}

.service-card:hover .card-icon,
.dark-card:hover .card-icon {
  opacity: 0.55;
  transform: translateY(-0.15rem) scale(1.04);
}

.service-card:hover {
  box-shadow: 0 1rem 2.3rem rgba(17, 24, 39, 0.1);
}

.service-card-accent {
  background: var(--teal-soft);
}

.contact-section {
  padding: 5rem 0;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--ink), #143333);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p:not(.section-label) {
  max-width: 41.25rem;
  margin-top: 1rem;
  color: #d6e1e8;
}

.contact-actions {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  justify-items: start;
}

.contact-link {
  color: var(--teal-soft);
}

.contact-link:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  color: #052112;
  background: #65df92;
  box-shadow: 0 1rem 2.125rem rgba(40, 199, 111, 0.3);
}

.whatsapp-icon {
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-wrap {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
}

.footer-wrap p {
  color: var(--muted);
}

.reveal-section .reveal-item {
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section .reveal-item:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-section .reveal-item:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-section .reveal-item:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-section .reveal-item:nth-child(4) {
  transition-delay: 270ms;
}

.reveal-section .reveal-item:nth-child(5) {
  transition-delay: 360ms;
}

.reveal-section .reveal-item:nth-child(6) {
  transition-delay: 450ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-section.is-pending .reveal-item,
  .reveal-section.is-visible .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .reveal-section .reveal-item,
  .button,
  .nav-button,
  .panel-card,
  .dark-card,
  .service-card,
  .card-icon,
  .product-panel {
    transition: none;
  }
}

@media (max-width: 61.25em) {
  .hero {
    background: var(--paper);
  }

  .hero-layout,
  .two-column,
  .contact-layout,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    gap: 2.5rem;
  }

  .hero-badges {
    max-width: 40rem;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-mark {
    min-height: 7rem;
  }

  .showcase-mark img {
    width: 5.5rem;
    height: 5.5rem;
  }

  .hero-copy {
    max-width: none;
    padding-right: 0;
  }

  h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 45em) {
  html {
    scroll-padding-top: 5.25rem;
  }

  .hero,
  .section,
  .contact-section {
    scroll-margin-top: 5.25rem;
  }

  .nav {
    min-height: 8.25rem;
    position: relative;
    display: block;
    padding: 0;
    transition: min-height 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.9rem;
    overflow-x: auto;
    scrollbar-width: none;
    transform: translate3d(0, 5.65rem, 0);
    transition:
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
      width 340ms cubic-bezier(0.22, 1, 0.36, 1),
      gap 180ms ease,
      font-size 180ms ease;
    will-change: transform;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .brand {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translate3d(calc((100vw - 2rem - 7.75rem) / 2), 0.55rem, 0) scale(1);
    transform-origin: top left;
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .brand-logo-crop {
    width: 7.75rem;
    height: 4.625rem;
  }

  .brand-logo-crop img {
    top: -2.625rem;
    left: -2.4375rem;
    width: 10.75rem;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .nav-button {
    display: none;
  }

  .site-header.is-compact .nav {
    min-height: 4.125rem;
  }

  .site-header.is-compact .brand {
    transform: translate3d(0, 0.32rem, 0) scale(0.64);
  }

  .site-header.is-compact .nav-links {
    width: calc(100% - 5.65rem);
    justify-content: flex-start;
    gap: 0.7rem;
    font-size: 0.88rem;
    transform: translate3d(5.65rem, 1.25rem, 0);
  }

  .hero-layout {
    padding: 4rem 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .trust-grid span:nth-child(2) {
    border-right: 0;
  }

  .trust-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 33.75em) {
  .container {
    width: min(var(--container), calc(100% - 1.1rem));
  }

  .nav {
    min-height: 7.65rem;
  }

  .nav-links {
    gap: 0.55rem;
    justify-content: space-between;
    font-size: 0.9rem;
    transform: translate3d(0, 5.25rem, 0);
  }

  .brand {
    transform: translate3d(calc((100vw - 1.1rem - 7.25rem) / 2), 0.45rem, 0) scale(1);
  }

  .brand-logo-crop {
    width: 7.25rem;
    height: 4.35rem;
  }

  .brand-logo-crop img {
    top: -2.45rem;
    left: -2.3rem;
    width: 10.1rem;
  }

  .hero-layout {
    padding: 2.8rem 0 3.25rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .actions,
  .button {
    width: 100%;
  }

  .actions {
    flex-direction: column;
  }

  .hero-badges span {
    flex: 1 1 calc(50% - 0.65rem);
    justify-content: center;
  }

  .product-panel {
    display: none;
  }

  .whatsapp-float {
    right: 0.65rem;
    bottom: 0.65rem;
    width: 3.1rem;
    height: 3.1rem;
  }

  .whatsapp-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .principles article {
    gap: 1rem;
  }

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

  .product-showcase {
    padding: 1rem;
  }

  .card-icon {
    width: 2.65rem;
    height: 2.65rem;
  }
}

@media (max-width: 23.75em) {
  .whatsapp-float {
    display: none;
  }
}
