:root {
  --ink: #f7f7f2;
  --muted: #a7aa9f;
  --black: #050505;
  --soft: #111311;
  --panel: #161816;
  --line: rgba(204, 255, 0, 0.18);
  --primary: #ccff00;
  --primary-soft: rgba(204, 255, 0, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

::selection {
  color: #050505;
  background: var(--primary);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.28) 100%),
    radial-gradient(circle at 18% 34%, rgba(204, 255, 0, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.82));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.75;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 92px;
  align-items: center;
  gap: 18px;
}

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

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 0 18px rgba(204, 255, 0, 0.5));
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  justify-content: flex-end;
  justify-self: end;
  border: 1px solid rgba(204, 255, 0, 0.18);
  border-radius: 999px;
  padding: 4px;
  background: rgba(5, 5, 5, 0.34);
  backdrop-filter: blur(14px);
}

.site-nav__link {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  color: #dfe3d7;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav__link:hover {
  color: #050505;
  background: var(--primary);
}

.site-nav__divider {
  width: 1px;
  height: 24px;
  margin: 0 6px;
  background: rgba(204, 255, 0, 0.2);
}

.site-nav__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f3f3ec;
  background: transparent;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav__icon:hover {
  color: #050505;
  background: var(--primary);
  box-shadow: 0 0 22px rgba(204, 255, 0, 0.12);
}

.site-nav__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-nav__icon svg path {
  fill: currentColor;
  stroke: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 96px 0 150px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: #fff;
  font-family: "Ubuntu", "Inter", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: 4.45rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.hero p {
  max-width: 680px;
  margin-top: 24px;
  color: #d9ddd2;
  font-size: 1.08rem;
}

.actions,
.center {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(204, 255, 0, 0.16), 0 10px 30px rgba(0, 0, 0, 0.36);
}

.btn--light {
  background: var(--primary);
  color: #050505;
}

.btn--solid {
  background: transparent;
  color: var(--primary);
}

.btn--solid:hover {
  background: rgba(204, 255, 0, 0.08);
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.plan-tag,
.enterprise span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.copy {
  display: grid;
  gap: 18px;
}

.copy p,
.section__header p,
.feature p,
.value-grid p,
.portfolio-card h3,
.pricing p,
.faq p,
.contact p,
.enterprise p {
  color: var(--muted);
}

.copy h2,
.section__header h2 {
  margin-top: 14px;
}

.section--about .split > .copy:last-child {
  padding-top: 52px;
}

.section--about,
.section--gallery,
.contact {
  background: #050505;
}

.section--features,
.section--portfolio,
.faq {
  background: var(--soft);
}

.section__header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section__header .eyebrow {
  justify-content: center;
}

.feature-grid,
.value-grid,
.portfolio-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.feature,
.value-grid article,
.portfolio-card,
.pricing,
details,
.contact-card,
.enterprise {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.feature,
.value-grid article {
  padding: 30px;
}

.feature {
  position: relative;
  min-height: 230px;
}

.feature::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(204, 255, 0, 0.22));
}

.feature:hover,
.value-grid article:hover,
.portfolio-card:hover,
.pricing:hover,
details:hover,
.contact-card:hover,
.enterprise:hover {
  border-color: rgba(204, 255, 0, 0.56);
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.105), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), 0 0 34px rgba(204, 255, 0, 0.08);
  transform: translateY(-4px);
}

.feature h3,
.value-grid h3 {
  margin-bottom: 14px;
}

.value-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #090a09;
}

