/* ── Design tokens – Vila da Barra ── */
:root {
  /* Brand */
  --accent: #353c7e;

  /* Typography – families */
  --font--title: 'Poppins', sans-serif;
  --font--body:  'Heebo', sans-serif;

  /* Typography – weights */
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* Typography – scale */
  --text-hero:    72px;
  --lh-hero:      1.2;

  --text-h1:      44px;
  --lh-h1:        1.2;

  --text-h2:      38px;
  --lh-h2:        1.2;

  --text-h3:      32px;
  --lh-h3:        1.5;

  --text-h4:      22px;
  --lh-h4:        1.4;

  --text-h5:      20px;
  --lh-h5:        1.4;

  --text-h6:      16px;
  --lh-h6:        1.2;

  --text-body-lg: 18px;
  --lh-body-lg:   1.5;

  --text-body:    16px;
  --lh-body:      1.6;

  --text-body-sm: 14px;
  --lh-body-sm:   1.4;

  /* Colors */
  --color-black:      #0a0a12;
  --color-white:      #ffffff;
  --color-gray:       #3b3b33;
  --color-light-gray: #eeeeee;
  --color-border:     #e2e7e4;
  --color-bg:         #f2f8f3;
  --color-img-bg:     #d9d9d9;

  /* Spacing */
  --space-section: 150px;   /* main vertical padding */
  --space-top:      40px;
  --radius-pill:   100px;

  /* Layout */
  --container: 1336px;
  --side-pad:   300px;

  /* Easing */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  font-family: 'Heebo', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Vídeo de fundo ── */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  pointer-events: none;
  background-color: transparent;
}

.hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#0000004d, #0000004d);
  overflow: hidden;
  pointer-events: none;
}


/* ── Navegação ── */
.hero__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 28px 300px;
  z-index: 10;
}

.hero__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.hero__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero__logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 6px;
  border-radius: 4px;
}

.hero__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.hero__link {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.hero__link:hover {
  color: #ffffff;
}

.hero__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 6px;
  border-radius: 4px;
  color: #ffffff;
}

/* ── Hamburger ── */
.hero__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 6px 4px;
  line-height: 0;
}

.hero__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.28s var(--ease-out-quart), opacity 0.2s;
  transform-origin: center;
}

.hero__nav--open .hero__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hero__nav--open .hero__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hero__nav--open .hero__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* CTA WhatsApp na nav — mesma anatomia do hero__btn */
.hero__nav-cta {
  margin-left: 32px;
  flex-shrink: 0;
}

.hero__nav-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

/* ── Corpo do hero ── */
.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 5;
}

/* ── Conteúdo ── */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 0 300px 100px;
}


.hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 793px;
}

.hero__subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #eeeeee;
  line-height: 1.65;
  max-width: 793px;
  text-wrap: pretty;
}

/* ── CTA ── */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Barra inferior ── */
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 300px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.10) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.hero-tag {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: default;
}

.hero-tag__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.hero-tag__icon svg {
  width: 100%;
  height: 100%;
}

.hero-tag__label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── About ── */
.about {
  padding: 86px 300px;
  background-color: #ffffff;
}

.about__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}


.about__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: #0a0a12;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about__body {
  font-size: 16px;
  font-weight: 400;
  color: #3b3b33;
  line-height: 1.65;
}

.about__stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid #e2e2e2;
  padding-top: 32px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #0a0a12;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about__stat-label {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
}

.about__cta-row {
  display: flex;
  align-items: center;
  gap: 36px;
}

