:root {
  --ink: #102033;
  --muted: #5b6878;
  --line: #dce5ef;
  --surface: #ffffff;
  --soft: #f4f8fc;
  --blue: #1d4ed8;
  --blue-dark: #102a6b;
  --sky: #27b8e8;
  --green: #16a34a;
  --amber: #f59e0b;
  --red: #ef3d2d;
  --shadow: 0 20px 60px rgba(16, 32, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.page {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(220, 229, 239, 0.72);
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-line {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #324255;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.24);
}

.button.primary:hover {
  background: #1746c3;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.button.whatsapp {
  color: #fff;
  background: #128c54;
}

.button.icon-button {
  width: 46px;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #27b8e8);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.contact-icon:hover {
  transform: translateY(-3px) scale(1.04);
  filter: saturate(1.12) brightness(1.05);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.contact-icon[href^="tel"] {
  background: linear-gradient(135deg, #1d4ed8, #23b7e5);
}

.contact-icon[href*="wa.me"] {
  background: linear-gradient(135deg, #0f9f5a, #22c55e);
}

.contact-icon[href^="mailto"] {
  background: linear-gradient(135deg, #ef3d2d, #f59e0b);
}

.contact-icon[aria-label*="Facebook"] {
  background: linear-gradient(135deg, #1877f2, #1d4ed8);
}

.contact-icon[aria-label*="Instagram"] {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.contact-icon svg,
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon.fill svg {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  padding: 70px 0 44px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(243, 249, 255, 0.74)),
    linear-gradient(145deg, rgba(39, 184, 232, 0.18) 0 18%, transparent 18% 100%),
    linear-gradient(24deg, transparent 0 68%, rgba(245, 158, 11, 0.14) 68% 100%),
    #f8fbff;
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -12%;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  min-width: 420px;
  min-height: 420px;
  content: "";
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(22, 163, 74, 0.1));
  transform: rotate(18deg);
  clip-path: polygon(18% 0, 100% 15%, 84% 100%, 0 74%);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--red);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
  min-height: 500px;
}

.hero-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-card img {
  width: min(100%, 650px);
  filter: drop-shadow(0 30px 50px rgba(16, 32, 51, 0.16));
  animation: floatLogo 7s ease-in-out infinite;
}

.status-strip {
  position: absolute;
  right: 0;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 10px;
  width: min(100%, 440px);
}

.status-item,
.metric,
.feature,
.flow-step,
.contact-card {
  border: 1px solid rgba(220, 229, 239, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(16, 32, 51, 0.08);
}

.status-item {
  padding: 14px;
  backdrop-filter: blur(12px);
}

.status-item strong {
  display: block;
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1;
}

.status-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.benefit-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(110deg, #e9fff1, #ffffff 58%, #fff8e8);
  box-shadow: 0 18px 46px rgba(22, 163, 74, 0.12);
}

.benefit-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 1.35rem;
  font-weight: 950;
}

.benefit-banner strong {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  line-height: 1.1;
}

.benefit-banner span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 86px 0;
  background: #fff;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(130deg, rgba(16, 42, 107, 0.94), rgba(16, 32, 51, 0.96)),
    #102033;
}

.section.dark .lead,
.section.dark .muted,
.section.dark .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

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

.feature {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature p,
.flow-step p,
.contact-card p,
.muted {
  color: var(--muted);
}

.feature-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.feature:nth-child(2) .feature-mark {
  background: var(--green);
}

.feature:nth-child(3) .feature-mark {
  background: var(--amber);
}

.feature:nth-child(4) .feature-mark {
  background: var(--red);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 46px;
}

.visual-panel {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(232, 244, 255, 0.82)),
    #fff;
  box-shadow: var(--shadow);
}

.visual-panel img {
  position: absolute;
  inset: 42px 28px auto;
  width: calc(100% - 56px);
  max-height: 310px;
  object-fit: contain;
}

.visual-panel .mini-feed {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 10px;
}

.feed-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 229, 239, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.feed-row strong {
  font-size: 0.92rem;
}

.feed-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0f6b38;
  background: #e6f7ed;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.pill.blue {
  color: #1640a6;
  background: #e8efff;
}

.pill.amber {
  color: #8a4a00;
  background: #fff2d6;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding: 24px;
}

.flow-step::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  counter-increment: flow;
  content: counter(flow);
  font-weight: 900;
}

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

.metric {
  padding: 22px;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.data-stats-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  padding: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(239, 61, 45, 0.92), rgba(29, 78, 216, 0.95)),
    var(--blue);
}

.cta-band h2 {
  max-width: 780px;
}

.cta-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  color: #dbe7f7;
  background: #0b1728;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-title {
  color: #fff;
  font-weight: 850;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
}

.footer-col a,
.footer-col span,
.footer-col p {
  display: block;
  margin: 9px 0;
  color: #b8c8dc;
  font-size: 0.94rem;
}

.footer-col .contact-icon {
  margin: 0;
}

.privacy-page {
  background: #fff;
}

.policy-hero {
  padding: 72px 0 38px;
  background: linear-gradient(120deg, #f8fbff, #eef6ff);
}

.policy-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 86px;
}

.policy-content section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content ul {
  padding-left: 22px;
  color: var(--muted);
}

.delete-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 22px;
}

.delete-form label {
  font-weight: 800;
}

.delete-form input,
.delete-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #0f6b38;
  background: #e6f7ed;
  font-weight: 800;
}

.form-message.show {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  color: #94a8bf;
  font-size: 0.86rem;
}

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

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

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .hero-media {
    min-height: 400px;
  }

  .grid.three,
  .grid.four,
  .flow,
  .metrics,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-line {
    white-space: normal;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .split {
    gap: 28px;
  }

  .hero-media {
    min-height: 330px;
  }

  .status-strip,
  .grid.three,
  .grid.four,
  .flow,
  .metrics,
  .benefit-banner,
  .footer-inner,
  .footer-bottom div {
    grid-template-columns: 1fr;
  }

  .status-strip {
    position: static;
    margin-top: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .visual-panel {
    min-height: 360px;
  }

  .visual-panel img {
    inset: 24px 16px auto;
    width: calc(100% - 32px);
  }

  .cta-band {
    padding: 32px 22px;
  }
}
