/* ============================================================
   Vector Institucional — Site
   Design tokens from Figma
   ============================================================ */
:root {
  --c-bg: #ffffff;
  --c-bg-soft: #f3f4f6;
  --c-primary: #1545de;
  --c-primary-2: #0046eb;
  --c-primary-3: #0042f6;
  --c-primary-soft: #e7ecfd;
  --c-dark: #003d58;
  --c-darker: #0f235a;
  --c-text: #3f4450;
  --c-text-muted: #728086;
  --c-border: #e5e7eb;

  --font-heading: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container-max: 1280px;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.brand img {
  display: block;
  height: 34px;
  width: auto;
}
.site-nav {
  display: none;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.site-nav a {
  color: var(--c-text);
  transition: color 0.15s;
}
.site-nav a:hover {
  color: var(--c-primary);
}
.header-ctas {
  display: none;
  gap: 8px;
}
.header-ctas .btn {
  padding: 9px 22px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.25px;
  height: 40px;
}
.menu-toggle {
  font-size: 28px;
  color: var(--c-text);
  padding: 4px;
  display: inline-flex;
}
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }
  .header-ctas {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.15s,
    color 0.15s,
    border-color 0.15s,
    transform 0.1s;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--c-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-primary-2);
}
.btn-outline {
  background: #fff;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary-soft);
}
.btn-dark {
  background: #000;
  color: #fff;
}
.btn-dark:hover {
  background: #111;
}
.btn-light {
  background: var(--c-primary-soft);
  color: var(--c-primary);
}
.btn-light:hover {
  background: #fff;
}
.btn-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* ============================================================
   Hero (carousel — full-bleed split image)
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 554px;
  background: url("../assets/truck_mobile.png") center/cover no-repeat;
}
.hero-bg-jose {
  display: none;
  position: absolute;
  inset: 0 auto 0 0;
  width: 897px;
  z-index: 0; background: linear-gradient(89.64deg, rgba(0, 70, 235, 0.4) 19.18%, rgba(45, 84, 177, 0.4) 78.66%, rgba(102, 102, 102, 0) 111.11%),
 url("../assets/joser_app.png") left top/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  min-height: 554px;
  padding-top: 150px;
  padding-bottom: 80px;
}
.hero-text {
  width: 100%;
  max-width: 543px;
  margin: 0;
  text-align: left;
}
.hero-logo {
  display: none;
  width: auto;
  height: 48px;
  margin: 0 0 24px;
  filter: brightness(0) invert(1);
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: -0.16px;
  color: #fff;
  margin-bottom: 16px;
}
.hero-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.39;
  color: #fff;
}

/* Carousel controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 3;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.15s;
}
.hero-arrow:hover {
  background: #fff;
}
.hero-arrow-prev {
  left: 56px;
}
.hero-arrow-next {
  right: 56px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 12px;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.15s;
}
.hero-dot.is-active {
  background: #fff;
}

@media(min-width: 1180px){
    .hero-bg-jose {
    display: block;
  }
}

@media (min-width: 824px) {
  .hero {
    height: 554px;
    min-height: 554px;
    background: url("../assets/hero-truck-highway.png") center/cover no-repeat;
  }
  .hero-content {
    height: 554px;
    min-height: 554px;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
  }
  .hero-text {
    margin: 0;
    max-width: 543px;
    text-align: left;
  }
  .hero-logo {
    display: block;
    margin: 0 0 28px;
    height: 60px;
  }
  .hero-text h1 {
    font-size: 36px;
    line-height: 1.4;
  }
  .hero-text p {
    font-size: 18px;
  }
  .hero-arrow {
    display: inline-flex;
  }
  .hero-dots {
    display: flex;
  }
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 88px 0;
  }
}
.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: var(--c-primary);
}
.section-subtitle {
  font-size: 18px;
  color: var(--c-text-muted);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 640px;
}

.section-beneficios {
  background: var(--c-bg-soft);
}
.section-beneficios .section-title {
  text-align: left;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .section-beneficios .section-title {
    text-align: center;
    font-size: 36px;
    line-height: 41px;
  }
}
.section-stats {
  background: #fff;
}
.section-solucoes {
  background: var(--c-darker);
  color: #fff;
}
.section-parceiros {
  background: var(--c-bg-soft);
}
.section-contato {
  background: var(--c-primary);
  color: var(--c-primary-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contato-decor {
  display: none;
}
@media (min-width: 1024px) {
  .contato-decor {
    display: block;
    position: absolute;
    top: -12px;
    right: -124px;
    width: 480px;
    height: auto;
    z-index: 0;
    pointer-events: none;
  }
  .section-contato .container {
    position: relative;
    z-index: 1;
  }
}

/* ============================================================
   Benefícios layout (cards around phones)
   ============================================================ */
