/* GERADO POR build-css.py -- NAO EDITE.
   Edite assets/css/site.src.css ou assets/css/modules/*.css
   e rode: python build-css.py */

/* ===== 00-base.css ===== */
:root {
  --purple: #481775;
  --purple2: #6F35A5;
  --yellow: #FFBE00;
  --ink: #191326;
  --muted: #6c6576;
  --bg: #fbf9fd;
  --line: #e9e2ef;
  --white: #fff;
  --shadow: 0 22px 60px rgba(72, 23, 117, .12)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6
}

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(72, 23, 117, .08);
  transition: box-shadow .2s ease, background .2s ease
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(37, 16, 51, .08)
}

.nav-shell {
  width: 100%;
  padding: 0 20px
}

.nav {
  height: 64px;
  max-width: 1160px;
  margin: auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 22px
}

.brand {
  display: flex;
  align-items: center;
  width: max-content
}

.brand img {
  width: 128px;
  max-height: 42px;
  object-fit: contain;
  display: block
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(72, 23, 117, .045);
  border: 1px solid rgba(72, 23, 117, .06)
}

.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  color: #4c4354;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, transform .18s ease
}

.nav-links a:hover {
  color: var(--purple);
  background: #fff;
  box-shadow: 0 4px 14px rgba(72, 23, 117, .08)
}

.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 5px 16px rgba(72, 23, 117, .18)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 12px;
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(72, 23, 117, .18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--purple2);
  box-shadow: 0 10px 24px rgba(72, 23, 117, .22)
}

.nav-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 190, 0, .16)
}

.menu-btn {
  display: none;
  width: 42px;
  height: 40px;
  margin-left: auto;
  border: 1px solid rgba(72, 23, 117, .12);
  background: #fff;
  color: var(--purple);
  border-radius: 11px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: .2s
}

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

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

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

.hero {
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255, 190, 0, .20), transparent 24%), linear-gradient(135deg, #351052, #541b82 60%, #6f35a5);
  color: #fff;
  padding: 92px 0 82px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple2);
  margin-bottom: 14px
}

.hero .eyebrow {
  color: #ffe29a
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 24px;
  max-width: 800px
}

.hero p {
  font-size: 19px;
  max-width: 680px;
  color: #eee4f6;
  margin: 0 0 30px
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border-radius: 12px;
  background: var(--yellow);
  color: #2b1736;
  font-weight: 800
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35)
}

.ecosystem {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center
}

.core {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
  padding: 34px;
  text-align: center;
  color: var(--purple);
  font-weight: 900
}

.core img {
  max-width: 150px;
  max-height: 85px
}

.orbit {
  position: absolute;
  background: #fff;
  color: var(--purple);
  font-weight: 800;
  font-size: 13px;
  padding: 12px 15px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16)
}

.o1 {
  top: 20px;
  left: 34%
}

.o2 {
  top: 100px;
  right: 0
}

.o3 {
  bottom: 78px;
  right: 2%
}

.o4 {
  bottom: 12px;
  left: 34%
}

.o5 {
  bottom: 85px;
  left: 0
}

.o6 {
  top: 100px;
  left: 0
}

.section {
  padding: 88px 0
}

.section.alt {
  background: var(--bg)
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 18px
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px
}

.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 15, 48, .04)
}

.card h3 {
  font-size: 20px;
  margin: 0 0 8px
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px
}

.product {
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  transition: .2s
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d9c5e9
}

.product .tag {
  font-size: 11px;
  font-weight: 900;
  color: var(--purple2);
  text-transform: uppercase;
  letter-spacing: .08em
}

.product h3 {
  margin: 8px 0 6px
}

.product p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.statement {
  background: var(--purple);
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px
}

.statement h2 {
  max-width: 800px;
  margin: 0
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px
}

.milestone {
  padding: 24px;
  border-top: 3px solid var(--purple);
  position: relative
}

.milestone:before {
  content: '';
  position: absolute;
  top: -8px;
  left: 24px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--yellow)
}

.milestone strong {
  display: block;
  color: var(--purple);
  font-size: 22px
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.quote {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--purple);
  border-left: 5px solid var(--yellow);
  padding-left: 24px
}

.site-footer {
  background: #251033;
  color: #dcd0e4;
  padding: 60px 0 20px
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px
}

.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1)
}

.site-footer h4 {
  color: #fff
}

.site-footer a:hover {
  color: var(--yellow)
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 45px auto 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
  font-size: 13px
}

.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-weight: 900;
  z-index: 20
}

.page-hero {
  background: linear-gradient(135deg, #351052, #6f35a5);
  color: #fff;
  padding: 80px 0
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 70px);
  margin: 0 0 18px;
  line-height: 1.03
}

.page-hero p {
  font-size: 19px;
  max-width: 760px;
  color: #eee4f6
}

@media(max-width:900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line)
  }

  .nav-links.open {
    display: flex
  }

  .menu-btn {
    display: block;
    border: 0;
    background: var(--purple);
    color: #fff;
    border-radius: 9px;
    padding: 9px 12px
  }

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

  .ecosystem {
    min-height: 380px
  }

  .cards,
  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr)
  }

  .statement {
    grid-template-columns: 1fr
  }

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

@media(max-width:600px) {
  .hero {
    padding: 64px 0
  }

  .hero h1 {
    font-size: 45px
  }

  .section {
    padding: 64px 0
  }

  .cards,
  .product-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .statement {
    padding: 32px
  }

  .ecosystem {
    transform: scale(.82);
    margin: -30px
  }

  .nav {
    width: calc(100% - 24px)
  }

  .brand img {
    width: 135px
  }
}


/* =========================================================
   REDES SOCIAIS NO RODAPE
   ========================================================= */

.footer-social {
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-label {
  margin-right: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 11px;
  color: inherit;
  opacity: .8;
  transition: opacity .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}

.footer-social a:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}

.footer-social a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.footer-social svg {
  display: block;
}

@media(max-width:620px) {
  .footer-social {
    gap: 8px;
  }

  .footer-social-label {
    flex: 1 1 100%;
    margin: 0 0 4px;
  }
}

@media(prefers-reduced-motion: reduce) {
  .footer-social a {
    transition: none;
  }

  .footer-social a:hover {
    transform: none;
  }
}

