:root {
  --navy-deep: #0d1140;
  --navy-mid: #1a1f4e;
  --navy-light: #252b6e;
  --magenta: #c22ff5;
  --purple: #7b3ff5;
  --blue: #3d5bf5;
  --white: #ffffff;
  --gray-100: #f5f5ff;
  --gray-200: #e8e8f5;
  --gray-400: #9999bb;
  --text-body: #444466;
  --text-muted: #6666aa;
  --grad: linear-gradient(135deg, #c22ff5 0%, #7b3ff5 45%, #3d5bf5 100%);
  --grad-v: linear-gradient(180deg, #c22ff5 0%, #3d5bf5 100%);
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.brand-body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy-deep);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--navy-deep);
  color: var(--white);
  padding: 0.45rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(13, 17, 64, 0.35);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 0.75rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.site-logo img {
  height: clamp(38px, 5vw, 54px);
  width: auto;
  max-width: min(300px, 64vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: 0.95rem;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.2;
}

.nav-links a:hover {
  color: var(--gray-400);
}

.nav-links a.active {
  color: var(--gray-200);
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
}

.mobile-menu a:hover {
  background: var(--navy-light);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.site-footer {
  background: var(--navy-deep);
  color: var(--gray-400);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.86rem;
  font-family: var(--font-body);
}

.site-footer a {
  color: var(--gray-200);
  text-decoration: none;
  margin: 0 8px;
}

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

.hero-home {
  background: var(--gray-100);
  padding: 132px 0 80px;
  text-align: center;
}

.hero-home h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  letter-spacing: -0.005em;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
  line-height: 1.18;
  max-width: min(100%, 44rem);
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

@media (max-width: 900px) {
  .site-logo img {
    height: clamp(32px, 6vw, 42px);
    max-width: min(230px, 66vw);
  }

  .hero-home h1 {
    font-size: clamp(1.85rem, 6vw, 2.8rem);
    line-height: 1.24;
    max-width: min(100%, 34rem);
    letter-spacing: -0.01em;
  }
}

.hero-home .lead {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 0.55rem;
  line-height: 1.65;
}

.hero-home .focus-note {
  font-size: 1rem;
  color: var(--purple);
  font-weight: 500;
  max-width: 740px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.section-muted {
  padding: 100px 0;
  background: var(--gray-100);
}

.section-white {
  padding: 100px 0;
  background: var(--white);
}

.section-muted h2,
.section-white h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy-deep);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.grid-cards {
  display: grid;
  /* 6 itens: 3×2 evita “buraco” no fim da linha em telas largas */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

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

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

.grid-cards > div {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  color: var(--text-body);
  font-weight: 400;
}

.section-muted .grid-cards > div {
  box-shadow: 0 4px 20px rgba(13, 17, 64, 0.06);
}

/* “Como implementamos” — scrollytelling: um painel por vez no mesmo bloco */
.section-process__head {
  margin-bottom: 0.25rem;
}

.section-process .process-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 36rem;
  margin: -0.35rem auto 0;
  padding-bottom: 1.75rem;
  line-height: 1.55;
}

.section-process .process-intro strong {
  color: var(--text-body);
  font-weight: 600;
}

.process-scrolly {
  --process-steps: 6;
  --process-segment: min(58vh, 520px);
  position: relative;
  min-height: calc(var(--process-steps) * var(--process-segment) + 35vh);
}

.process-scrolly__sticky {
  position: sticky;
  top: clamp(4.75rem, 11vw, 6.25rem);
  display: flex;
  align-items: center;
  min-height: calc(100vh - clamp(4.75rem, 11vw, 6.25rem));
  min-height: calc(100dvh - clamp(4.75rem, 11vw, 6.25rem));
  padding: 1.25rem 0 2.5rem;
  box-sizing: border-box;
  isolation: isolate;
  transition:
    background 0.85s ease,
    box-shadow 0.85s ease;
  background: linear-gradient(165deg, #f6f5fd 0%, #f0f2ff 50%, #faf9ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.process-scrolly__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  transition: opacity 0.85s ease, background 0.85s ease;
  background: radial-gradient(ellipse 85% 70% at 88% 18%, rgba(123, 63, 245, 0.14), transparent 55%);
}

.process-scrolly[data-bg-step="1"] .process-scrolly__sticky {
  background: linear-gradient(165deg, #f6f5fd 0%, #f0f2ff 48%, #faf9ff 100%);
}

.process-scrolly[data-bg-step="1"] .process-scrolly__sticky::before {
  opacity: 0.5;
  background: radial-gradient(ellipse 90% 75% at 85% 12%, rgba(123, 63, 245, 0.16), transparent 58%);
}

.process-scrolly[data-bg-step="2"] .process-scrolly__sticky {
  background: linear-gradient(175deg, #faf5ff 0%, #f3ecff 40%, #f8f6ff 100%);
}

.process-scrolly[data-bg-step="2"] .process-scrolly__sticky::before {
  opacity: 0.62;
  background: radial-gradient(ellipse 80% 65% at 12% 22%, rgba(194, 47, 245, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 60% at 92% 78%, rgba(123, 63, 245, 0.1), transparent 52%);
}

.process-scrolly[data-bg-step="3"] .process-scrolly__sticky {
  background: linear-gradient(195deg, #f3f6ff 0%, #e9eeff 45%, #f6f8ff 100%);
}

.process-scrolly[data-bg-step="3"] .process-scrolly__sticky::before {
  opacity: 0.58;
  background: radial-gradient(ellipse 75% 70% at 80% 20%, rgba(61, 91, 245, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 50% at 18% 85%, rgba(123, 63, 245, 0.08), transparent 50%);
}

.process-scrolly[data-bg-step="4"] .process-scrolly__sticky {
  background: linear-gradient(185deg, #f0f4ff 0%, #e8ecfb 42%, #f4f2ff 100%);
}

.process-scrolly[data-bg-step="4"] .process-scrolly__sticky::before {
  opacity: 0.55;
  background: radial-gradient(ellipse 70% 65% at 50% 8%, rgba(61, 91, 245, 0.11), transparent 48%),
    radial-gradient(ellipse 65% 55% at 95% 60%, rgba(194, 47, 245, 0.09), transparent 52%);
}

.process-scrolly[data-bg-step="5"] .process-scrolly__sticky {
  background: linear-gradient(170deg, #f2efff 0%, #ebe7fb 50%, #f7f5ff 100%);
}

.process-scrolly[data-bg-step="5"] .process-scrolly__sticky::before {
  opacity: 0.6;
  background: radial-gradient(ellipse 88% 72% at 10% 30%, rgba(123, 63, 245, 0.14), transparent 54%),
    radial-gradient(ellipse 60% 55% at 90% 88%, rgba(61, 91, 245, 0.1), transparent 50%);
}

.process-scrolly[data-bg-step="6"] .process-scrolly__sticky {
  background: linear-gradient(180deg, #ececf8 0%, #e4e6f5 38%, #f2f1fa 100%);
}

.process-scrolly[data-bg-step="6"] .process-scrolly__sticky::before {
  opacity: 0.45;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(13, 17, 64, 0.08), transparent 45%),
    radial-gradient(ellipse 55% 45% at 8% 15%, rgba(123, 63, 245, 0.1), transparent 50%);
}

.process-scrolly__sticky > .container {
  position: relative;
  width: 100%;
  z-index: 1;
}

.process-scrolly__live {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.process-scrolly__frame {
  position: relative;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}

.process-steps.process-steps--scrolly {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  min-height: clamp(14rem, 38vw, 17.5rem);
  max-width: 40rem;
}

.process-steps--scrolly .process-steps__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem 1.25rem;
  align-items: start;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(0.6rem);
  pointer-events: none;
  transition:
    opacity 0.38s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-steps--scrolly .process-steps__item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.process-steps__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--grad);
  min-width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(123, 63, 245, 0.25);
  position: relative;
  z-index: 1;
}

.process-steps__body {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.15rem 1.35rem 1.35rem;
  box-shadow: 0 2px 16px rgba(13, 17, 64, 0.04);
}

.process-steps__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.process-steps__body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.process-steps__progress {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding-top: 0.25rem;
}

.process-steps__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gray-200);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.process-steps__dot.is-active {
  background: var(--purple);
  transform: scale(1.25);
}

/* Lista estática quando o utilizador prefere menos movimento */
.process-scrolly--static {
  min-height: 0 !important;
}

.process-scrolly--static .process-scrolly__sticky {
  position: relative;
  top: auto;
  min-height: 0;
  display: block;
  padding: 0 0 2.5rem;
  background: var(--gray-100);
  box-shadow: none;
  transition: none;
}

.process-scrolly--static .process-scrolly__sticky::before {
  display: none;
}

.process-scrolly--static .process-steps--scrolly {
  min-height: 0;
}

.process-scrolly--static .process-steps--scrolly .process-steps__item {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  margin-bottom: 1.15rem;
}

.process-scrolly--static .process-steps__progress {
  display: none;
}

@media (max-width: 520px) {
  .process-steps--scrolly .process-steps__item {
    gap: 0.9rem 1rem;
  }

  .process-steps__num {
    min-width: 2.4rem;
    height: 2.4rem;
    font-size: 0.7rem;
  }

  .process-scrolly {
    --process-segment: min(52vh, 440px);
  }
}

.cta-section-dark {
  padding: 100px 0;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.cta-section-dark h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

/* Páginas internas — hero + breadcrumb */
.page-hero {
  background: var(--gray-100);
  color: var(--navy-deep);
  padding: 130px 0 44px;
  text-align: center;
}

.page-hero--tight {
  padding-bottom: 32px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin-bottom: 0.65rem;
  line-height: 1.2;
  max-width: min(100%, 42rem);
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.page-hero .breadcrumb {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: var(--text-body);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: var(--purple);
}

.page-hero .lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 0.45rem;
  line-height: 1.65;
}

.page-hero .focus-note {
  font-size: 0.98rem;
  color: var(--purple);
  font-weight: 500;
  max-width: 40rem;
  margin: 0 auto 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 132px 0 36px;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 5.5vw, 2.3rem);
  }
}

/* —— Página Contato —— */
body.page-contact {
  background: var(--gray-100);
}

.section-contact {
  padding: 0 0 5rem;
}

@media (max-width: 900px) {
  .section-contact {
    padding-bottom: 3.5rem;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-aside__intro {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy-deep);
  box-shadow: 0 2px 12px rgba(13, 17, 64, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-channel:hover {
  border-color: rgba(123, 63, 245, 0.35);
  box-shadow: 0 8px 24px rgba(13, 17, 64, 0.08);
  transform: translateY(-1px);
}

.contact-channel__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel--wa .contact-channel__icon {
  background: linear-gradient(135deg, #25d366 0%, #20bf5a 100%);
  color: var(--white);
}

.contact-channel--mail .contact-channel__icon {
  background: var(--grad);
  color: var(--white);
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-channel__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-channel__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-deep);
  word-break: break-word;
}

.contact-aside__note {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  padding-top: 0.25rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  padding: 2rem 2.25rem;
  box-shadow: 0 12px 40px rgba(13, 17, 64, 0.08);
}

@media (max-width: 520px) {
  .contact-form-card {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
}

.contact-form-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.contact-form-card__subtitle {
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-form__group {
  margin-bottom: 1.25rem;
}

.contact-form__group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--navy-mid);
}

.contact-form__group input,
.contact-form__group textarea,
.contact-form__group select {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--navy-deep);
  transition: border-color 0.2s ease;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus,
.contact-form__group select:focus {
  outline: none;
  border-color: var(--purple);
}

.contact-form__group input.is-invalid,
.contact-form__group textarea.is-invalid,
.contact-form__group select.is-invalid {
  border-color: #e53e3e;
  background-color: #fff5f5;
}

.contact-form__error {
  color: #e53e3e;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  display: none;
}

.contact-form__error.is-visible {
  display: block;
}

.contact-form__group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.25rem;
  background: linear-gradient(135deg, #25d366 0%, #20bf5a 100%);
  color: var(--white);
  border: none;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}

.contact-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.contact-form__submit .whatsapp-icon {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  flex-shrink: 0;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form__submit-spinner {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: contact-spin 0.8s linear infinite;
  flex-shrink: 0;
}

/* Home — prévia de produtos e serviços */
.home-offers-intro {
  text-align: center;
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: -0.75rem auto 2rem;
  line-height: 1.6;
}

.home-offers-cta-wrap {
  text-align: center;
  margin-top: 2.25rem;
}

.grid-cards--home > article {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  color: var(--text-body);
  font-weight: 400;
  box-shadow: 0 4px 20px rgba(13, 17, 64, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.grid-cards--home h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.grid-cards--home p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.grid-cards--home a {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--purple);
  text-decoration: none;
  margin-top: auto;
}

.grid-cards--home a:hover {
  color: var(--magenta);
  text-decoration: underline;
}

/* Página Produtos e Serviços */
.page-produtos-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: -0.5rem auto 2.5rem;
  max-width: 40rem;
  padding: 0 0.25rem;
}

.page-produtos-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    color 0.2s;
}

.page-produtos-nav a:hover {
  border-color: rgba(123, 63, 245, 0.45);
  color: var(--purple);
  box-shadow: 0 4px 14px rgba(13, 17, 64, 0.06);
}

.page-produtos-section {
  scroll-margin-top: clamp(5rem, 12vw, 6.5rem);
}

.page-produtos-section .section-subtitle {
  text-align: center;
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin: -0.75rem auto 2.5rem;
  line-height: 1.6;
}

.page-produtos-section h2.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy-deep);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.75rem;
  margin-bottom: 0;
}

.product-card {
  background: var(--white);
  padding: 1.75rem 1.85rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 18px rgba(13, 17, 64, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad);
  border-radius: 2px 0 0 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(13, 17, 64, 0.1);
  }
}

.product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  border-radius: 10px;
  flex-shrink: 0;
}

.product-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.product-title {
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-description {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
}

.product-features li {
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  padding-left: 1.35rem;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-features li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 1.75rem 1.85rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 18px rgba(13, 17, 64, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-v);
  border-radius: 2px 0 0 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(13, 17, 64, 0.09);
  }
}

.service-card .service-title {
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.service-description {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-card .btn-primary {
  font-size: 0.86rem;
  padding: 11px 22px;
}

/* —— Página Sobre —— */
.page-about-section .section-subtitle {
  text-align: center;
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin: -0.75rem auto 2.5rem;
  line-height: 1.6;
}

.page-about-section h2.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy-deep);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.page-about-section .grid-cards h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 0.65rem;
}

.page-about-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  font-weight: 600;
  margin: -0.35rem 0 0.75rem;
}

.service-card .service-description:last-child {
  margin-bottom: 0;
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border-left: 2px solid var(--gray-200);
}

.about-timeline__item {
  position: relative;
  padding: 0 0 1.75rem 1.75rem;
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__year {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(calc(-50% - 1px));
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy-deep);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.about-timeline__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 0.4rem;
}

.about-timeline__body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}
