:root {
  color-scheme: dark;
  --bg: #090b0a;
  --surface: #101310;
  --text: #f3f5f3;
  --muted: #8f9891;
  --line: rgba(255, 255, 255, 0.1);
  --green: #55ef78;
  --container: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(55, 146, 77, 0.13), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
}

.ambient--top {
  top: -240px;
  left: calc(50% - 180px);
  background: rgba(63, 255, 106, 0.12);
}

.ambient--bottom {
  right: -280px;
  bottom: 4%;
  background: rgba(20, 164, 77, 0.09);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1100px);
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #e9edea;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
}

.brand svg {
  width: 32px;
  fill: currentcolor;
}

.profile-chip {
  display: flex;
  gap: 12px;
  align-items: center;
}

.profile-chip__text {
  display: grid;
  gap: 2px;
  text-align: right;
}

.profile-chip__text strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.profile-chip__text span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-chip__photo {
  width: 55px;
  height: 55px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: linear-gradient(145deg, #672fd2, #672fd2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.025);
}

.profile-chip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15) translateY(4px);
}

main {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 76px 0 58px;
  text-align: center;
}

.intro__eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.intro h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.intro p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.65;
  text-wrap: balance;
}

.intro__contact {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 26px;
  color: #c5cdc7;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.intro__contact:hover {
  color: #fff;
}

.intro__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(85, 239, 120, 0.1);
}

.links {
  display: grid;
  gap: 22px;
}

.card {
  position: relative;
  isolation: isolate;
  display: block;
  aspect-ratio: 2.55 / 1;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transform: translateZ(0);
  transition:
    transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(-5px);
}

.card:focus-visible,
.intro__contact:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.card__background,
.card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card__background {
  z-index: -2;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.card:hover .card__background {
  transform: scale(1.025);
}

.card__shade {
  z-index: -1;
  background: linear-gradient(90deg, #030705 0%, #030705 38%, rgba(3, 7, 5, 0.84) 48%, rgba(3, 7, 5, 0.2) 68%, transparent 100%);
}

.card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 52%;
  height: 100%;
  padding: 25px 0 25px 28px;
}

.card__logo {
  display: block;
  max-height: 30px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
}

.card__logo--zaflux {
  width: 100px;
}

.card__logo--maturador {
  width: 118px;
  max-height: 38px;
}

.card__logo--nozap {
  width: 74px;
  mix-blend-mode: screen;
}

.card__title {
  display: block;
  font-size: clamp(19px, 3.2vw, 27px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.card__title em {
  color: var(--green);
  font-style: normal;
}

.card__copy {
  display: block;
  max-width: 315px;
  margin-top: 10px;
  color: #abb4ad;
  font-size: 12px;
  line-height: 1.45;
}

.card__cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 16px;
  padding: 8px 9px 8px 13px;
  border: 1px solid rgba(104, 255, 137, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, #55ef78, #30ca5d);
  color: #061109;
  box-shadow: 0 8px 24px rgba(48, 202, 93, 0.2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.card__cta span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(6, 17, 9, 0.2);
  border-radius: 50%;
  background: rgba(6, 17, 9, 0.1);
}

.card:hover .card__cta {
  background: linear-gradient(135deg, #70ff90, #42df6c);
  box-shadow: 0 10px 30px rgba(48, 202, 93, 0.32);
  transform: translateY(-1px);
}

.card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dfe8e1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card--whatsapp .card__title em {
  color: #7bffae;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.reveal.is-visible:hover {
  transform: translateY(-5px);
}

footer {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 90px 20px 36px;
  color: #616862;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 621px) {
  .card__content {
    transform: translateY(-6px);
  }

  .card__logo {
    max-height: 38px;
    margin-bottom: 9px;
    transform: translateY(-8px);
  }

  .card__logo--zaflux {
    width: 110px;
  }

  .card__logo--maturador {
    width: 130px;
    max-height: 42px;
  }

  .card__logo--nozap {
    width: 82px;
  }

  .card__copy {
    color: #bdc6bf;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: min(calc(100% - 32px), 1100px);
    padding: 20px 0;
  }

  .brand span,
  .profile-chip__text span {
    display: none;
  }

  .profile-chip__photo {
    width: 42px;
    height: 42px;
  }

  .intro {
    padding: 54px 6px 44px;
  }

  .intro h1 {
    max-width: 420px;
  }

  .links {
    gap: 16px;
  }

  .card {
    aspect-ratio: auto;
    min-height: 330px;
    border-radius: 20px;
  }

  .card__background {
    object-position: 63% center;
  }

  .card__shade {
    background:
      linear-gradient(90deg, #030705 0%, #030705 44%, rgba(3, 7, 5, 0.82) 58%, rgba(3, 7, 5, 0.15) 100%),
      linear-gradient(0deg, rgba(3, 7, 5, 0.7), transparent 48%);
  }

  .card__content {
    width: 72%;
    padding: 26px 0 26px 22px;
  }

  .card__title {
    font-size: clamp(22px, 7vw, 29px);
  }

  .card__copy {
    max-width: 245px;
    font-size: 12px;
  }

  footer {
    padding-top: 70px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
  
}
/* Ajuste individual das logos dos cards */

.card__logo--zaflux {
  width: 150px;
  max-height: 55px;
}

.card__logo--maturador {
  width: 160px;
  max-height: 56px;
}

.card__logo--nozap {
  width: 115px;
  max-height: 48px;
}
.card__copy {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}