.about__link {
  font-size: 16px;
  font-weight: 500;
  color: #0a0a12;
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(10, 10, 18, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.about__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.about .btn {
  align-self: flex-start;
}

.about .btn:focus-visible {
  outline-color: var(--accent);
}

.about__right {
  min-height: 0;
  overflow: hidden;
}

.about__image-wrap {
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  overflow: hidden;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about {
    padding-block: 80px;
  }

  .about__wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__right {
    order: -1;
  }

  .about__image-wrap {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 600px) {
  .about {
    padding-block: 60px;
  }

  .about__stat-number {
    font-size: 32px;
  }
}

/* ── Serviços ── */
.services {
  padding: 86px 300px;
  background-color: #F8F8FF;
}

.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.services__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: #0a0a12;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.services__list {
  display: flex;
  flex-direction: column;
}

.services__card {
  position: relative;
  padding: 36px 0;
  border-bottom: 1px solid rgba(10, 10, 18, 0.1);
  overflow: hidden;
  transition: background-color 0.25s;
}

.services__card:hover {
  background-color: rgba(53, 60, 126, 0.03);
}

.services__card:first-child {
  border-top: 1px solid rgba(10, 10, 18, 0.1);
}


.services__card-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.services__card-number {
  font-size: 14px;
  font-weight: 400;
  color: rgba(10, 10, 18, 0.3);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 28px;
}

.services__card-name {
  font-size: 24px;
  font-weight: 400;
  color: #0a0a12;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.services__card-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.services__tag {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(53, 60, 126, 0.3);
  border-radius: 0;
}

.services__card-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 260px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.services__card:hover .services__card-image {
  opacity: 1;
}

.services__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services__card-link,
.services__card-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0;
}

.services__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .services {
    padding-block: 60px;
  }

  .services__card-image { display: none; }
}

@media (max-width: 600px) {
  .services {
    padding-block: 48px;
  }

  .services__card-name { font-size: 20px; }
}

/* ── CTA ── */
.cta {
  padding-top: 150px;
  padding-bottom: 16px;
  background-color: #ffffff;
}

.cta__wrap {
  display: flex;
  flex-direction: column;
  padding: 0 300px;
}

.cta__slider {
  position: relative;
  width: 100%;
}

.cta__mask {
  overflow: hidden;
  width: 100%;
}

.cta__track {
  display: flex;
  transition: transform 500ms ease;
}

.cta__slide {
  width: 100%;
  flex-shrink: 0;
}

.cta__image {
  width: 100%;
  aspect-ratio: 1296 / 542;
  background-color: #d9d9d9;
  overflow: hidden;
}

.cta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  color: #0a0a12;
  transition: background-color 0.2s;
  z-index: 4;
}

.cta__arrow:hover {
  background-color: #ffffff;
}

.cta__arrow--prev {
  left: 24px;
}

.cta__arrow--next {
  right: 24px;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.cta__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}

.cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s, transform 0.2s;
}

.cta__dot--active {
  background-color: #ffffff;
  transform: scale(1.2);
}

.cta__bottom-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta__body {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  max-width: 560px;
}

@media (max-width: 900px) {
  .cta {
    padding-top: 80px;
  }

  .cta__image {
    aspect-ratio: 4 / 3;
  }


  .cta__wrap {
    padding-inline: 32px;
  }

  .cta__arrow {
    width: 44px;
    height: 44px;
  }

  .cta__arrow--prev { left: 12px; }
  .cta__arrow--next { right: 12px; }
}

@media (max-width: 600px) {
  .cta {
    padding-top: 60px;
  }

  .cta__image {
    aspect-ratio: 3 / 2;
  }

  .cta__wrap {
    padding-inline: 24px;
  }
}

/* ── Segmentos ── */
.segments {
  padding: 86px 300px;
  background-color: #ffffff;
}

.segments__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.segments__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: #0a0a12;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.segments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.segments__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background-color: #F8F8FF;
  min-height: 280px;
  border: 1px solid rgba(10, 10, 18, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.segments__card:hover {
  border-color: rgba(53, 60, 126, 0.2);
  box-shadow: 0 4px 24px rgba(53, 60, 126, 0.07);
}

.segments__card--wide {
  grid-column: span 2;
}

.segments__card-icon {
  flex-shrink: 0;
}

.segments__card-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.segments__card-title {
  font-size: 22px;
  font-weight: 400;
  color: #0a0a12;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: auto;
}


.segments__card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #3b3b33;
  line-height: 1.6;
  max-width: 480px;
}

@media (max-width: 900px) {
  .segments {
    padding-block: 60px;
  }

  .segments__grid {
    grid-template-columns: 1fr 1fr;
  }

  .segments__card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .segments {
    padding-block: 48px;
  }

  .segments__grid {
    grid-template-columns: 1fr;
  }

  .segments__card--wide {
    grid-column: span 1;
  }
}

