.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: clamp(0.75rem, 1.5vw, 0.9rem) clamp(1.6rem, 2.4vw, 1.9rem);
  font-size: clamp(0.88rem, 0.86rem + 0.35vw, 0.95rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: transform var(--transition-default), box-shadow var(--transition-default),
    background var(--transition-default), border-color var(--transition-default);
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid rgba(60, 125, 240, 0.32);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(31, 191, 165, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(60, 125, 240, 0.32);
}

.btn--secondary {
  background: rgba(31, 191, 165, 0.12);
  border: 1px solid rgba(31, 191, 165, 0.34);
  color: var(--color-primary);
}

.btn--secondary:hover {
  background: rgba(31, 191, 165, 0.18);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(15, 44, 63, 0.14);
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: rgba(60, 125, 240, 0.3);
  background: rgba(60, 125, 240, 0.08);
}

.btn--icon svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    white-space: normal;
    padding-inline: clamp(1.2rem, 6vw, 1.6rem);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 125, 240, 0.28);
  background: rgba(60, 125, 240, 0.08);
  color: var(--color-text-soft);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge__icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(31, 191, 165, 0.95), rgba(60, 125, 240, 0.85));
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-heading__title {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-heading__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  text-wrap: pretty;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

.card {
  position: relative;
  border-radius: 24px;
  padding: 2.2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-default), border-color var(--transition-default),
    box-shadow var(--transition-default);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 125, 240, 0.36);
  box-shadow: 0 28px 80px rgba(15, 54, 82, 0.18);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.card__description {
  color: var(--color-text-soft);
  line-height: 1.65;
  text-wrap: pretty;
}