/* ===== 10-contact.css ===== */
/* Contact page */
.contact-hero {
  background: radial-gradient(circle at 78% 25%, rgba(255, 190, 0, .22), transparent 22%), linear-gradient(135deg, #351052, #481775 56%, #6F35A5);
  color: #fff;
  padding: 84px 0
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center
}

.contact-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 22px
}

.contact-hero p {
  font-size: 18px;
  color: #ede4f4;
  max-width: 700px
}

.contact-hero .eyebrow {
  color: #ffe29a
}

.contact-hero-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(20, 7, 31, .22)
}

.contact-hero-card h2 {
  font-size: 30px;
  margin: 15px 0
}

.contact-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #FFBE00;
  color: #31143f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px
}

.contact-mini-grid div {
  padding: 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .09)
}

.contact-mini-grid strong,
.contact-mini-grid span {
  display: block
}

.contact-mini-grid strong {
  color: #fff
}

.contact-mini-grid span {
  color: #d8cce1;
  font-size: 12px
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px
}

.contact-channel {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: .2s
}

.contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.contact-channel.featured {
  border-color: #d7c1e8;
  background: linear-gradient(135deg, #fff, #faf5ff)
}

.contact-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: #fff;
  font-weight: 900
}

.contact-channel small {
  color: var(--purple2);
  font-weight: 800
}

.contact-channel h3 {
  margin: 2px 0;
  font-size: 19px
}

.contact-channel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.contact-form-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px
}

.contact-topics span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  color: var(--purple)
}

.form.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple)
}

.contact-form .full {
  grid-column: 1/-1
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #ddd2e5;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--purple2);
  box-shadow: 0 0 0 3px rgba(111, 53, 165, .1)
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 15px
}

.contact-form-actions span {
  font-size: 12px;
  color: var(--muted)
}

@media(max-width:900px) {

  .contact-hero-grid,
  .contact-form-grid {
    grid-template-columns: 1fr
  }

  .contact-channel-grid {
    grid-template-columns: 1fr
  }

  .contact-form-grid {
    gap: 30px
  }
}

@media(max-width:600px) {
  .form.contact-form {
    grid-template-columns: 1fr;
    padding: 20px
  }

  .contact-form .full {
    grid-column: auto
  }

  .contact-mini-grid {
    grid-template-columns: 1fr
  }

  .contact-form-actions {
    align-items: flex-start;
    flex-direction: column
  }
}

/* ===== 20-header-branding.css ===== */
/* Header V5 responsive */
@media(max-width:1020px) {
  .nav {
    grid-template-columns: 140px 1fr auto;
    gap: 12px
  }

  .nav-links a {
    padding: 7px 8px;
    font-size: 12px
  }

  .nav-cta {
    padding: 9px 12px
  }
}

@media(max-width:900px) {
  .nav-shell {
    padding: 0 12px
  }

  .nav {
    height: 62px;
    display: flex;
    position: relative
  }

  .brand img {
    width: 118px
  }

  .menu-btn {
    display: flex
  }

  .nav-cta {
    margin-left: auto
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 80;
    margin: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(37, 16, 51, .14);
    flex-direction: column;
    align-items: stretch;
    gap: 2px
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    min-height: 42px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px
  }

  .nav-links a.active {
    background: #f2eafa;
    color: var(--purple);
    box-shadow: none
  }
}

@media(max-width:560px) {
  .nav-cta {
    font-size: 0;
    width: 42px;
    padding: 0;
    border-radius: 11px
  }

  .nav-cta:after {
    content: '↗';
    font-size: 18px
  }

  .nav-cta-dot {
    display: none
  }

  .nav-shell {
    padding: 0 10px
  }
}

/* =========================
   Header + Branding V6
   ========================= */
.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #eee8f3;
  box-shadow: none
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 28px rgba(42, 17, 62, .07)
}

.nav-shell {
  padding: 0 28px
}

.nav {
  height: 72px;
  max-width: 1240px;
  display: flex;
  align-items: center;
  gap: 26px
}

.brand {
  min-width: 150px
}

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

.nav-links {
  margin-left: auto;
  justify-self: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  gap: 4px
}

.nav-links a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  color: #4a4250
}

.nav-links a:hover {
  color: var(--purple);
  background: #f7f2fb;
  box-shadow: none
}

.nav-links a.active {
  color: var(--purple);
  background: #f3eafb;
  box-shadow: none
}

.nav-links a.active:after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow)
}

.nav-cta {
  min-height: 42px;
  margin-left: 6px;
  border-radius: 10px;
  padding: 10px 16px;
  background: var(--purple);
  box-shadow: none
}

.nav-cta:hover {
  box-shadow: 0 8px 20px rgba(72, 23, 117, .16)
}

/* Hero with official mascot */
.hero {
  padding: 86px 0 82px;
  background: radial-gradient(circle at 16% 8%, rgba(255, 190, 0, .17), transparent 24%), linear-gradient(135deg, #2d0d47, #481775 58%, #66319a)
}

.hero-grid {
  grid-template-columns: 1.12fr .88fr;
  gap: 72px
}

.hero-copy {
  position: relative;
  z-index: 2
}

.hero h1 {
  max-width: 760px
}

.hero-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 26px
}

.hero-trust span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  font-size: 11px;
  font-weight: 800;
  color: #f4edf8
}

.mascot-showcase {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  background: linear-gradient(145deg, #fff, #f8f2fc);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 32px 90px rgba(20, 5, 33, .28);
  display: grid;
  place-items: center;
  padding: 38px;
  overflow: hidden
}

.mascot-showcase:before,
.mascot-showcase:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(1px)
}

.mascot-showcase:before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -75px;
  background: rgba(255, 190, 0, .18)
}

.mascot-showcase:after {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -140px;
  background: rgba(111, 53, 165, .10)
}

.mascot-showcase img {
  width: min(78%, 330px);
  max-height: 330px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 25px rgba(72, 23, 117, .18))
}

.mascot-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #2d1738;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em
}

.mascot-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--purple)
}

.mascot-caption strong {
  font-size: 20px
}

.mascot-caption span {
  font-size: 12px;
  color: #6b6073;
  text-align: right;
  max-width: 210px
}

/* Sankhya ecosystem moved out of the hero */
.sankhya-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center
}

.sankhya-benefits {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px
}

.sankhya-benefits .card {
  padding: 20px 22px;
  border-radius: 16px
}

.sankhya-benefits .card h3 {
  font-size: 17px
}