/* ── Por Que Nós ── */
.stats {
  padding: 180px 300px;
  background-color: #0a267a;
}

.stats__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.stats__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

.stats__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
  background-color: #0a267a;
  transition: background-color 0.25s;
}

.stats__card:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.stats__card-num {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.stats__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.stats__card-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .stats {
    padding-block: 60px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats {
    padding-block: 48px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Depoimentos ── */
.reviews {
  padding: 86px 300px;
  background-color: #ffffff;
}

.reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.reviews__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: #0a0a12;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.reviews__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.reviews__card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 30px;
  background-color: #F8F8FF;
}

.reviews__card-top {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.reviews__stars {
  display: flex;
}

.reviews__quote {
  font-size: 18px;
  font-weight: 400;
  color: #3b3b33;
  line-height: 1.5;
}

.reviews__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e7e4;
}

.reviews__stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #0a0a12;
  letter-spacing: -0.03em;
  line-height: 1;
}

.reviews__stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #777777;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.reviews__card-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.reviews__reviewer-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #e2e2e2;
}

.reviews__reviewer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews__reviewer-name {
  font-size: 22px;
  font-weight: 500;
  color: #0a0a12;
  line-height: 1.2;
}

.reviews__reviewer-role {
  font-size: 16px;
  font-weight: 400;
  color: #777777;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .reviews {
    padding-block: 60px;
  }

  .reviews__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .reviews {
    padding-block: 48px;
  }
}

/* ── Responsivo ── */

/* Telas intermediárias: reduz padding lateral de 300px → 80px */
@media (max-width: 1280px) {
  .hero__nav,
  .hero__content,
  .hero__bottom,
  .about,
  .services,
  .cta__wrap,
  .segments,
  .stats,
  .reviews,
  .faq { padding-inline: 80px; }

  .footer__inner { padding-inline: 80px; }
}

/* Mobile: restaura padding lateral para todas as seções */
@media (max-width: 768px) {
  .about,
  .services,
  .cta__wrap,
  .segments,
  .stats,
  .reviews,
  .faq { padding-inline: 20px; }

  .footer__inner { padding-inline: 20px; }

  .stats__grid { grid-template-columns: 1fr; }

  .faq { overflow: hidden; }
}

@media (max-width: 1024px) {
  .hero__links { gap: 18px; }
}

@media (max-width: 900px) {
  .hero__nav  { padding: 20px 40px; }
  .hero__content { padding-inline: 40px; }
  .hero__bottom { padding: 20px 40px; gap: 12px; }
  .hero__subtitle { max-width: 100%; }
}

/* Mobile: hamburger menu */
@media (max-width: 768px) {
  .hero__nav {
    padding: 16px 24px;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }

  .hero__links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 10;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 12px;
  }

  .hero__nav--open .hero__links {
    display: flex;
  }

  .hero__link {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero__link:last-child { border-bottom: none; }

  .hero__nav-cta { display: none; }

  .hero__hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero__content { padding-inline: 24px; }
  .hero__bottom  { padding: 20px 24px; flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 600px) {
  .hero__link { font-size: 14px; }

  .hero__scroll { display: none; }

  .hero__content {
    padding-inline: 24px;
    gap: 14px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions > .btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero__actions > .btn .btn__label { flex: 1; }

  .btn__label { padding: 12px 16px 12px 22px; }
  .btn__box   { width: 46px; }
  .btn__arrow { width: 32px; height: 32px; }

  .hero-tags { gap: 6px; }
  .hero-tag  { padding: 10px 14px; }
  .hero-tag__label { font-size: 13px; }
  .hero-tag__icon { width: 18px; height: 18px; }
}

/* ── FAQ ── */
.faq {
  padding: 86px 300px;
  background-color: #F8F8FF;
}

.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 40px;
}

.faq__title {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 400;
  color: #0a0a12;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.faq__subtitle {
  font-size: 15px;
  color: #777777;
  line-height: 1.6;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(10, 10, 18, 0.1);
}

.faq__item:first-child {
  border-top: 1px solid rgba(10, 10, 18, 0.1);
}

.faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Heebo', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #0a0a12;
  line-height: 1.4;
  gap: 20px;
  transition: color 0.2s;
}

