:root {
  color-scheme: light;
  --ink: #0c1628;
  --muted: #607089;
  --soft: #f4f8fc;
  --white: #ffffff;
  --line: #dbe6f2;
  --blue-950: #04142e;
  --blue-900: #061a3a;
  --blue-750: #0c356f;
  --blue-600: #087de8;
  --cyan: #5fd8ff;
  --yellow: #ffd326;
  --green: #1fb864;
  --shadow: 0 22px 70px rgba(4, 20, 46, .16);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  flex: 0 0 auto;
}

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--blue-950);
  background: var(--white);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 20, 46, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dbeaff;
  font-size: .94rem;
  font-weight: 750;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-button {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--blue-950) !important;
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 5px auto;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 211, 38, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(95, 216, 255, .08) 1px, transparent 1px),
    linear-gradient(120deg, var(--blue-950), var(--blue-900) 48%, var(--blue-750));
  background-size: 56px 56px, 56px 56px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 46, .45), transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  align-items: center;
  gap: 70px;
  padding: 76px 0 96px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .kicker,
.dark-section .kicker,
.contact-card .kicker {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5.2vw, 5.05rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 32px;
  color: #c9d8eb;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button.primary {
  color: var(--blue-950);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(255, 211, 38, .22);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .28);
}

.button.whatsapp {
  color: #062413;
  background: var(--green);
}

.trust-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  color: #d9e6f7;
  font-size: .92rem;
}

.trust-list li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.hero-media {
  position: relative;
  align-self: end;
}

.hero-media img {
  width: 100%;
  aspect-ratio: .92;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow);
}

.status-card {
  position: absolute;
  left: -26px;
  bottom: 28px;
  width: min(280px, calc(100% - 28px));
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .9rem;
}

.quick-choice {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

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

.choice-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e7eef7;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(4, 20, 46, .12);
}

.choice-card:hover {
  border-color: var(--blue-600);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.choice-card small {
  color: var(--muted);
  font-size: .92rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-600);
  background: #eaf6ff;
}

.section {
  padding: 100px 0;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.kicker),
.split-layout > div > p,
.result-copy > p,
.about-layout p,
.contact-card p,
.business-layout > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-layout,
.business-layout,
.results-layout,
.about-layout,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 68px;
  align-items: center;
}

.tag-cloud,
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-cloud span,
.values-row span {
  padding: 10px 13px;
  border-radius: 999px;
  color: #075da8;
  background: #eaf6ff;
  font-size: .9rem;
  font-weight: 800;
}

.conversion-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  box-shadow: var(--shadow);
}

.conversion-panel p {
  margin: 12px 0 26px;
  color: var(--muted);
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 211, 38, .07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(95, 216, 255, .08) 1px, transparent 1px),
    var(--blue-950);
  background-size: 52px 52px, 52px 52px, auto;
}

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

.business-grid,
.services-grid,
.process-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.business-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.business-grid article {
  min-height: 124px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
}

.business-grid strong,
.business-grid span {
  display: block;
}

.business-grid span {
  margin-top: 6px;
  color: #aebfd4;
  font-size: .92rem;
}

.business-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.business-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

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

.service-card {
  min-height: 246px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #b9ddff;
  box-shadow: 0 20px 50px rgba(4, 20, 46, .1);
}

.service-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 12px;
  color: var(--blue-600);
  background: #eaf6ff;
  font-weight: 950;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card.accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-750));
}

.service-card.accent span {
  color: var(--blue-950);
  background: var(--yellow);
}

.service-card.accent p {
  color: #d6e5f6;
}

.results-section {
  background: var(--white);
}

.result-main,
.gallery-grid figure {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.result-main img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.check-list {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--white);
}

.text-link {
  color: var(--blue-600);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.result-button {
  width: fit-content;
  color: #062413;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(31, 184, 100, .26);
}

.result-button svg {
  width: 22px;
  height: 22px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.gallery-grid figure {
  margin: 0;
  box-shadow: none;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

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

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

.process-grid article {
  min-height: 238px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: #c8def5;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 950;
}

.process-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

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

.contact-section {
  padding: 20px 0 100px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 28px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 211, 38, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(95, 216, 255, .08) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue-900), var(--blue-750));
  background-size: 44px 44px, 44px 44px, auto;
}

.contact-card p {
  color: #d0def0;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 13px;
  position: relative;
  z-index: 1;
}

.contact-actions > a:not(.button) {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-actions .instagram-link,
.footer-instagram {
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none !important;
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 78%, #515bd4);
  box-shadow: 0 12px 28px rgba(221, 42, 123, .24);
}

.contact-actions .instagram-link svg,
.footer-instagram svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  padding: 62px 0 26px;
  color: #aebbd0;
  background: #020b19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 46px;
}

.footer-grid > div,
.footer-grid address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.footer-grid img {
  width: 238px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid strong {
  color: var(--white);
}

.footer-instagram {
  width: fit-content;
  margin-top: 8px;
  color: var(--white);
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(31, 184, 100, .34);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

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

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 22px;
    color: var(--white);
    background: var(--blue-950);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .24);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .22s ease, visibility .22s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .nav-button {
    justify-content: center;
    margin-top: 14px;
    border-bottom: 0 !important;
  }

  .hero-layout,
  .split-layout,
  .business-layout,
  .results-layout,
  .about-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    gap: 42px;
    padding: 64px 0 94px;
  }

  .hero-media {
    width: min(620px, 100%);
  }

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

  .contact-actions {
    justify-items: stretch;
  }

  .contact-actions .button {
    width: 100%;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 184px;
  }

  .site-nav {
    top: 70px;
  }

  .hero-layout {
    padding: 48px 0 78px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.45rem);
  }

  .hero-actions,
  .trust-list,
  .choice-grid,
  .business-grid,
  .services-grid,
  .process-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .trust-list {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 54px;
    text-align: center;
  }

  .status-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -34px auto 0;
  }

  .quick-choice {
    margin-top: -28px;
  }

  .choice-card {
    min-height: 0;
    padding: 18px;
  }

  .section {
    padding: 74px 0;
  }

  .split-layout,
  .business-layout,
  .results-layout,
  .about-layout,
  .contact-card {
    gap: 34px;
  }

  .result-main img,
  .business-image img {
    min-height: 260px;
  }

  .contact-card {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .contact-section {
    padding-bottom: 74px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

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

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