.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(60, 125, 240, 0.15), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.metric-card__value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3vw + 1.4rem, 3.4rem);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.metric-card__label {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card__suffix {
  display: block;
  color: rgba(15, 44, 63, 0.5);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .grid--three,
  .grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid,
  .grid--two,
  .grid--three,
  .grid--four {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.8rem;
  }
}

:root {
  color-scheme: light;
  --color-background: #f4fbff;
  --color-surface: rgba(255, 255, 255, 0.92);
  --color-surface-strong: #ffffff;
  --color-primary: #1fbfa5;
  --color-primary-soft: rgba(31, 191, 165, 0.12);
  --color-secondary: #3c7df0;
  --color-highlight: #f6c866;
  --color-text: #0f2c3f;
  --color-text-soft: rgba(15, 44, 63, 0.7);
  --color-border: rgba(32, 126, 164, 0.16);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Clash Display", "Plus Jakarta Sans", system-ui, sans-serif;
  --content-max-width: 1160px;
  --header-height: 76px;
  --section-padding-y: clamp(2.4rem, 3.2vw + 1rem, 3.6rem);
  --section-gap: clamp(1.8rem, 2.6vw + 1.2rem, 2.6rem);
  --transition-default: 320ms ease;
  --blur-md: blur(28px);
  --shadow-soft: 0 18px 60px rgba(9, 34, 53, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
#root {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 12% 10%, rgba(60, 125, 240, 0.14), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(31, 191, 165, 0.16), transparent 60%),
    var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(100%, var(--content-max-width));
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section {
  position: relative;
  isolation: isolate;
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding-block: var(--section-padding-y);
}

main > section + section {
  padding-top: calc(var(--section-padding-y) * 0.4);
}

@media (max-width: 960px) {
  :root {
    --section-padding-y: clamp(2.2rem, 7vw, 3.2rem);
    --section-gap: clamp(1.4rem, 6vw, 2.2rem);
  }

  main > section + section {
    padding-top: calc(var(--section-padding-y) * 0.4);
  }

  .hero {
    padding-top: calc(var(--header-height) + clamp(0.9rem, 6vw, 1.6rem));
    padding-bottom: clamp(2.4rem, 7vw, 3.4rem);
  }

  .hero__cta {
    flex-wrap: wrap;
  }

  .hero__cta .btn {
    flex: 1 1 220px;
    min-width: 0;
  }
}

.hero {
  padding-top: calc(var(--header-height) + clamp(1.2rem, 3vw, 2.1rem));
  padding-bottom: clamp(2.3rem, 3.2vw, 3.2rem);
  border-bottom: 1px solid rgba(32, 126, 164, 0.08);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(2.6rem, 4vw, 3.6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#how-it-works {
  background: linear-gradient(180deg, rgba(244, 251, 255, 0.82) 0%, rgba(244, 251, 255, 0) 85%);
}

.hero__content {
  display: grid;
  gap: clamp(1.35rem, 2.8vw, 1.85rem);
  max-width: 520px;
}

.hero__headline {
  font-size: clamp(2.8rem, 4vw + 1rem, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero__subheadline {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 32rem;
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: nowrap;
}

.hero__cta .btn {
  min-width: 180px;
  flex: 1 0 auto;
}

.hero__highlights {
  display: flex;
  gap: 0.75rem 1.2rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(15, 44, 63, 0.6);
  font-size: 0.92rem;
  text-wrap: pretty;
  max-width: 520px;
}

.hero__highlights li {
  position: relative;
  padding-left: 1.2rem;
}

.hero__highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.hero__demo {
  border-radius: 32px;
  padding: clamp(1.2rem, 2vw, 1.75rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.97) 70%, #ffffff 100%);
  border: 1px solid rgba(32, 126, 164, 0.12);
  box-shadow: 0 28px 60px rgba(15, 54, 82, 0.14);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
}

.hero-chat {
  width: min(100%, 360px);
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(32, 126, 164, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-chat__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(120deg, rgba(60, 125, 240, 0.16), rgba(31, 191, 165, 0.18));
  border-bottom: 1px solid rgba(32, 126, 164, 0.12);
}

.hero-chat__avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-chat__meta {
  flex: 1;
  display: grid;
  gap: 0.15rem;
}

.hero-chat__meta p {
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.hero-chat__meta span {
  font-size: 0.82rem;
  color: rgba(15, 44, 63, 0.55);
}

.hero-chat__status {
  display: grid;
  gap: 0.35rem;
}

.hero-chat__status span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
  animation: pulse 2.6s infinite ease-in-out;
}

.hero-chat__status span:last-child {
  animation-delay: 0.35s;
}

.hero-chat__messages {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem 1.2rem;
  background: linear-gradient(180deg, rgba(244, 251, 255, 0.65) 40%, #ffffff 100%);
}

.hero-chat__row {
  display: flex;
}

.hero-chat__row--cliente {
  justify-content: flex-start;
}

.hero-chat__row--ia {
  justify-content: flex-end;
}

.hero-chat__row--sistema {
  justify-content: center;
}

.hero-chat__bubble {
  max-width: 240px;
  border-radius: 18px;
  padding: 0.95rem 1.05rem;
  box-shadow: 0 10px 24px rgba(15, 40, 58, 0.08);
  font-size: 0.95rem;
  line-height: 1.55;
  display: grid;
  gap: 0.45rem;
}

.hero-chat__row--cliente .hero-chat__bubble {
  background: rgba(15, 44, 63, 0.06);
  border-bottom-left-radius: 8px;
  color: var(--color-text);
}

.hero-chat__row--ia .hero-chat__bubble {
  background: rgba(31, 191, 165, 0.14);
  border: 1px solid rgba(31, 191, 165, 0.3);
  border-bottom-right-radius: 8px;
}

.hero-chat__row--sistema .hero-chat__bubble {
  background: rgba(60, 125, 240, 0.12);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 22px;
}

.hero-chat__bubble p {
  margin: 0;
}

.hero-chat__bubble span {
  font-size: 0.75rem;
  color: rgba(15, 44, 63, 0.45);
}

.hero-chat__row--ia .hero-chat__bubble span {
  text-align: right;
}

.hero-chat__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  border-top: 1px solid rgba(32, 126, 164, 0.12);
  background: rgba(244, 251, 255, 0.82);
}

.hero-chat__input span {
  font-size: 0.85rem;
  color: rgba(15, 44, 63, 0.55);
}

.hero-chat__input button {
  border: none;
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(31, 191, 165, 0.24);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__demo {
    order: -1;
  }

  .hero__cta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero__cta .btn {
    flex: 1 1 260px;
  }
}

@media (max-width: 720px) {
  .hero__content {
    max-width: none;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__cta .btn {
    width: 100%;
    flex: 1 1 auto;
  }

  .hero__highlights {
    flex-direction: column;
    gap: 0.65rem;
  }
}

.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.3vw, 2rem);
  margin-top: clamp(1.4rem, 2.2vw, 2.3rem);
}

.story-grid::before {
  content: "";
  position: absolute;
  top: clamp(2rem, 3vw, 2.6rem);
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(60, 125, 240, 0.18), rgba(31, 191, 165, 0.25));
  z-index: 0;
}

.story-card {
  position: relative;
  z-index: 1;
  padding: clamp(2.1rem, 3vw, 2.7rem);
  min-height: 0;
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.35rem);
}

.story-card__index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: rgba(31, 191, 165, 0.16);
  width: fit-content;
  letter-spacing: 0.16em;
}

.story-card__title {
  font-size: 1.35rem;
  margin: 0;
}

.story-card__description {
  color: var(--color-text-soft);
  line-height: 1.6;
}

.story-card__kpi {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--color-highlight);
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid::before {
    display: none;
  }
}

.performance-grid {
  margin-top: clamp(1.6rem, 2.2vw, 2.4rem);
}

.metric-card__trend {
  font-size: 1rem;
  margin-right: 0.35rem;
}

.metric-card__trend--down {
  color: var(--color-secondary);
}

.metric-card__trend--up {
  color: var(--color-highlight);
}

.metric-card__spark {
  position: absolute;
  bottom: 1px;
  left: 1px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(60, 125, 240, 0.5), rgba(31, 191, 165, 0.8));
}

.usecases-grid {
  margin-top: clamp(1.6rem, 2.2vw, 2.4rem);
}

.usecase-card {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.usecase-card__top {
  display: grid;
  gap: 1rem;
}

.usecase-card__cta {
  width: fit-content;
}

.features-grid {
  margin-top: clamp(1.6rem, 2.2vw, 2.4rem);
}

.feature-card {
  min-height: clamp(220px, 24vw, 240px);
}

.integrations {
  padding-top: clamp(1.2rem, 2.5vw, 1.8rem);
  padding-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
}

.integrations__inner {
  border-radius: 26px;
  padding: clamp(1.8rem, 2.6vw, 2.4rem) clamp(1.6rem, 2.4vw, 2.2rem);
  display: grid;
  gap: clamp(1.2rem, 2.2vw, 1.7rem);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 251, 255, 0.9) 100%);
  border: 1px solid rgba(32, 126, 164, 0.12);
}