.faq__question > span:first-child {
  flex: 1;
  min-width: 0;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 1px;
}

.faq__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(10, 10, 18, 0.2);
  position: relative;
  margin-top: 3px;
  transition: background-color 0.25s, border-color 0.25s;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: #0a0a12;
  transition: background-color 0.25s, transform 0.3s ease;
}

.faq__icon::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item--open .faq__icon {
  background-color: var(--accent);
  border-color: var(--accent);
}

.faq__item--open .faq__icon::before,
.faq__item--open .faq__icon::after {
  background-color: #ffffff;
}

.faq__item--open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq__item--open .faq__body {
  grid-template-rows: 1fr;
}

.faq__body-inner {
  overflow: hidden;
}

.faq__answer {
  font-size: 16px;
  color: #3b3b33;
  line-height: 1.65;
  padding-bottom: 28px;
  max-width: 560px;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .faq {
    padding-block: 60px;
  }

  .faq__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq__header {
    position: static;
  }
}

@media (max-width: 600px) {
  .faq {
    padding-block: 48px;
  }

  .faq__question {
    font-size: 15px;
    padding: 20px 0;
    gap: 16px;
  }

  .faq__answer {
    max-width: 100%;
    font-size: 15px;
  }

  .faq__title {
    font-size: 24px;
  }
}

/* ── Footer ── */
.footer {
  background-color: transparent;
  padding: 0 10px 10px;
}

.footer__inner {
  background-color: #353c7e;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 300px 30px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer__top-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 340px;
}

.footer__menus {
  display: flex;
  gap: 60px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__menu-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.footer__social-icons {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.2s, border-color 0.2s;
}

.footer__social-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer__top-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 440px;
  flex-shrink: 0;
}

.footer__cta-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer__cta-body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer__cta-btn {
  align-self: flex-start;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__copy {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer__bottom-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.footer__bottom-logo:hover .footer__bottom-logo-img {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer__inner {
    padding-inline: 32px;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__top-right {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 48px 0 24px;
  }

  .footer__inner {
    padding-inline: 24px;
  }

  .footer__menus {
    flex-direction: column;
    gap: 32px;
  }
}


/* ── Animações ── */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Hero: entrada em cascata */
.hero__logo     { animation: fade-up 0.6s var(--ease-out-expo) 0.05s both; }
.hero__links    { animation: fade-up 0.6s var(--ease-out-expo) 0.12s both; }
.hero__nav-cta  { animation: fade-up 0.6s var(--ease-out-expo) 0.18s both; }
.hero__content > *:nth-child(1) { animation: fade-up 0.75s var(--ease-out-expo) 0.30s both; }
.hero__content > *:nth-child(2) { animation: fade-up 0.75s var(--ease-out-expo) 0.45s both; }
.hero__content > *:nth-child(3) { animation: fade-up 0.75s var(--ease-out-expo) 0.58s both; }
.hero__content > *:nth-child(4) { animation: fade-up 0.75s var(--ease-out-expo) 0.68s both; }
.hero__bottom   { animation: fade-up 0.7s  var(--ease-out-expo) 0.50s both; }

/* Scroll reveal — estado inicial adicionado via JS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out-quart), transform 0.65s var(--ease-out-quart);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Serviços: hover nos cards */
.services__card-number {
  transition: color 0.22s var(--ease-out-quart);
}

.services__card-name {
  transition: transform 0.28s var(--ease-out-quart);
}

.services__card:hover .services__card-number {
  color: var(--accent);
}

.services__card:hover .services__card-name {
  transform: translateX(8px);
}

/* Segmentos: hover no ícone */
.segments__card-icon-img {
  transition: transform 0.4s var(--ease-out-quart);
}

.segments__card:hover .segments__card-icon-img {
  transform: scale(1.08) rotate(-4deg);
}
/* ── CERTIFICAÇÃO: SELO VISUAL ── */
.stats__card-cert-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 5px;
}

.stats__card-seal-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s var(--ease-out-quart);
}

.stats__card:hover .stats__card-seal-img {
  transform: scale(1.15) rotate(8deg);
}

/* ── SEÇÃO CONTATO ── */
.contact {
  padding: 100px 300px;
  background-color: #ffffff;
  border-top: 1px solid rgba(10, 10, 18, 0.05);
}

.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #0a0a12;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact__desc {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact__detail-item {
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  padding: 16px;
  background-color: #F8F8FF;
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.contact__detail-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ── FORMULÁRIO ── */
.contact__form {
  background-color: #F8F8FF;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 18, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a12;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1px solid rgba(10, 10, 18, 0.15);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: #0a0a12;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form__input::placeholder {
  color: #aaaaaa;
}

.form__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 60, 126, 0.15);
}