.ecosystem-light {
  min-height: 470px;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 50%, rgba(111, 53, 165, .09), rgba(111, 53, 165, .025) 48%, transparent 70%);
  border: 1px solid #eee4f4
}

.ecosystem-light:before {
  content: '';
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(111, 53, 165, .22);
  border-radius: 50%
}

.ecosystem-light:after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(111, 53, 165, .08);
  border-radius: 50%
}

.core-visible {
  width: 220px;
  height: 150px;
  border-radius: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid #eadff1;
  box-shadow: 0 24px 58px rgba(72, 23, 117, .15);
  z-index: 3
}

.core-visible img {
  width: 100%;
  max-width: 170px;
  max-height: 65px
}

.ecosystem-light .orbit {
  border: 1px solid #eadff1;
  box-shadow: 0 10px 24px rgba(72, 23, 117, .08);
  z-index: 4
}

/* Footer uses the white official mascot */
.footer-logo.footer-mascot {
  width: 118px;
  max-height: 118px;
  object-fit: contain;
  filter: none
}

@media(max-width:1060px) {
  .nav {
    gap: 14px
  }

  .nav-links a {
    padding: 10px 8px;
    font-size: 12px
  }

  .nav-cta {
    padding: 10px 12px
  }

  .hero-grid,
  .sankhya-section {
    gap: 42px
  }
}

@media(max-width:900px) {
  .nav-shell {
    padding: 0 14px
  }

  .nav {
    height: 66px
  }

  .nav-links {
    top: 62px;
    left: 12px;
    right: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 10px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(37, 16, 51, .14)
  }

  .nav-links a.active:after {
    display: none
  }

  .hero-grid,
  .sankhya-section {
    grid-template-columns: 1fr
  }

  .mascot-showcase {
    min-height: 380px;
    max-width: 620px;
    width: 100%;
    margin: auto
  }

  .ecosystem-light {
    min-height: 430px
  }
}

@media(max-width:600px) {
  .nav-shell {
    padding: 0 10px
  }

  .brand img {
    width: 128px
  }

  .nav-cta {
    display: none
  }

  .menu-btn {
    margin-left: auto
  }

  .hero {
    padding: 60px 0
  }

  .mascot-showcase {
    min-height: 330px;
    padding: 26px
  }

  .mascot-caption {
    align-items: flex-start;
    flex-direction: column
  }

  .mascot-caption span {
    text-align: left
  }

  .ecosystem-light {
    transform: none;
    margin: 0;
    min-height: 380px
  }

  .core-visible {
    width: 180px;
    height: 125px
  }

  .ecosystem-light:before {
    width: 275px;
    height: 275px
  }

  .ecosystem-light .orbit {
    font-size: 11px;
    padding: 9px 11px
  }
}


/* =========================================================
   ALINHAMENTO DO CABECALHO
   =========================================================
   O cabecalho usava um container proprio (1240px sobre um shell
   com padding de 28px), enquanto o hero, as secoes e o rodape usam
   .wrap -- min(1180px, 100% - 40px). O resultado era a logo nascendo
   30px a esquerda do H1 e do rodape no desktop, e 2px no mobile.
   Aqui o cabecalho passa a usar exatamente a mesma formula do .wrap,
   entao a logo cai na mesma linha vertical do conteudo em toda largura. */

.nav-shell {
  padding: 0;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin-inline: auto;
}

/* Logo proporcional ao cabecalho no mobile: a marca ocupava 128px de
   largura e 46px de altura numa tela de 390px, dominando a barra. */
@media(max-width:620px) {
  .nav {
    height: 58px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 104px;
    max-height: 32px;
  }
}

/* ===== 30-contact-email.css ===== */
/* Contact e-mail delivery V7 */
.contact-form-actions-v2 {
  flex-wrap: wrap
}

.contact-whatsapp-btn {
  background: #fff;
  color: var(--purple);
  border: 1px solid #d9c5e9
}

.contact-whatsapp-btn:hover {
  background: #f7f2fb
}

.contact-form-actions-v2 .btn:disabled {
  opacity: .6;
  cursor: wait
}

.contact-status {
  flex: 1 1 100%;
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f7f4f9;
  color: var(--muted);
  font-size: 12px !important;
  font-weight: 700
}

.contact-status.sending {
  background: #fff7d7;
  color: #755b00
}

.contact-status.success {
  background: #e9f8ef;
  color: #17683a
}

.contact-status.error {
  background: #fff0f1;
  color: #a02334
}

.contact-honeypot {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important
}


/* No mobile o container vira coluna com align-items:flex-start, entao os
   filhos se dimensionavam pelo proprio conteudo -- e o texto de status,
   sendo uma linha longa sem quebra, esticava a pagina para 541px numa
   tela de 390px. Com stretch, cada filho ocupa a largura do formulario. */
@media(max-width:900px) {
  .contact-form-actions-v2 {
    align-items: stretch;
  }

  .contact-form-actions-v2 .btn {
    justify-content: center;
  }

  .contact-status {
    flex: 0 1 auto;
  }
}

/* ===== 40-home-hero.css ===== */
/* Hero visual V8 - editorial, fluid, not app-like */
.mascot-showcase {
  min-height: 440px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  display: block;
  isolation: isolate
}

.mascot-showcase:before {
  width: 360px;
  height: 360px;
  right: 1%;
  top: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 190, 0, .16), rgba(255, 190, 0, .035) 55%, transparent 72%);
  filter: none;
  z-index: -1
}

.mascot-showcase:after {
  width: 390px;
  height: 390px;
  left: 4%;
  bottom: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), rgba(255, 255, 255, .025) 58%, transparent 72%);
  filter: none;
  z-index: -1
}

.mascot-showcase img {
  position: absolute;
  z-index: 2;
  width: min(72%, 350px);
  max-height: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  filter: drop-shadow(0 28px 34px rgba(20, 5, 33, .25));
  transition: transform .35s ease
}

.mascot-showcase:hover img {
  transform: translate(-50%, -50%)
}

.mascot-badge {
  top: 34px;
  left: 4%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffe39b;
  font-size: 11px;
  letter-spacing: .16em
}

.mascot-badge:before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--yellow)
}

.mascot-caption {
  left: auto;
  right: 0;
  bottom: 30px;
  width: 245px;
  display: block;
  padding: 18px 20px;
  border-left: 2px solid var(--yellow);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  color: #fff
}

.mascot-caption strong {
  display: block;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff
}