.integrations__inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.integrations__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  align-items: center;
}

.integrations__logos span {
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 125, 240, 0.22);
  background: rgba(60, 125, 240, 0.08);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 44, 63, 0.65);
}

.testimonial {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.6rem);
  padding: clamp(2.4rem, 3vw + 1rem, 3.2rem);
  position: relative;
  overflow: hidden;
  background: var(--color-surface-strong);
  border-radius: 28px;
  border: 1px solid rgba(32, 126, 164, 0.12);
  box-shadow: var(--shadow-soft);
}

.testimonial::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 320px;
  background: radial-gradient(circle, rgba(60, 125, 240, 0.18), transparent 70%);
  filter: blur(28px);
  opacity: 0.7;
}

.testimonial__badge {
  width: fit-content;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 191, 165, 0.12);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw + 1rem, 2.3rem);
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
}

.testimonial__author {
  display: grid;
  gap: 0.2rem;
}

.testimonial__author span {
  font-weight: 600;
}

.testimonial__author small {
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

.compliance-grid {
  margin-top: clamp(1.6rem, 2.4vw, 2.4rem);
}

.compliance-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 2rem;
}

.compliance-card__index {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: rgba(60, 125, 240, 0.14);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.compliance-card p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.faq {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.8rem, 2.6vw, 2.6rem);
}

.faq__item {
  border-radius: 18px;
  border: 1px solid rgba(32, 126, 164, 0.14);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transition: border-color var(--transition-default), background var(--transition-default);
}