.portfolio-card--featured {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.portfolio-card img,
.portfolio-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.portfolio-card:hover img,
.portfolio-card:hover video {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.portfolio-card--video::before {
  content: "Vídeo";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  border: 1px solid rgba(5, 5, 5, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  color: #050505;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--primary);
}

.portfolio-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.stats {
  color: #050505;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%),
    var(--primary);
}

.stats__inner {
  min-height: 214px;
  display: grid;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.stats span {
  color: rgba(5, 5, 5, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stats strong {
  max-width: 920px;
  color: #050505;
  font-family: "Ubuntu", sans-serif;
  font-size: 3.15rem;
  line-height: 1.03;
}

.cta-band {
  padding: 54px 0;
  color: #050505;
  background: var(--primary);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band span {
  color: rgba(5, 5, 5, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 720px;
  color: #050505;
}

.cta-band .btn {
  border-color: #050505;
  background: #050505;
  color: var(--primary);
}

.section--offer {
  background:
    linear-gradient(rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.93)),
    radial-gradient(circle at 18% 18%, rgba(204, 255, 0, 0.12), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(204, 255, 0, 0.08), transparent 34%),
    #050505;
}

.pricing {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  gap: 20px;
  padding: 34px;
}

.pricing--featured {
  border-color: rgba(204, 255, 0, 0.58);
  padding-top: 56px;
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.14), rgba(255, 255, 255, 0.025));
  transform: translateY(-10px);
}

.pricing--featured:hover {
  transform: translateY(-14px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  border: 1px solid rgba(204, 255, 0, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  color: #050505;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: var(--primary);
}

.pricing .btn {
  width: 100%;
  margin-top: auto;
}

.price {
  display: grid;
  gap: 4px;
}

.price strong {
  color: var(--primary);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 800;
}

.enterprise {
  position: relative;
  display: grid;
  grid-template-areas:
    "copy benefits"
    "button benefits";
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  gap: 30px 46px;
  margin-top: 24px;
  padding: 34px;
  align-items: stretch;
  overflow: hidden;
  border-color: rgba(204, 255, 0, 0.58);
  background:
    linear-gradient(135deg, rgba(204, 255, 0, 0.16), rgba(255, 255, 255, 0.035) 42%, rgba(5, 5, 5, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.enterprise::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(204, 255, 0, 0.76);
  pointer-events: none;
}

.enterprise__copy {
  position: relative;
  grid-area: copy;
  display: grid;
  gap: 12px;
}

.enterprise h3 {
  max-width: 660px;
  font-size: 1.65rem;
}

.enterprise p {
  max-width: 660px;
}

.enterprise__benefits {
  position: relative;
  grid-area: benefits;
  display: grid;
  align-content: center;
  gap: 24px;
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 8px;
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.075), rgba(255, 255, 255, 0.026));
}

.enterprise__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: #f7f7f2;
  font-size: 0.88rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

.enterprise__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enterprise__list li::before {
  content: "\2713";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1;
  background: linear-gradient(135deg, #38d87b, #1f9f6b);
  box-shadow: 0 0 18px rgba(56, 216, 123, 0.28);
}

.enterprise__note {
  position: relative;
  justify-self: start;
  border: 1px solid rgba(204, 255, 0, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  color: #d4d8ca;
  font-weight: 800;
  background: rgba(5, 5, 5, 0.28);
}

.enterprise .btn {
  position: relative;
  grid-area: button;
  width: 100%;
  max-width: 440px;
  align-self: end;
  white-space: nowrap;
}

.faq__wrap {
  max-width: 860px;
}

details {
  margin-bottom: 14px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #050505;
  background: var(--primary);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 22px 24px;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: 58px;
  align-items: center;
}

.contact__inner > div:first-child {
  display: grid;
  gap: 18px;
}

.contact__inner > div:first-child p {
  max-width: 740px;
}

.contact-pillars {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-top: 20px;
  border: 1px solid rgba(204, 255, 0, 0.18);
  border-radius: 8px;
  padding: 22px 24px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.28);
}

.contact-pillars > span {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-pillars article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  border-top: 1px solid rgba(204, 255, 0, 0.2);
  padding-top: 14px;
}

.contact-pillars article > span {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
}

.contact-pillars h3 {
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.16;
}

.contact-pillars p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 26px;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(204, 255, 0, 0.34);
  background:
    radial-gradient(circle at 86% 0%, rgba(204, 255, 0, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.82), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(204, 255, 0, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.contact-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(204, 255, 0, 0.16);
}

.contact-card__top span {
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card__top img {
  width: 70px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(204, 255, 0, 0.25));
}

.diagnosis-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: 100%;
}

.diagnosis-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.diagnosis-item > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  background: rgba(204, 255, 0, 0.055);
}

.diagnosis-item strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.24;
}

.diagnosis-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.46;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  gap: 12px;
}

.contact-actions .btn {
  width: 100%;
  min-height: 52px;
  box-shadow: none;
}

.contact-actions .btn--light {
  min-height: 56px;
  box-shadow: 0 18px 42px rgba(204, 255, 0, 0.16);
}

.contact-actions .btn--solid {
  min-height: 48px;
  border-color: rgba(204, 255, 0, 0.42);
  color: #dfe3d7;
  background: rgba(5, 5, 5, 0.08);
}

.contact-actions .btn:hover {
  box-shadow: 0 16px 34px rgba(204, 255, 0, 0.12);
}

.contact-actions .btn--solid:hover {
  border-color: rgba(204, 255, 0, 0.72);
  color: var(--primary);
  background: rgba(204, 255, 0, 0.055);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 255, 0, 0.52);
  border-radius: 999px;
  padding: 0 20px;
  color: #050505;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--primary);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 28px rgba(204, 255, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.52), 0 0 38px rgba(204, 255, 0, 0.32);
}

.whatsapp-float::before {
  content: none;
}

.footer {
  padding: 64px 20px 42px;
  color: #fff;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(204, 255, 0, 0.08), transparent 34%),
    #050505;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 38px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer__inner > img,
.footer__inner > .footer__nav,
.footer__inner > p {
  display: none;
}

.footer__brand {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
}

.footer__brand img {
  width: 84px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(204, 255, 0, 0.16));
}

.footer__brand p {
  max-width: 520px;
  color: #e8ece0;
  font-size: 1.15rem;
  line-height: 1.45;
}

.footer__links {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 22px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer__nav a {
  color: #dfe3d7;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer__nav a:hover {
  color: var(--primary);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 255, 0, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer__social a:hover {
  border-color: rgba(204, 255, 0, 0.55);
  color: var(--primary);
  background: rgba(204, 255, 0, 0.07);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer__social svg path {
  fill: currentColor;
  stroke: none;
}

.footer__bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(204, 255, 0, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer__bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer__bottom a:hover {
  color: var(--primary);
}

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

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .hero__grid,
  .split,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .section--about .split > .copy:last-child {
    padding-top: 0;
  }

  .feature-grid,
  .value-grid,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .enterprise {
    grid-template-areas:
      "copy"
      "benefits"
      "button";
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .stats span {
    font-size: 0.74rem;
  }

  .stats strong {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .pricing--featured {
    transform: none;
  }

  .pricing--featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 2.26rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    min-height: 66px;
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    gap: 5px;
    padding-top: 14px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    max-width: 100%;
    gap: 1px;
    justify-content: flex-end;
    justify-self: start;
    overflow: hidden;
    transform: translateX(clamp(14px, 6vw, 28px));
    border: 1px solid rgba(204, 255, 0, 0.18);
    border-radius: 999px;
    padding: 3px;
    background: rgba(5, 5, 5, 0.34);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

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

  .site-nav__link {
    display: inline-flex;
    min-width: max-content;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 7px 4px;
    font-size: 0.58rem;
    text-align: center;
    background: transparent;
  }

  .site-nav__link[href="#contato"] {
    display: none;
  }

  .site-nav__divider {
    width: 1px;
    height: 24px;
    margin: 0;
    flex: 0 0 auto;
    background: rgba(204, 255, 0, 0.28);
  }

  .site-nav__icon {
    flex: 0 0 auto;
    width: 22px;
    height: 30px;
    border: 0;
    background: transparent;
  }

  .site-nav__icon svg {
    width: 13px;
    height: 13px;
  }

  .hero__grid {
    gap: 34px;
    padding: 34px 0 82px;
  }

  .split {
    gap: 28px;
  }

  .copy {
    gap: 16px;
  }

  .section__header {
    margin-bottom: 34px;
  }

  .pricing,
  .feature,
  .value-grid article,
  .contact-card {
    padding: 24px;
  }

  .contact-pillars {
    gap: 14px;
    margin-top: 14px;
    padding: 18px;
  }

  .contact-pillars__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-pillars article {
    padding-top: 12px;
  }

  .contact-pillars h3 {
    font-size: 0.9rem;
  }

  .contact-card__top {
    padding-bottom: 18px;
  }

  .contact-card__top img {
    width: 58px;
  }

  .diagnosis-list {
    gap: 16px;
  }

  .diagnosis-item {
    gap: 12px;
  }

  .diagnosis-item > span {
    width: 34px;
    height: 34px;
  }

  .feature {
    min-height: 0;
  }

  .hero-video {
    opacity: 0.72;
  }

  .actions,
  .actions .btn,
  .cta-band .btn,
  .contact-card .btn,
  .enterprise .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    min-height: 0;
    border: 0;
    padding: 0;
    color: #062000;
    font-size: 0.74rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.44), 0 0 22px rgba(204, 255, 0, 0.24);
  }

  .whatsapp-float svg {
    width: 34px;
    height: 34px;
    margin-right: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .footer {
    padding: 48px 18px 86px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer__brand {
    justify-items: center;
    gap: 14px;
  }

  .footer__brand img {
    width: 74px;
  }

  .footer__brand p {
    max-width: 300px;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .footer__links {
    justify-items: center;
    gap: 18px;
  }

  .footer__nav {
    justify-content: center;
    gap: 15px 18px;
  }

  .footer__nav a {
    font-size: 0.66rem;
  }

  .footer__social a {
    width: 36px;
    height: 36px;
  }

  .footer__bottom {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding-top: 22px;
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .feature-grid,
  .value-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .portfolio-card--featured {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .portfolio-card--mobile-wide {
    display: none;
  }

  .pricing {
    min-height: 0;
  }

  .pricing--featured {
    padding-top: 54px;
  }

  .enterprise {
    gap: 22px;
    padding: 24px;
  }

  .enterprise__benefits {
    width: 100%;
    gap: 18px;
    padding: 20px;
  }

  .enterprise__list {
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 0.82rem;
  }

  .enterprise__list li {
    align-items: flex-start;
    line-height: 1.28;
  }

  .enterprise__list li::before {
    margin-top: 1px;
  }

  .enterprise__note {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
  }

  .enterprise h3 {
    font-size: 1.35rem;
  }

  .price strong {
    font-size: 1.85rem;
  }

  .stats__inner {
    min-height: 170px;
    gap: 12px;
    padding: 30px 0;
  }

  .stats span {
    font-size: 0.7rem;
    line-height: 1.1;
  }

  .stats strong {
    font-size: 1.65rem;
    line-height: 1.08;
  }
}

@media (max-width: 390px) {
  .site-header {
    align-items: center;
    gap: 6px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .site-nav {
    flex-wrap: nowrap;
    gap: 2px;
    padding: 3px;
    transform: translateX(18px);
  }

  .site-nav__link {
    min-height: 32px;
    padding: 7px 2px;
    font-size: 0.52rem;
  }

  .site-nav__divider {
    height: 24px;
    margin: 0;
  }

  .site-nav__icon {
    width: 20px;
    height: 30px;
  }

  .site-nav__icon svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 370px) {
  .site-header {
    gap: 4px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .site-nav {
    gap: 1px;
    padding: 3px;
    transform: translateX(12px);
  }

  .site-nav__link {
    padding: 7px 1px;
    font-size: 0.49rem;
  }

  .site-nav__icon {
    width: 18px;
  }

  .site-nav__icon svg {
    width: 11px;
    height: 11px;
  }
}