.mascot-caption span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #ded1e8;
  text-align: left;
  max-width: none
}

@media(max-width:900px) {
  .mascot-showcase {
    min-height: 390px;
    max-width: 560px
  }

  .mascot-showcase img {
    width: min(68%, 330px)
  }

  .mascot-caption {
    right: 2%;
    bottom: 18px
  }
}

@media(max-width:600px) {
  .mascot-showcase {
    min-height: 330px;
    padding: 0
  }

  .mascot-showcase img {
    width: min(72%, 270px)
  }

  .mascot-badge {
    top: 20px
  }

  .mascot-caption {
    left: 8%;
    right: auto;
    bottom: 4px;
    width: 220px;
    padding: 14px 16px
  }

  .mascot-caption span {
    text-align: left
  }
}

/* ===== 50-products-ecosystem-base.css ===== */
/* V9 - avatares oficiais dos produtos */
/* Logos horizontais dos produtos na Home */
.product-avatar-home {
  width: 180px;
  height: 70px;

  object-fit: contain;
  object-position: left center;

  margin-bottom: 18px;
  display: block;

  border-radius: 0;

  filter: drop-shadow(
    0 8px 14px rgba(72, 23, 117, .08)
  );

  transition: transform .2s ease;
}

.product:hover .product-avatar-home {
  transform: translateY(-3px) scale(1.03);
}

/* V10 — ecossistema Sankhya com avatares oficiais */
.ecosystem-light .orbit-app {
  width: 88px;
  height: 88px;
  padding: 5px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 14px 34px rgba(72, 23, 117, .14);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ecosystem-light .orbit-app:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(72, 23, 117, .20)
}

.ecosystem-light .orbit-app img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  display: block
}

.ecosystem-light .o1 {
  top: 14px;
  left: 38%
}

.ecosystem-light .o2 {
  top: 78px;
  right: 18px
}

.ecosystem-light .o3 {
  bottom: 66px;
  right: 22px
}

.ecosystem-light .o4 {
  bottom: 8px;
  left: 38%
}

.ecosystem-light .o5 {
  bottom: 70px;
  left: 18px
}

.ecosystem-light .o6 {
  top: 78px;
  left: 18px
}

@media(max-width:600px) {
  .ecosystem-light .orbit-app {
    width: 68px;
    height: 68px;
    border-radius: 18px
  }

  .ecosystem-light .orbit-app img {
    border-radius: 14px
  }

  .ecosystem-light .o1 {
    left: 40%;
    top: 6px
  }

  .ecosystem-light .o2 {
    right: 0;
    top: 72px
  }

  .ecosystem-light .o3 {
    right: 0;
    bottom: 60px
  }

  .ecosystem-light .o4 {
    left: 40%;
    bottom: 4px
  }

  .ecosystem-light .o5 {
    left: 0;
    bottom: 60px
  }

  .ecosystem-light .o6 {
    left: 0;
    top: 72px
  }
}

/* ===== 60-home-v11.css ===== */
/* V11 — Home reorganizada no modelo institucional Loop */
.hero-home-v11 {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  color: var(--ink);
  background: linear-gradient(90deg, #fff 0%, #fff 52%, #fbf7ff 72%, #6f35a5 100%);
}

.hero-home-v11:after {
  content: '';
  position: absolute;
  right: -8%;
  top: -55%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .13) 0 1px, transparent 1px 48px);
  pointer-events: none;
}

.hero-grid-v11 {
  grid-template-columns: 1.03fr .97fr;
  gap: 40px;
  min-height: 470px;
  align-items: center
}

.hero-home-v11 .hero-copy {
  color: #24103e
}

.hero-home-v11 .eyebrow {
  color: var(--purple2)
}

.hero-home-v11 h1 {
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -.05em;
  color: #24103e;
  margin-bottom: 22px
}

.hero-home-v11 h1 span {
  color: var(--yellow)
}

.hero-home-v11 p {
  color: #5f5668;
  font-size: 18px;
  max-width: 610px;
  margin-bottom: 28px
}

.hero-home-v11 .btn {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(72, 23, 117, .18)
}

.hero-home-v11 .btn.secondary {
  background: #fff;
  color: var(--purple);
  border: 1px solid #cbb5de;
  box-shadow: none
}

.hero-home-v11 .btn.secondary:hover {
  background: #faf6fd
}

.mascot-showcase-v11 {
  min-height: 420px;
  max-width: 560px;
  margin-left: auto;
  position: relative;
  display: grid;
  place-items: center
}

.mascot-showcase-v11:before {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 190, 0, .25), rgba(255, 255, 255, .08) 44%, transparent 72%);
  filter: blur(4px)
}

.mascot-showcase-v11 img {
  position: relative;
  z-index: 2;
  width: min(72%, 380px);
  filter: drop-shadow(0 28px 38px rgba(47, 16, 80, .24))
}

.mascot-showcase-v11 .mascot-badge {
  position: absolute;
  right: -6px;
  left: auto;
  top: 46%;
  z-index: 3;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
  border-left: 3px solid var(--yellow);
  padding-left: 16px
}

.mascot-showcase-v11 .mascot-badge:before {
  display: none
}


.ecosystem-home-v11 {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 48% 46%, rgba(111, 53, 165, .09), transparent 29%),
    radial-gradient(circle at 72% 18%, rgba(255, 190, 0, .06), transparent 20%),
    linear-gradient(180deg, #fff 0%, #fdfbff 100%);
}

.ecosystem-home-v11::before {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,53,165,.06), transparent 67%);
  filter: blur(10px);
  pointer-events: none;
}

.ecosystem-home-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(540px, 1.45fr) minmax(285px, .82fr);
  gap: 44px;
  align-items: center;
}

.ecosystem-intro {
  align-self: center;
}

.ecosystem-intro::before {
  content: 'UM ECOSSISTEMA COMPLETO';
  display: block;
  margin-bottom: 18px;
  padding-left: 13px;
  border-left: 3px solid var(--purple2);
  color: var(--purple2);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .17em;
}

.ecosystem-intro h2 {
  margin: 0 0 22px;
  color: #24103e;
  font-size: clamp(34px, 3.15vw, 49px);
  line-height: 1.04;
  letter-spacing: -.048em;
}

.ecosystem-intro h2 span { color: var(--purple2); }

.ecosystem-intro > p {
  max-width: 310px;
  margin: 0;
  color: #655c6d;
  font-size: 15px;
  line-height: 1.78;
}

