:root {
  --navy: #25004f;
  --navy-2: #3e0874;
  --cyan: #08c4e8;
  --purple: #9800ef;
  --ink: #21162f;
  --muted: #6f667d;
  --line: #e8e0ef;
  --soft: #f8f4fc;
  --hero-transition: #fbf8ff;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(37, 0, 79, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img, iframe { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,234,240,.9);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { width: 104px; height: auto; display: block; }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 1rem; color: var(--navy); }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .76rem; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; font-weight: 700; font-size: .92rem; }
.main-nav a:not(.nav-cta):hover { color: var(--purple); }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle-icon { position: relative; }
.menu-toggle-icon::before,
.menu-toggle-icon::after { content: ""; position: absolute; left: 0; }
.menu-toggle-icon::before { top: -6px; }
.menu-toggle-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
}

.hero {
  overflow: hidden;
  padding: 88px 0 72px;
  background: linear-gradient(180deg, #fff 0%, var(--hero-transition) 58%, var(--hero-transition) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-block;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.hero h1, .section h2 {
  margin: 14px 0 18px;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 760px; font-size: clamp(2.8rem, 6vw, 5.5rem); }
.hero-copy > p { max-width: 650px; color: var(--muted); font-size: 1.12rem; }
.hero-actions, .location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active, .social-link:active { transform: translateY(0); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 12px 26px rgba(37,0,79,.16); }
.button-secondary { background: white; color: var(--navy); border: 1px solid var(--line); }
.text-link { font-weight: 800; color: var(--navy); }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: .92rem;
}
.hero-points li::before { content: "✓"; color: var(--purple); font-weight: 900; margin-right: 7px; }

.hero-card {
  min-height: 440px;
  border-radius: 34px;
  padding: 42px;
  color: white;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
    linear-gradient(145deg, var(--navy), var(--navy-2) 62%, #7200b8);
  box-shadow: 0 30px 80px rgba(37,0,79,.25);
  position: relative;
  overflow: hidden;
}
.hero-card::before, .hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.hero-card::before {
  width: 220px; height: 220px; right: -65px; top: -55px;
  background: rgba(8,196,232,.25);
}
.hero-card::after {
  width: 260px; height: 260px; left: -90px; bottom: -110px;
  background: rgba(152,0,239,.34);
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card-logo {
  width: min(100%, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.18));
}
.hero-card-kicker {
  margin: 44px 0 4px;
  font-size: .72rem;
  letter-spacing: .28em;
  font-weight: 800;
  opacity: .75;
}
.hero-card-title { margin: 0; max-width: 440px; font-size: 2.1rem; line-height: 1.08; font-weight: 900; }
.hero-card-strip {
  position: absolute;
  left: 42px; right: 42px; bottom: 34px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-card-strip span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .76rem;
}

.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.about-section { background: linear-gradient(180deg, var(--hero-transition) 0%, var(--soft) 42%); }
.section-dark {
  background: var(--navy);
  color: white;
}
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.section-heading p, .split p, address { color: var(--muted); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(37,0,79,.05);
}
.category-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--soft);
  font-size: 1.45rem;
}
.category-card h3 { margin: 22px 0 8px; color: var(--navy); }
.category-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.about-grid h2 { max-width: 620px; }
.about-grid p { max-width: 650px; color: var(--muted); }
.about-signature { color: var(--navy) !important; font-weight: 900; }
.about-highlights { display: grid; gap: 12px; }
.about-highlight {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-left: 4px solid var(--cyan);
  background: white;
  box-shadow: 0 8px 26px rgba(37,0,79,.05);
}
.about-highlight strong { color: var(--navy); }
.about-highlight span { color: var(--muted); font-size: .92rem; }

