:root {
  --ink: #242032;
  --ink-2: #443368;
  --muted: #6f687a;
  --line: #e5e0eb;
  --paper: #fffefd;
  --soft: #f4f1f8;
  --white: #fff;
  --brand: #5b3598;
  --brand-dark: #432276;
  --gold: #b9e769;
  --teal: #19a85d;
  --teal-2: #28b86d;
  --ok: #128c7e;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 47, 53, 0.16);
  --shadow-soft: 0 16px 42px rgba(16, 47, 53, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(219, 232, 229, 0.8);
  background: rgba(251, 253, 251, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 174px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-button span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--ink);
}

.button {
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(91, 53, 152, 0.24);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.button.compact {
  min-height: 40px;
  padding: 10px 14px;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: none;
}

.button.whatsapp {
  background: var(--ok);
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 28px 0;
  display: grid;
  align-items: center;
  background:
    linear-gradient(125deg, rgba(244, 241, 248, 0.96), rgba(255, 254, 253, 0.93) 48%, rgba(235, 255, 212, 0.7)),
    linear-gradient(180deg, #fffefd, #f4f1f8);
}

.premium-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(16, 47, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 53, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 50px;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.hero-showcase {
  position: relative;
  min-height: 0;
  max-height: none;
  border: 1px solid rgba(219, 232, 229, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-showcase::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(36, 32, 50, 0.02), rgba(36, 32, 50, 0.42));
  pointer-events: none;
}

.hero-showcase img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
}

.hero-showcase-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(36, 32, 50, 0.78);
  backdrop-filter: blur(10px);
}

.hero-showcase-caption span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-showcase-caption strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.micro-label {
  display: block;
  color: var(--teal-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mini-cta {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
}

section {
  padding: 84px 0;
}

.audience-section {
  background:
    linear-gradient(135deg, rgba(91, 53, 152, 0.96), rgba(25, 168, 93, 0.88)),
    var(--brand);
  color: var(--white);
}

.audience-section .eyebrow {
  color: var(--gold);
}

.audience-section h2,
.audience-section h3 {
  color: var(--white);
}

.audience-section .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.audience-section .solution-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(36, 32, 50, 0.22);
}

.audience-section .solution-card p {
  color: rgba(255, 255, 255, 0.78);
}

.audience-section .solution-card a {
  color: var(--gold);
}

.section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-kicker {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

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

.solution-card,
.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 47, 53, 0.04);
}

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

.solution-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  content: "";
  background: var(--brand);
}

.solution-card.accent-teal::before {
  background: var(--teal);
}

.solution-card.accent-gold::before {
  background: var(--gold);
}

.solution-card.accent-purple::before {
  background: var(--brand);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 20px;
}

.solution-card p,
.card p,
.timeline p,
.faq p {
  color: var(--muted);
}

.card-photo {
  width: 100%;
  aspect-ratio: 4 / 5.6;
  margin-bottom: 18px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--soft);
}

.card-photo.contain {
  object-fit: contain;
  padding: 8px;
  background: linear-gradient(180deg, #fff, var(--soft));
}

.position-top {
  object-position: center top;
}

.position-center {
  object-position: center center;
}

.position-bottom {
  object-position: center bottom;
}

.solution-card a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: start;
}

.proof-cards {
  display: grid;
  gap: 12px;
}

.proof-cards article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.proof-cards strong,
.proof-cards span {
  display: block;
}

.proof-cards span {
  margin-top: 6px;
  color: var(--muted);
}

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

.showcase-grid,
.seo-grid,
.split,
.quote-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.spec-split {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

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

.check-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "✓";
  color: var(--teal);
  font-weight: 950;
}

.gallery-board {
  min-height: 980px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 32, 50, 0.42), rgba(36, 32, 50, 0.14)),
    linear-gradient(135deg, #b9e769, #5b3598);
  box-shadow: var(--shadow-soft);
  font-weight: 950;
  cursor: zoom-in;
}

.gallery-item::before {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  content: "";
}