.ecosystem-live-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 15px;
  border: 1px solid #eadff1;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 28px rgba(72,23,117,.06);
}

.live-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,190,0,.14), 0 0 18px rgba(255,190,0,.55);
  animation: loopLivePulse 1.4s ease-in-out infinite;
}

.ecosystem-live-copy small,
.ecosystem-live-copy strong { display: block; }
.ecosystem-live-copy small {
  margin-bottom: 3px;
  color: #9b8da4;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
}
.ecosystem-live-copy strong {
  color: #481775;
  font-size: 11px;
  line-height: 1.35;
}

@keyframes loopLivePulse {
  0%,100% { transform: scale(.9); opacity: .72; }
  50% { transform: scale(1.14); opacity: 1; }
}

/* ==========================================================
   ECOSSISTEMA LOOP + SANKHYA — sistema vivo
   ========================================================== */
.ecosystem-compact {
  --hub-purple: #6F35A5;
  --hub-deep: #481775;
  --hub-yellow: #FFBE00;
  position: relative;
  width: 100%;
  min-height: 570px;
  border: 1px solid rgba(111,53,165,.15);
  border-radius: 36px;
  isolation: isolate;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(111,53,165,.11) 0%, rgba(111,53,165,.045) 28%, transparent 57%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(252,249,255,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 22px 70px rgba(72,23,117,.055);
}

.ecosystem-compact::before,
.ecosystem-compact::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.ecosystem-compact::before {
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(111,53,165,.30);
  box-shadow: 0 0 42px rgba(111,53,165,.04);
  animation: orbitRingSpin 34s linear infinite;
}

.ecosystem-compact::after {
  width: 292px;
  height: 292px;
  border: 1px solid rgba(111,53,165,.12);
  box-shadow:
    0 0 0 38px rgba(111,53,165,.018),
    0 0 0 76px rgba(111,53,165,.012);
}

.ecosystem-ambient-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.ecosystem-ambient-ring.ring-a {
  width: 344px;
  height: 344px;
  border: 1px dashed rgba(111,53,165,.17);
  animation: orbitRingSpinReverse 26s linear infinite;
}

.ecosystem-ambient-ring.ring-b {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(111,53,165,.055), transparent 65%);
  filter: blur(2px);
}

@keyframes orbitRingSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbitRingSpinReverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.ecosystem-compact .core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 226px;
  height: 158px;
  transform: translate(-50%, -50%);
  padding: 28px 28px 24px;
  border: 1px solid rgba(111,53,165,.16);
  border-radius: 30px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  z-index: 8;
  background: rgba(255,255,255,.98);
  box-shadow:
    0 26px 64px rgba(72,23,117,.15),
    0 0 0 1px rgba(255,255,255,.8) inset;
}

.ecosystem-compact .core::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(111,53,165,.1);
  border-radius: 42px;
  opacity: .7;
}

.core-pulse {
  position: absolute;
  inset: -25px;
  border-radius: 44px;
  border: 2px solid rgba(111,53,165,.16);
  opacity: 0;
  pointer-events: none;
}

.core.is-sending .core-pulse {
  animation: coreSignalPulse 1s ease-out infinite;
}

@keyframes coreSignalPulse {
  0% { transform: scale(.86); opacity: .65; }
  100% { transform: scale(1.25); opacity: 0; }
}

.ecosystem-compact .core img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 164px;
  max-height: 70px;
  object-fit: contain;
}

.ecosystem-compact .core small {
  position: relative;
  z-index: 2;
  color: #9a8da2;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.ecosystem-compact .orbit-app {
  --x: 50%;
  --y: 50%;
  --angle: 0deg;
  --line: 120px;
  position: absolute;
  left: var(--x) !important;
  top: var(--y) !important;
  right: auto !important;
  bottom: auto !important;
  width: 84px;
  height: 84px;
  padding: 5px;
  transform: translate(-50%, -50%) !important;
  border: 1px solid rgba(111,53,165,.14);
  border-radius: 23px;
  display: grid;
  place-items: center;
  z-index: 5;
  background: rgba(255,255,255,.98);
  box-shadow:
    0 16px 36px rgba(72,23,117,.13),
    0 0 0 1px rgba(255,255,255,.9) inset;
  transition: box-shadow .3s ease, border-color .3s ease, filter .3s ease;
}

/* conexão radial contínua até o hub */
.ecosystem-compact .orbit-app::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--line);
  height: 2px;
  transform-origin: 0 50%;
  transform: rotate(var(--angle));
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(111,53,165,.55), rgba(111,53,165,.18));
  box-shadow: 0 0 9px rgba(111,53,165,.10);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.ecosystem-compact .orbit-app::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: 150px;
  transform: translateX(-50%);
  color: #321346;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 850;
  text-align: center;
  pointer-events: none;
}

.ecosystem-compact .orbit-app img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  background: #fff;
}

.ecosystem-compact .orbit-app > b {
  position: absolute;
  left: 50%;
  top: calc(100% + 34px);
  width: max-content;
  max-width: 150px;
  transform: translateX(-50%);
  padding: 5px 8px;
  border: 1px solid rgba(111,53,165,.10);
  border-radius: 999px;
  background: #f4ecfa;
  color: #6f35a5;
  box-shadow: 0 6px 15px rgba(72,23,117,.055);
  font-size: 7px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
  white-space: nowrap;
  z-index: 7;
}

.ecosystem-compact .orbit-app:hover {
  box-shadow: 0 22px 48px rgba(72,23,117,.2);
  border-color: rgba(111,53,165,.28);
  filter: saturate(1.06);
}

.ecosystem-compact .orbit-app.is-connecting {
  border-color: rgba(255,190,0,.8);
  box-shadow:
    0 0 0 6px rgba(255,190,0,.11),
    0 0 36px rgba(255,190,0,.25),
    0 22px 50px rgba(72,23,117,.17);
  animation: activePlanetFloat .9s ease-in-out infinite alternate;
}