.app-section {
  position: relative;
  padding: 54px 0 0;
  background: var(--soft);
}
.app-section + .section-soft { background: var(--soft); }
.app-layout {
  position: relative;
  min-height: 680px;
}
.app-visual {
  position: absolute;
  top: 0;
  right: calc((100% - 100vw) / 2);
  bottom: 0;
  height: 100%;
  width: min(58vw, 840px);
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.app-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
}
.app-details {
  position: relative;
  z-index: 1;
  width: 50%;
  min-width: 0;
  padding-bottom: 54px;
}
.app-cta { margin-top: 20px; }
.app-intro { margin-bottom: 14px; }
.app-status {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(8,196,232,.2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.app-intro h2 {
  max-width: 520px;
  margin: 8px 0 10px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1;
}
.app-intro p { max-width: 390px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.4; }
.app-features {
  display: grid;
  grid-template-columns: 1fr;
}
.app-feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}
.app-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  background: var(--purple);
  font-size: .62rem;
  font-weight: 900;
  grid-row: span 2;
}
.app-feature h3 { margin: 1px 0 2px; color: var(--navy); font-size: .9rem; }
.app-feature p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.25; }

.split, .location-grid, .faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.info-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.info-panel h3 { color: var(--navy); }
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.info-row span { color: var(--muted); }
.divider { height: 1px; background: var(--line); margin: 24px 0; }

#localizacao { background: linear-gradient(180deg, #fff 0%, #fbf9fe 70%, #f3ecfa 100%); }
address { font-style: normal; font-size: 1.05rem; }
.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 390px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; min-height: 390px; border: 0; }

.eyebrow-light { color: var(--cyan); }
.section-dark h2 { color: white; }
.faq-list details {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 18px 0;
}
.faq-list details:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: 12px 0 0; color: rgba(255,255,255,.7); }

.social-section { background: var(--soft); }
.social-content { text-align: center; }
.social-content h2 { margin-bottom: 18px; }
.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  color: white;
  background: var(--purple);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(152,0,239,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-link:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(152,0,239,.25); }

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--soft), #fff 72%);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-inner strong { color: var(--navy); }
.footer-inner p { margin: 6px 0 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--navy); font-weight: 700; text-decoration: none; }

@media (max-width: 1080px) {
  .header-inner { gap: 16px; }
  .main-nav { gap: 14px; }
  .hero-grid { gap: 40px; }
  .about-grid { gap: 44px; }
  .app-layout { min-height: 640px; }
  .app-visual { width: min(55vw, 700px); }
}

@media (max-width: 820px) {
  .site-header { backdrop-filter: none; }
  .header-inner { min-height: 68px; position: relative; }
  .brand-logo { width: 88px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 2;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { min-height: 46px; display: flex; align-items: center; padding: 0 12px; border-radius: 10px; }
  .main-nav a:not(.nav-cta):hover { background: var(--soft); }
  .nav-cta { justify-content: center; margin-top: 4px; }
  .hero-grid, .split, .location-grid, .faq-layout, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-card { min-height: 370px; max-width: 620px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .app-layout { min-height: 0; }
  .app-details { width: 100%; padding-bottom: 0; }
  .app-visual {
    position: static;
    height: auto;
    width: min(100%, 620px);
    margin: 36px auto 0;
  }
  .app-intro p { max-width: 580px; }
  .app-features { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
  .app-feature { min-height: 142px; padding: 16px 0 0; }
  .faq-layout { gap: 30px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand-copy small { display: none; }
  .hero { padding: 44px 0 56px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-card { padding: 28px; min-height: 0; border-radius: 26px; }
  .hero-card-kicker { margin-top: 30px; }
  .hero-card-strip { position: static; margin-top: 24px; }
  .hero-card-title { font-size: 1.72rem; }
  .section { padding: 64px 0; }
  .category-grid { grid-template-columns: 1fr; }
  .app-visual { margin-top: 24px; }
  .category-card { min-height: 0; }
  .info-row { flex-direction: column; gap: 4px; }
  .footer-inner { flex-direction: column; }
  .app-section { padding-top: 50px; }
  .app-intro h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .app-features { grid-template-columns: 1fr; gap: 0; }
  .app-feature { min-height: 0; padding: 14px 0; }
  .app-cta { width: 100%; padding: 10px 16px; text-align: center; }
  .map-wrap, .map-wrap iframe { min-height: 300px; }
  .location-actions .button { width: 100%; }
  .faq-list details { padding: 16px 0; }
  .faq-list summary { padding-right: 18px; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 24px, 1120px); }
  .brand-logo { width: 78px; }
  .menu-toggle { padding: 0 10px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .hero-card { min-height: 0; padding: 24px; }
  .hero-card-kicker { margin-top: 24px; }
  .hero-card-strip { margin-top: 20px; }
  .section { padding: 54px 0; }
}