.beneficios-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.beneficio-card {
  background: var(--c-primary);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  min-height: 200px;
}
.beneficio-card .card-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.beneficio-card p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.39;
}
.beneficios-media {
  display: flex;
  justify-content: center;
  margin: 12px 0;
  order: -1;
}
.beneficios-media img {
  max-width: 280px;
  width: 100%;
}
@media (min-width: 1024px) {
  .beneficios-layout {
    grid-template-columns: 260px 1fr 260px;
    grid-template-rows: 200px 200px;
    grid-auto-flow: column;
    gap: 40px;
    align-items: stretch;
  }
  .beneficios-media {
    grid-row: 1 / span 2;
    grid-column: 2;
    margin: 0;
    align-items: center;
    order: 0;
  }
  .beneficios-media img {
    max-width: 100%;
    max-height: 800px;
    width: auto;
    object-fit: contain;
  }
}

/* ============================================================
   Stats
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 60px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 70px);
  line-height: 1.16;
  color: var(--c-primary-2);
}
.stat-value .stat-number {
  color: #343330;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.39;
  color: var(--c-primary-2);
}
.stat:nth-child(1) .stat-value {
  color: var(--c-primary-2);
}
.stat:nth-child(1) .stat-label {
  color: var(--c-primary);
}
.stat:nth-child(2) .stat-value {
  color: var(--c-primary);
}
.stat:nth-child(2) .stat-label {
  color: var(--c-primary-2);
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ============================================================
   Split (platform integrated)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.split-text.light h2 {
  font-size: clamp(26px, 4vw, 36px);
  color: #fff;
  margin-bottom: 28px;
}
.split-text.light .feature-list {
  color: #fff;
}
.split-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.39;
  color: var(--c-primary-soft);
}
.feature-list li i {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Soluções — full section layout */
.section-solucoes {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 0;
  min-height: 800px;
}
.solucoes-screens {
  position: absolute;
  top: 8%;
  left: 65%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.solucoes-screen {
  position: absolute;
  display: block;
  width: 178px;
  height: auto;
  border-radius: 12px;
  transform: rotate(-26.14deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
/* Mobile positions (section 360 wide × 800 tall) */
.solucoes-screen-1 {
  left: 53%;
  top: 65%;
}
.solucoes-screen-2 {
  left: 101%;
  top: 54%;
}
.solucoes-screen-3 {
  left: 106%;
  top: 74%;
}
.solucoes-screen-4 {
  left: 58%;
  top: 85%;
}
.solucoes-container {
  position: relative;
  z-index: 1;
}
.solucoes-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.solucoes-text h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.14;
  color: var(--c-primary-soft);
  margin: 0;
}
.solucoes-h2-accent {
  color: var(--c-primary);
}
@media (min-width: 1024px) {
  .section-solucoes {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .solucoes-screen {
    width: 33.9%;
    max-width: 487px;
  }
  /* Desktop positions (section 1440 wide × 800 tall) */
  .solucoes-screen-1 {
    left: 36.3%;
    top: 25.2%;
  }
  .solucoes-screen-2 {
    left: 69.2%;
    top: -4%;
  }
  .solucoes-screen-3 {
    left: 72.6%;
    top: 48.8%;
  }
  .solucoes-screen-4 {
    left: 39.7%;
    top: 78%;
  }
  .solucoes-text h2 {
    font-size: 36px;
  }
  .feature-list li {
    gap: 24px;
    font-size: 18px;
  }
}

/* ============================================================
   Partners
   ============================================================ */
.partners-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-row img {
  width: 100%;
  max-width: 547px;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   Contato cards
   ============================================================ */
.contato-header {
  margin-bottom: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .cards-grid.cards-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(15, 35, 90, 0.06);
}
.card-contato .card-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
}
.card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
}
.card p {
  color: var(--c-text-muted);
  font-size: 16px;
}
.card .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* Vamos conversar — paleta invertida */
.section-contato .section-title {
  text-align: left;
  color: var(--c-primary-soft);
}
.section-contato .section-subtitle {
  text-align: left;
  color: var(--c-primary-soft);
  margin: 0;
  max-width: 714px;
}
.section-contato .cards-grid {
  max-width: 960px;
  margin-top: 36px;
}
.card-contato {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 32px;
  gap: 40px;
  box-shadow: none;
  min-height: 272px;
  justify-content: space-between;
}
.card-contato .card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-contato .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--c-primary-soft);
  font-size: 24px;
}
.card-contato .card-label {
  display: flex;
  flex-direction: column;
}
.card-contato .card-eyebrow {
  font-weight: 400;
  color: var(--c-primary-soft);
  text-transform: uppercase;
}
.card-contato h3 {
  color: var(--c-primary-soft);
}
.card-contato p {
  color: var(--c-primary-soft);
}
.card-contato .btn {
  align-self: flex-start;
  height: 42px;
  padding: 8px 20px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #fff;
  padding: 80px 0;
  color: var(--c-text);
}
.footer-brand {
  display: block;
  width: 126px;
  height: 36px;
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-primary-2);
  line-height: 1.17;
  margin: 0;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-col ul li {
  font-size: 14px;
  line-height: 20px;
}
.footer-col a {
  color: var(--c-text);
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--c-primary);
}