.ecosystem-compact .orbit-app.is-connecting::before {
  height: 3px;
  background: linear-gradient(90deg, #FFBE00 0%, #f7ce5b 42%, rgba(111,53,165,.32) 100%);
  box-shadow: 0 0 16px rgba(255,190,0,.55);
}

@keyframes activePlanetFloat {
  from { margin-top: -2px; }
  to { margin-top: 3px; }
}

/* 7 pontos equilibrados em volta do Sankhya */
.ecosystem-compact .o1 { --x:50%; --y:10%; --angle:90deg; --line:145px; }
.ecosystem-compact .o2 { --x:82%; --y:26%; --angle:142deg; --line:134px; }
.ecosystem-compact .o7 { --x:89%; --y:53%; --angle:180deg; --line:136px; }
.ecosystem-compact .o3 { --x:78%; --y:80%; --angle:222deg; --line:130px; }
.ecosystem-compact .o4 { --x:50%; --y:91%; --angle:-90deg; --line:150px; }
.ecosystem-compact .o5 { --x:22%; --y:80%; --angle:-42deg; --line:130px; }
.ecosystem-compact .o6 { --x:18%; --y:26%; --angle:38deg; --line:134px; }

.ecosystem-signal {
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  background: #FFBE00;
  box-shadow:
    0 0 0 2px #FFBE00,
    0 0 12px rgba(255,190,0,.95),
    0 0 28px rgba(255,190,0,.72);
  will-change: transform, opacity;
}

.ecosystem-signal::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,190,0,.45);
  animation: signalHalo 1s ease-out infinite;
}

@keyframes signalHalo {
  0% { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ==========================================================
   BENEFÍCIOS LATERAIS
   ========================================================== */
.ecosystem-benefits-v11 {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 28px;
}

.ecosystem-benefits-v11::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(111,53,165,.18) 12%, rgba(111,53,165,.18) 88%, transparent);
}

.ecosystem-benefits-v11 article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 126px;
  padding: 17px 18px;
  border: 1px solid rgba(111,53,165,.09);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(249,245,252,.92));
  box-shadow: 0 14px 34px rgba(72,23,117,.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ecosystem-benefits-v11 article::after {
  content: '';
  position: absolute;
  right: -32px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,53,165,.10), transparent 67%);
}

.ecosystem-benefits-v11 article:hover {
  transform: translateY(-3px);
  border-color: rgba(111,53,165,.18);
  box-shadow: 0 20px 44px rgba(72,23,117,.1);
}

.benefit-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  background: linear-gradient(145deg, #7b3dc0, #481775);
  box-shadow: 0 10px 24px rgba(72,23,117,.20), inset 0 1px 0 rgba(255,255,255,.25);
}

.ecosystem-benefits-v11 article small {
  display: block;
  margin-bottom: 4px;
  color: #a795b1;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.ecosystem-benefits-v11 h3 {
  margin: 0 0 7px;
  color: #3a1553;
  font-size: 18px;
  line-height: 1.1;
}

.ecosystem-benefits-v11 p {
  margin: 0;
  color: #6c6272;
  font-size: 12px;
  line-height: 1.62;
}

/* ==========================================================
   FAIXA INFERIOR DE PROVAS
   ========================================================== */
.ecosystem-proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  padding: 18px;
  border: 1px solid rgba(111,53,165,.12);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, #f9f4fd 48%, #fff 100%);
  box-shadow: 0 18px 48px rgba(72,23,117,.075);
}

.ecosystem-proof-strip article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 106px;
  padding: 10px 24px;
  border-right: 1px solid rgba(111,53,165,.12);
}
.ecosystem-proof-strip article:last-child { border-right: 0; }