.gallery-item span {
  position: relative;
  z-index: 2;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(36, 32, 50, 0.72);
  color: var(--white);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(14, 11, 24, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox p {
  max-width: min(900px, 92vw);
  margin: 14px 0 0;
  color: var(--white);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: 1 / -1;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(36, 32, 50, 0.48), rgba(36, 32, 50, 0.12)),
    linear-gradient(150deg, #28b86d, #b9e769 48%, #5b3598);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 500px;
}

.gallery-item.teal {
  background:
    linear-gradient(135deg, rgba(16, 47, 53, 0.46), rgba(16, 47, 53, 0.1)),
    linear-gradient(135deg, #19a85d, #a7e9c1);
}

.gallery-item.gold {
  background:
    linear-gradient(135deg, rgba(16, 47, 53, 0.44), rgba(16, 47, 53, 0.08)),
    linear-gradient(135deg, #b9e769, #e4f7b7);
}

.gallery-item.red {
  background:
    linear-gradient(135deg, rgba(16, 47, 53, 0.44), rgba(16, 47, 53, 0.08)),
    linear-gradient(135deg, #5b3598, #8a6bc6);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.timeline span {
  display: block;
  margin-bottom: 32px;
  color: var(--brand);
  font-weight: 950;
}

.quote-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 32, 50, 0.97), rgba(67, 34, 118, 0.96)),
    var(--ink);
}

.store-band {
  background: var(--white);
}

.store-wrap {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(244, 241, 248, 0.94), rgba(235, 255, 212, 0.58)),
    var(--soft);
}

.store-wrap h2 {
  margin-bottom: 10px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.quote-band .lead,
.quote-band .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.calc-card {
  max-width: 520px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.calc-card label {
  margin: 12px 0;
  color: var(--white);
}

.calc-card input {
  padding: 0;
  accent-color: var(--gold);
}

.calc-card strong {
  display: block;
  font-size: 28px;
}

.calc-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mini-checklist {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.mini-checklist li {
  margin-bottom: 6px;
}

form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(19, 127, 134, 0.18);
  border-color: var(--teal);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.seo-stack {
  display: grid;
  gap: 12px;
}

.seo-stack article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
}

.seo-stack strong {
  color: var(--ink);
}

.seo-stack span {
  color: var(--muted);
  text-align: right;
  font-weight: 800;
}

.faq {
  background: var(--paper);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 950;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.seo-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.footer p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  min-width: 132px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ok);
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.32);
  text-decoration: none;
  font-weight: 950;
}

.page-hero {
  padding: 92px 0 58px;
  background:
    linear-gradient(135deg, rgba(244, 241, 248, 0.96), rgba(235, 255, 212, 0.72)),
    var(--soft);
}

.content {
  max-width: 860px;
}

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

  .nav-links {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .showcase-grid,
  .seo-grid,
  .split,
  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .audience-grid,
  .grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

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

  .store-wrap {
    grid-template-columns: 1fr;
  }

  .store-actions {
    justify-content: flex-start;
  }

  .hero-showcase {
    max-width: 680px;
    min-height: 0;
  }

  .hero-showcase img {
    min-height: 0;
    max-height: 520px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .nav,
  .hero-grid,
  .section-inner {
    width: calc(100% - 32px) !important;
    max-width: 1180px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .brand-logo {
    width: 150px !important;
    height: auto !important;
    max-height: 42px;
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .nav-links {
    top: 64px;
    left: 16px;
    right: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  h2 {
    max-width: 100%;
    font-size: 28px !important;
    line-height: 1.12 !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  p,
  .lead,
  .section-kicker {
    max-width: 100%;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero {
    padding: 34px 0 44px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-actions,
  .store-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button.compact,
  button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-grid,
  .showcase-grid,
  .seo-grid,
  .split,
  .quote-wrap,
  .store-wrap,
  .solution-grid,
  .audience-grid,
  .grid,
  .timeline,
  .form-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-showcase {
    width: 100%;
    min-height: 0;
  }

  .hero-showcase img {
    width: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .hero-showcase-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .gallery-board {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.large {
    min-height: 300px;
    grid-row: auto;
    grid-column: auto;
  }

  .full {
    grid-column: auto;
  }

  section {
    padding: 56px 0;
  }

  .seo-stack article,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-stack span {
    text-align: left;
  }
}


/* MOBILE HOTFIX 2026-05-11: impede que containers fiquem com largura de logo no celular */
@media (max-width: 680px) {
  .nav, .hero-grid, .section-inner {
    width: calc(100% - 32px) !important;
    max-width: 1180px !important;
    height: auto !important;
  }
  .brand-logo {
    width: 150px !important;
    height: auto !important;
  }
}