.faq__item--open {
  border-color: rgba(60, 125, 240, 0.32);
  background: rgba(244, 251, 255, 0.88);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(32, 126, 164, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin: 0;
}

.contact {
  padding: clamp(2.2rem, 3vw + 1rem, 3.1rem);
  display: grid;
  gap: clamp(1.8rem, 2.6vw, 2.4rem);
}

.contact__form {
  display: grid;
  gap: clamp(1.6rem, 2.6vw, 2.1rem);
}

.contact__grid {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact__grid label {
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.contact__full {
  grid-column: 1 / -1;
}

.contact__grid input,
.contact__grid textarea {
  border-radius: 16px;
  border: 1px solid rgba(32, 126, 164, 0.16);
  background: rgba(244, 251, 255, 0.78);
  padding: 1rem 1.2rem;
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color var(--transition-default), background var(--transition-default);
  resize: vertical;
}

.contact__grid input:focus,
.contact__grid textarea:focus {
  outline: none;
  border-color: rgba(60, 125, 240, 0.42);
  background: rgba(255, 255, 255, 0.95);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact__privacy {
  color: var(--color-text-soft);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .contact {
    padding: clamp(1.8rem, 5.2vw, 2.4rem);
  }

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

.site-footer {
  padding: clamp(3rem, 4vw, 4.2rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(32, 126, 164, 0.12);
  margin-top: var(--section-gap);
}

.site-footer__inner {
  display: grid;
  gap: clamp(2.2rem, 3vw, 3rem);
}

.site-footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.1rem, 2.4vw, 1.7rem);
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(1.8rem, 2.8vw, 2.5rem);
  border-bottom: 1px solid rgba(32, 126, 164, 0.12);
}

.site-footer__cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
  margin: 0;
  text-wrap: balance;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 3vw, 2.5rem);
}

.site-footer__brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.site-footer__grid p {
  margin-top: 0.75rem;
  color: var(--color-text-soft);
  max-width: 26rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.site-footer__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-highlight);
}

.site-footer__grid ul {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer__grid a {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  transition: color var(--transition-default);
}

.site-footer__grid a:hover {
  color: var(--color-secondary);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(15, 44, 63, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.sticky-cta {
  position: fixed;
  inset: auto 0 1.5rem 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-default), transform var(--transition-default);
  z-index: 50;
}

.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__inner {
  background: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 126, 164, 0.18);
  box-shadow: 0 22px 50px rgba(15, 54, 82, 0.18);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.sticky-cta__inner span {
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .sticky-cta__inner {
    flex-direction: column;
    text-align: center;
    border-radius: 28px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(31, 191, 165, 0.95), rgba(60, 125, 240, 0.95));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 18px 48px rgba(15, 54, 82, 0.3);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-default), transform var(--transition-default),
    box-shadow var(--transition-default);
  z-index: 60;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 60px rgba(15, 54, 82, 0.4);
}

.whatsapp-float--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-float__icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.whatsapp-float__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.whatsapp-float__label {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1.1rem;
  }

  .whatsapp-float__label {
    display: none;
  }

  .whatsapp-float__icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.gradient-border {
  position: relative;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(60, 125, 240, 0.4), rgba(31, 191, 165, 0.52));
  padding: 1px;
}

.glass {
  background: var(--color-surface);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(32, 126, 164, 0.08);
  transition: border-color var(--transition-default), background var(--transition-default);
}

.site-header--scrolled {
  border-color: rgba(32, 126, 164, 0.14);
  background: rgba(255, 255, 255, 0.95);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.25rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-height: 48px;
}

.site-header__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.site-header__nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.site-header__nav a {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  transition: color var(--transition-default);
  white-space: nowrap;
}

.site-header__nav a:hover {
  color: var(--color-text);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-header__actions .btn {
  font-size: 0.88rem;
  padding: 0.75rem 1.6rem;
  white-space: nowrap;
}

.site-header__menu {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(32, 126, 164, 0.18);
  background: rgba(244, 251, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.site-header__menu span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  display: block;
}

.site-header__mobile {
  display: none;
}

@media (max-width: 960px) {
  .site-header__nav,
  .site-header__actions {
    display: none;
  }

  .site-header__menu {
    display: inline-flex;
  }

  .site-header__logo-img {
    height: 36px;
  }

  .site-header__mobile {
    display: block;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(32, 126, 164, 0.12);
  }

  .site-header__mobile nav ul {
    display: grid;
    gap: 1.5rem;
    list-style: none;
    padding: 1.8rem 1.5rem 1rem;
    margin: 0;
  }

  .site-header__mobile a {
    color: var(--color-text-soft);
    font-size: 1rem;
  }

  .site-header__mobile-actions {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem;
  }
}


/*# sourceMappingURL=main.37ac8aae7a4b5a3d1901.css.map*/