.proof-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  background: linear-gradient(145deg, #7a3fc0, #481775);
  box-shadow: 0 11px 25px rgba(72,23,117,.20);
}
.proof-lightning { color: #FFBE00; }
.proof-shield { color: #FFBE00; }
.proof-rocket { color: #fff; }

.ecosystem-proof-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #42165f;
  font-size: 14px;
}
.ecosystem-proof-strip p {
  margin: 0;
  color: #746a7b;
  font-size: 11px;
  line-height: 1.55;
}

@media(max-width:1180px) {
  .ecosystem-home-grid {
    grid-template-columns: minmax(210px,.65fr) minmax(500px,1.35fr);
  }
  .ecosystem-benefits-v11 {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3,1fr);
    padding: 28px 0 0;
  }
  .ecosystem-benefits-v11::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .ecosystem-benefits-v11 article {
    grid-template-columns: 54px 1fr;
  }
}

@media(max-width:860px) {
  .hero-grid-v11 { grid-template-columns: 1fr; }
  .mascot-showcase-v11 { margin: 0 auto; }
  .ecosystem-home-grid { grid-template-columns: 1fr; }
  .ecosystem-intro { text-align: left; }
  .ecosystem-intro > p { margin: 0; max-width: 540px; }
  .ecosystem-live-copy { max-width: 390px; margin: 24px 0 0; text-align: left; }
  .ecosystem-compact { width: min(100%, 620px); margin: 0 auto; }
  .ecosystem-benefits-v11 { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .ecosystem-proof-strip { grid-template-columns: 1fr; max-width: 620px; }
  .ecosystem-proof-strip article { border-right: 0; border-bottom: 1px solid rgba(111,53,165,.12); }
  .ecosystem-proof-strip article:last-child { border-bottom: 0; }
}

@media(max-width:620px) {
  /* mobile espelha a composicao da versao web */
  .hero-home-v11 {
    padding: 44px 0 46px;
    background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  }
  .hero-home-v11:after { display: none; }
  .hero-grid-v11 { gap: 30px; min-height: 0; }
  .mascot-showcase-v11 {
    min-height: 300px;
    max-width: none;
    margin: 0;
    padding: 22px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(150deg, #fbf7ff 0%, #8a4fc4 58%, #6f35a5 100%);
  }
  .mascot-showcase-v11:before { width: 300px; height: 300px; }
  .mascot-showcase-v11 img { width: min(62%, 240px); }
  .mascot-showcase-v11 .mascot-badge {
    right: auto;
    left: 20px;
    top: auto;
    bottom: 22px;
    color: #fff;
    font-size: 11px;
  }

  .ecosystem-home-v11 { padding: 66px 0 56px; }
  .ecosystem-compact {
    min-height: 600px;
    border-radius: 28px;
    overflow: hidden;
    padding: 8px;
  }
  .ecosystem-compact::before { width: 300px; height: 300px; }
  .ecosystem-compact::after { width: 208px; height: 208px; }
  .ecosystem-ambient-ring.ring-a { width: 254px; height: 254px; }
  .ecosystem-ambient-ring.ring-b { width: 160px; height: 160px; }
  .ecosystem-compact .core { width: 168px; height: 116px; padding: 18px; border-radius: 24px; }
  .ecosystem-compact .core img { max-width: 116px; }

  .ecosystem-compact .orbit-app { width: 58px; height: 58px; border-radius: 17px; padding: 3px; }
  .ecosystem-compact .orbit-app img { border-radius: 14px; }
  /* rotulos mantidos como na versao web */
  .ecosystem-compact .orbit-app::after {
    display: block;
    top: calc(100% + 5px);
    width: 96px;
    font-size: 9px;
    line-height: 1.15;
  }
  .ecosystem-compact .orbit-app > b {
    display: block;
    top: calc(100% + 24px);
    max-width: 96px;
    padding: 3px 6px;
    font-size: 6px;
    letter-spacing: .05em;
  }

  .ecosystem-compact .o1 { --y:9%; --line:100px; }
  .ecosystem-compact .o2 { --x:78%; --y:25%; --line:92px; }
  .ecosystem-compact .o7 { --x:82%; --y:51%; --line:96px; }
  .ecosystem-compact .o3 { --x:76%; --y:76%; --line:92px; }
  .ecosystem-compact .o4 { --y:87%; --line:102px; }
  .ecosystem-compact .o5 { --x:24%; --y:76%; --line:92px; }
  .ecosystem-compact .o6 { --x:22%; --y:25%; --line:92px; }

  .ecosystem-benefits-v11 article { grid-template-columns: 56px 1fr; min-height: auto; }
  .ecosystem-proof-strip { padding: 10px; border-radius: 22px; }
  .ecosystem-proof-strip article { padding: 15px 12px; }
}

@media(prefers-reduced-motion: reduce) {
  .ecosystem-compact::before,
  .ecosystem-ambient-ring.ring-a,
  .live-dot,
  .ecosystem-signal::after,
  .ecosystem-compact .orbit-app.is-connecting,
  .core.is-sending .core-pulse {
    animation: none !important;
  }
  .ecosystem-signal { display: none; }
}

/* Respiro maior no hero a partir do desktop: a capa vinha com
   64px/58px de padding, apertada para o tamanho do H1. */
@media(min-width:861px) {
  .hero-home-v11 {
    padding: 104px 0 96px;
  }

  .hero-grid-v11 {
    min-height: 520px;
    gap: 56px;
  }
}

/* ===== 70-v12.css ===== */
/* V12 */
.site-footer .footer-grid {
  grid-template-columns: 1.5fr 1fr 1.25fr 1fr
}

.site-footer .footer-grid p {
  font-size: 14px;
  line-height: 1.8
}

.wa img {
  width: 31px;
  height: 31px;
  display: block
}

@media(max-width:760px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:520px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr
  }
}

/* ===== 65-integracoes.css ===== */
/* =========================================================
   INTEGRAÇÕES
   ========================================================= */

.integrations-section {
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -190px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(111,53,165,.10),
            rgba(111,53,165,0) 70%
        );
    pointer-events: none;
}

.integrations-copy {
    position: relative;
    z-index: 2;
}

.integration-cards {
    position: relative;
    z-index: 2;

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

.integration-card {
    position: relative;

    min-height: 235px;
    padding: 26px;

    border-radius: 26px;
    border: 1px solid rgba(72,23,117,.11);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(250,247,252,.98)
        );

    box-shadow:
        0 18px 45px rgba(72,23,117,.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.integration-card:hover {
    transform: translateY(-7px);

    border-color: rgba(111,53,165,.26);

    box-shadow:
        0 28px 65px rgba(72,23,117,.13);
}

.integration-card-icon {
    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3ebf8
        );

    border: 1px solid rgba(111,53,165,.11);

    box-shadow:
        0 12px 28px rgba(72,23,117,.09);
}

.integration-card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.integration-card-icon-whatsapp {
    background:
        linear-gradient(
            145deg,
            #f6fff8,
            #e9faef
        );
}

.integration-card-label {
    display: block;

    margin-bottom: 7px;

    color: #8f73a4;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.integration-card h3 {
    margin: 0 0 9px;

    font-size: 21px;
    color: #261331;
}

.integration-card p {
    margin: 0;

    color: #716677;
    line-height: 1.65;
}

/* PAGAMENTOS */

.integration-payment-icon {
    background:
        linear-gradient(
            145deg,
            #481775,
            #6F35A5
        );

    box-shadow:
        0 14px 32px rgba(72,23,117,.20);
}

.integration-payment-icon svg {
    width: 39px;
    height: 39px;

    fill: none;

    stroke: #fff;
    stroke-width: 2.6;
    stroke-linecap: round;
}

.integration-payment-icon .payment-highlight {
    stroke: #FFBE00;
    stroke-width: 4;
}

.integration-card-payment::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -20px;
    bottom: -22px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,190,0,.15),
            rgba(255,190,0,0) 70%
        );
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .integration-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== 75-whatsapp-container.css ===== */
.whatsapp-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.whatsapp-module-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo totalmente fora do card */
.whatsapp-module-logo {
  width: 100%;
  min-height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
}

.whatsapp-module-logo img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 70px;
  object-fit: contain;
}

/* Somente a descrição fica dentro do container */
.whatsapp-module-description {
  width: 100%;
  min-height: 150px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: 22px;

  background: #fff;
  border: 1px solid rgba(111, 53, 165, 0.10);
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(40, 26, 55, 0.05);
}

.whatsapp-module-description p {
  margin: 0;

  color: #62606a;
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 1050px) {
  .whatsapp-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .whatsapp-module-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .whatsapp-module-logo {
    min-height: 75px;
    margin-bottom: 10px;
  }

  .whatsapp-module-logo img {
    max-width: 170px;
    max-height: 60px;
  }

  .whatsapp-module-description {
    min-height: auto;
    padding: 18px 20px;
  }
}

/* ===== 80-solucoes.css ===== */
/* ============================================================
   SOLUÇÕES — hero, breadcrumb, jornada, produtos, FAQ
   ============================================================ */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #8b7f95;
  margin-bottom: 18px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.breadcrumb a { color: #8b7f95; text-decoration: none; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: #cfc4d8;
}
.breadcrumb [aria-current] { color: var(--purple); }