.form__input--textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 240px;
}

.contact__btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ── RESPONSIVIDADE CONTATO & FAQ ── */
@media (max-width: 1200px) {
  .contact {
    padding: 80px 80px;
  }
}

@media (max-width: 991px) {
  .contact {
    padding: 80px 40px;
  }
  .contact__wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 60px 20px;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact__form {
    padding: 24px;
  }
}


/* ── SEÇÃO CERTIFICAÇÕES E LICENÇAS ── */
.compliance {
  padding: 100px 300px;
  background-color: #F8F8FF;
  border-top: 1px solid rgba(10, 10, 18, 0.05);
}

.compliance__wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.compliance__header {
  max-width: 600px;
}

.compliance__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #0a0a12;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.compliance__subtitle {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-top: 16px;
}

.compliance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.compliance__card {
  background-color: #ffffff;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 18, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.compliance__card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compliance__badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background-color: rgba(53, 60, 126, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compliance__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a12;
  letter-spacing: -0.01em;
}

.compliance__card-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* Responsividade Compliance */
@media (max-width: 1200px) {
  .compliance {
    padding: 80px 80px;
  }
}

@media (max-width: 991px) {
  .compliance {
    padding: 80px 40px;
  }
  .compliance__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .compliance__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .compliance {
    padding: 60px 20px;
  }
  .compliance__card {
    padding: 24px;
  }
}


/* ── MODAL DE DETALHES DO SERVIÇO ── */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.service-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(8px);
}

.service-modal__wrapper {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  width: 90%;
  max-width: 960px;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  border: 1px solid rgba(10, 10, 18, 0.05);
  display: flex;
  flex-direction: column;
}

.service-modal__container {
  padding: 48px;
}

.service-modal__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: #0a0a12;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 10;
}

.service-modal__close:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.service-modal__header {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(10, 10, 18, 0.08);
  padding-bottom: 24px;
}

.service-modal__badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background-color: rgba(53, 60, 126, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.service-modal__title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: #0a0a12;
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.service-modal__lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 6px;
  line-height: 1.4;
}

.service-modal__body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.service-modal__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  color: #555555;
  line-height: 1.65;
}

.service-modal__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(10, 10, 18, 0.08);
  padding-top: 24px;
}

.service-modal__highlight-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-modal__highlight-item strong {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a12;
}

.service-modal__highlight-item span {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

.service-modal__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-modal__benefits-box {
  background-color: #F8F8FF;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 18, 0.03);
}

.service-modal__benefits-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a12;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-modal__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-modal__benefits-list li {
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  position: relative;
  padding-left: 24px;
}

.service-modal__benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #25d366;
  font-weight: 700;
  font-size: 14px;
}

.service-modal__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-modal__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Responsividade do Modal */
@media (max-width: 900px) {
  .service-modal__container {
    padding: 32px;
  }
  .service-modal__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-modal__close {
    top: 16px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .service-modal__container {
    padding: 24px;
  }
  .service-modal__wrapper {
    max-height: 90vh;
  }
}

/* Acessibilidade: reduz motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration:  0.01ms !important;
    animation-delay:     0ms   !important;
  }

  /* Hero: garante visibilidade imediata sem delay */
  .hero__logo, .hero__links, .hero__nav-cta,
  .hero__content > *, .hero__bottom {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