.footer-col-addr .footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-addr p {
  font-size: 14px;
  line-height: 20px;
  color: var(--c-text-muted);
  margin: 0;
}

.footer-col-vbs .footer-vbs-logo {
  width: 78px;
  height: auto;
  margin: 0;
}
.footer-col-vbs .footer-vbs-title {
  color: #172342;
}

/* Copyright block (below footer) */
.site-copyright {
  background: #f0f1f2;
  padding: 80px 0;
}
.site-copyright .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.copyright-text {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 17px;
  color: var(--c-text);
}
.copyright-text p + p {
  margin-top: 12px;
}
.copyright-iso {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .site-copyright .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 52px;
  }
  .copyright-iso {
    width: 206px;
    height: 200px;
    object-fit: contain;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 2.3fr 2.3fr;
    gap: 60px;
  }
  .footer-col-vbs {
    position: relative;
  }
  .footer-col-vbs::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    width: 1px;
    height: 340px;
    background: var(--c-primary);
    transform: translateY(-50%);
  }
}

/* ============================================================
   Sub-pages: page-hero
   ============================================================ */
.page-hero {
  background: var(--c-bg-soft);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--c-border);
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--c-text);
}
.page-hero p {
  font-size: 16px;
  color: var(--c-text-muted);
  max-width: 760px;
}
.page-hero-centered {
  text-align: center;
}
.page-hero-centered p {
  margin: 0 auto 24px;
}
.page-hero-centered .btn {
  margin: 0 auto;
}
.page-hero-icon {
  font-size: 64px;
  color: var(--c-primary);
  display: block;
  margin: 0 auto 16px;
}
.page-hero.page-hero-split {
  padding-bottom: 80px;
}
.page-hero .split {
  align-items: center;
}

/* Disclaimer banner */
.page-disclaimer {
  background: #fff8e6;
  border-bottom: 1px solid #ffe7a0;
  padding: 16px 0;
  font-size: 13px;
  color: #6b4f00;
  line-height: 1.5;
}

/* Download cards (privacidade) */
.downloads {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.download-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.download-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
}

/* Docs list (transparência) */
.docs-group-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.docs-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--c-primary);
  padding-left: 16px;
}
.docs-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.docs-list li:last-child {
  border-bottom: 0;
}
.docs-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-size: 15px;
  transition: color 0.15s;
}
.docs-list a:hover {
  color: var(--c-primary);
}
.docs-list i {
  color: var(--c-primary);
  font-size: 18px;
}

/* Soluções grid (vbsscd.html) */
.solucoes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.solucoes-grid-2 {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .solucoes-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .solucoes-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.solucao-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
}
.solucao-card-soft {
  background: var(--c-primary-soft);
  border-color: var(--c-primary-soft);
}
.solucao-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.solucao-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.solucao-lead {
  font-size: 16px;
  color: var(--c-text);
  font-weight: 500;
  margin-bottom: 16px;
}
.solucao-card p {
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.solucao-card p:last-child {
  margin-bottom: 0;
}
.solucao-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.solucao-image img {
  max-width: 100%;
  height: auto;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.check-list i {
  color: var(--c-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contato CTA card */
.section-contato-cta {
  background: var(--c-darker);
  color: #fff;
  padding: 80px 0;
}
.contato-cta-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.contato-cta-card h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.contato-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.contato-cta-card .mt-24 {
  margin-top: 24px;
}
.contato-cta-card .btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.contato-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  transition:
    background-color 0.15s,
    border-color 0.15s;
}
.channel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Iframe wrap */
.iframe-wrap {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Active nav link */
.site-nav a.active {
  color: var(--c-primary);
}

/* ============================================================
   Mobile menu
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-menu-header img {
  height: 32px;
  width: auto;
}
.mobile-menu-close {
  font-size: 28px;
  color: var(--c-text);
}
.mobile-menu nav {
  flex: 1;
}
.mobile-menu nav ul li {
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-text);
}
.mobile-menu nav a:hover {
  color: var(--c-primary);
}
.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