/* ---------- Faixa de integrações ---------- */
.solucoes-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(111,53,165,.14);
}
.solucoes-trust > span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8b7f95;
}
.solucoes-trust ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.solucoes-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #4a3d55;
}
.solucoes-trust img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ---------- Jornada (onde a Loop atua) ---------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(111,53,165,.12);
  box-shadow: 0 14px 34px rgba(72,23,117,.06);
}
.journey-step > b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.journey-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -.02em;
}
.journey-step p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b6073;
}
.journey-step a {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  color: var(--purple);
  text-decoration: none;
}
.journey-step a:hover { text-decoration: underline; }

/* ---------- Cards de produto com logo ---------- */
.product .product-avatar-solucoes {
  width: 100%;
  max-width: 150px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
  display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(111,53,165,.14);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 22px;
  position: relative;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #24103e;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4ecfa;
  color: var(--purple);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--purple); }
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b6073;
}

@media(max-width:900px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:620px) {
  .journey-grid { grid-template-columns: 1fr; gap: 12px; }
  .journey-step { padding: 20px 18px; grid-template-columns: 40px 1fr; gap: 14px; }
  .journey-step > b { width: 40px; height: 40px; }
  .solucoes-trust { gap: 12px 18px; }
  .faq-item summary { font-size: 15px; padding: 18px 48px 18px 18px; }
  .faq-item p { padding: 0 18px 18px; font-size: 14px; }
}

/* ---------- Hero da pagina de solucoes ---------- */
.hero-solucoes h1 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.06;
}
.hero-solucoes .hero-copy > p {
  font-size: 17px;
  max-width: 540px;
}
.hero-solucoes .breadcrumb { margin-bottom: 14px; }

@media(max-width:620px) {
  .hero-solucoes h1 { font-size: clamp(32px, 8.6vw, 40px); }
}

/* ---------- Marca do produto no hero das paginas de solucao ---------- */
.produto-marca {
  min-height: 300px;
}
.produto-marca img {
  width: min(78%, 340px);
  padding: 26px 30px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(72,23,117,.20);
  filter: none;
}

@media(max-width:860px) {
  .produto-marca { min-height: 220px; }
}

@media(max-width:620px) {
  .produto-marca { min-height: 190px; padding: 18px; }
  .produto-marca img { width: min(84%, 260px); padding: 18px 20px; border-radius: 20px; }
}

/* ---------- Link para a pagina dedicada, dentro da jornada ---------- */
.journey-step .journey-seo-link {
  display: block;
  margin-top: 6px;
  color: #6b6073;
  font-weight: 700;
}
.journey-step .journey-seo-link:hover { color: var(--purple); }

/* ---------- Planos (LoopMais) ---------- */
.plano-preco {
  display: block;
  margin: 6px 0 14px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--purple);
}
.plano-preco span {
  font-size: 14px;
  font-weight: 700;
  color: #7d7288;
}
.card .plano-lista {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}
.card .plano-lista li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: #6b6073;
}
.card .plano-lista li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple2);
  font-weight: 900;
}
.card .plano-selo {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4ecfa;
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ===== 85-blog.css ===== */
/* ============================================================
   BLOG E DÚVIDAS — tipografia de leitura longa
   ============================================================ */

/* ---------- Cabeçalho do artigo ---------- */
.post-header {
  padding: 54px 0 30px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  border-bottom: 1px solid rgba(111,53,165,.10);
}
.post-header h1 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.14;
  letter-spacing: -.03em;
  color: #24103e;
  max-width: 24ch;
  margin: 10px 0 16px;
}

/* cabecalho do artigo compartilha a coluna de leitura do corpo */
.post-header.post-header-artigo .wrap > * {
  display: block;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.post-header.post-header-artigo + .section { padding-top: 0; }
.post-header.post-header-artigo + .section .post-body { padding-top: 30px; }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 13px;
  color: #7d7288;
}
.post-meta strong {
  color: #4a3d55;
  font-weight: 800;
}
.post-meta span::before {
  content: '·';
  margin-right: 14px;
  color: #cfc4d8;
}
.post-resumo {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.6;
  color: #5f5668;
}

/* ---------- Corpo do artigo ---------- */
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 0 20px;
}
.post-body h2 {
  margin: 40px 0 14px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #24103e;
}
.post-body h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  letter-spacing: -.01em;
  color: #33184f;
}
.post-body p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
  color: #4a4152;
}
.post-body ul,
.post-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.post-body li {
  margin-bottom: 9px;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4152;
}
.post-body a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-body a:hover { color: var(--purple2); }
.post-body strong { color: #33184f; font-weight: 800; }

.post-nota {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  background: #fdfaff;
}
.post-nota p { margin: 0; font-size: 16px; }

.post-cta {
  margin: 34px 0 10px;
  padding: 26px 26px 24px;
  border-radius: 22px;
  border: 1px solid rgba(111,53,165,.14);
  background: linear-gradient(135deg, #faf6fd, #f3ebfb);
}
.post-cta h3 { margin: 0 0 8px; font-size: 19px; }
.post-cta p { margin: 0 0 16px; font-size: 15px; }

/* ---------- Índice do blog ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.post-card {
  display: block;
  padding: 26px 24px;
  border: 1px solid rgba(111,53,165,.12);
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(72,23,117,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(111,53,165,.3);
  box-shadow: 0 20px 42px rgba(72,23,117,.12);
}
.post-card .tag {
  display: inline-block;
  margin-bottom: 10px;
}
.post-card h2,
.post-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: #24103e;
}
.post-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b6073;
}
.post-card small {
  font-size: 12px;
  font-weight: 700;
  color: #8b7f95;
}

/* ---------- Dúvidas: navegação por grupo ---------- */
.faq-grupo {
  margin-bottom: 40px;
}
.faq-grupo > h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -.02em;
}
.faq-grupo > p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #6b6073;
  max-width: 60ch;
}
.faq-indice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 40px;
}
.faq-indice a {
  padding: 9px 15px;
  border: 1px solid rgba(111,53,165,.16);
  border-radius: 999px;
  background: #fff;
  color: #4a3d55;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.faq-indice a:hover {
  border-color: var(--purple);
  color: var(--purple);
}

@media(max-width:620px) {
  .post-header { padding: 34px 0 24px; }
  .post-body { padding: 30px 0 14px; }
  .post-body p, .post-body li { font-size: 16px; }
  .post-resumo { font-size: 16px; }
  .post-cta { padding: 20px; }
}

/* ===== site.src.css (regras proprias) ===== */
/* Loop Site - CSS modularizado
   Ordem importa: os módulos abaixo preservam a cascata do projeto. */
