/* =============================================================
   home.css — Estilos exclusivos da página Home (front-page)
   Carregado APENAS na Home via enqueue.php (is_front_page()).
   NÃO incluir estilos globais ou reutilizáveis aqui.
   ============================================================= */

/* =============================================================
   Seção: Hero Home
   Layout ACF: hero_home
   ============================================================= */

.hero-home {
  width: 100%;
  background: #0a0a0b;
  overflow: hidden;
}

.hero-home__container {
  max-width: 1494px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
}

.hero-home__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-home__image {
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.hero-home__image img {
  width: 100%;
  max-width: clamp(380px, 42vw, 520px);
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-home__container {
    padding: 60px;
  }
}

/* Desktop: ativa 2 colunas e alinha conteúdo/imagem */
@media (min-width: 1280px) {
  .hero-home__container {
    padding: 68px 95px;
    align-items: center;
  }

  .hero-home__content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-home__image {
    justify-content: flex-end;
    overflow: visible;
  }
}

/* Desktop compacto (notebooks grandes / monitores pequenos): 1280px → 1438px */
@media (min-width: 1280px) and (max-width: 1438px) {
  .hero-home__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: center;
  }

  .hero-home__content {
    max-width: 520px;
  }

  .hero-home__image {
    display: flex;
    justify-content: flex-end;
  }

  .hero-home__image img {
    width: 100%;
    max-width: clamp(560px, 42vw, 680px);
    height: auto;
    object-fit: contain;
  }
}

/* Desktop premium completo: 1439px+ */
@media (min-width: 1439px) {
  .hero-home__container {
    grid-template-columns: minmax(620px, 1fr) minmax(560px, 730px);
    gap: 56px;
    align-items: center;
  }

  .hero-home__content {
    max-width: 720px;
  }

  .hero-home__image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hero-home__image img {
    width: 100%;
    max-width: clamp(620px, 40vw, 730px);
    height: auto;
    object-fit: contain;
  }
}

/* Tipografia Hero */

.hero-home-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: -1px;
  color: #e5e5e5;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-home-title {
    font-size: 48px;
    line-height: 54px;
  }
}

@media (min-width: 1024px) {
  .hero-home-title {
    font-size: 60px;
    line-height: 66px;
    letter-spacing: -1.5px;
    margin-bottom: 34px;
  }
}

.hero-home-description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 32px;
  max-width: 580px;
}

@media (min-width: 768px) {
  .hero-home-description {
    font-size: 18px;
    line-height: 29.25px;
  }
}

/* =============================================================
   Seção: Stats — Contadores animados da Hero Home
   ============================================================= */

.hero-home-stats {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 33px 0 0 0;
  align-items: flex-start;
  gap: 32px 48px;
  border-top: 1px solid #1e2939;
  width: 100%;
}

@media (max-width: 767px) {
  .hero-home-stats {
    gap: 24px;
    flex-direction: column;
    align-items: center;
  }

  .hero-home-stat-item {
    min-width: auto;
  }

  .hero-home-stat-value {
    font-size: 42px;
    line-height: 42px;
  }

  .hero-home-stat-label {
    white-space: normal;
  }
}

@media (min-width: 1280px) {
  .hero-home-stats {
    display: inline-flex;
    justify-content: flex-start;
    text-align: left;
    padding: 33px 120px 0 0;
    width: calc(100% + 57px);
    border-top: 1px solid #1e2939;
  }
}

.hero-home-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: max-content;
}

@media (min-width: 1280px) {
  .hero-home-stat-item {
    align-items: flex-start;
  }
}

.hero-home-stat-value {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
}

.hero-home-stat-label {
  display: block;
  white-space: nowrap;
  color: #6a7282;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* =============================================================
   Seção: Trusted Companies — Swiper.js
   Layout ACF: trusted_companies
   ============================================================= */

.trusted-companies {
  position: relative;
  width: 100%;
  background: #161322;
  border-top: 1px solid #1e2939;
  padding: 95px 0;
  overflow: hidden;
}

/* Título centralizado */
.trusted-companies__header {
  max-width: 1494px;
  margin: 0 auto;
  padding: 0 20px 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .trusted-companies__header {
    padding: 0 60px 40px;
  }
}

.trusted-companies__title {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
}

@media (max-width: 767px) {
  .trusted-companies {
    padding: 60px 0;
  }

  .trusted-companies__title {
    font-size: 24px;
    line-height: 36px;
  }
}

/* ── Swiper wrapper ────────────────────────────────────────── */

/* Fade nas bordas — visual premium */
.tc-swiper {
  width: 100%;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

/* Slide: altura automática, alinhamento vertical centrado */
.tc-swiper__slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important; /* slidesPerView: "auto" */
  height: auto;
}

/* Logo */
.tc-swiper__logo {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;

  filter: grayscale(100%) opacity(0.5);
  transition: filter 400ms ease-out;
}

.tc-swiper__slide:hover .tc-swiper__logo {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 767px) {
  .tc-swiper__logo {
    height: 44px;
    max-width: 130px;
  }

  .tc-swiper {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    );
  }
}

/* =============================================================
   Seção: Softwares de Cálculo Estrutural
   Layout ACF: home_products
   ============================================================= */

.home-products {
  width: 100%;
  background: #0a0a0b;
  padding: 80px 0;
}

/* Container centralizado */
.home-products__container {
  max-width: 1494px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .home-products__container {
    padding: 0 60px;
  }
}

@media (min-width: 1024px) {
  .home-products__container {
    padding: 0 95px;
  }
}

/* Cabeçalho da seção */
.home-products__header {
  text-align: center;
  margin-bottom: 64px;
}

/* Título */
.home-products__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  text-transform: uppercase;
  color: #e5e5e5;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .home-products__title {
    font-size: 40px;
    line-height: 46px;
  }
}

@media (min-width: 1024px) {
  .home-products__title {
    font-size: 48px;
    line-height: 48px;
  }
}

/* Subtítulo */
.home-products__subtitle {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .home-products__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Grid de cards */
.home-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Tablet: 2 colunas */
@media (min-width: 640px) {
  .home-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================================
   Card de Produto
   ============================================================= */

.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 40px;
  min-height: 286px;

  background: #1a1a1c;
  border: 1px solid #1e2939;
  border-radius: 14px;

  transition:
    border-color 300ms ease-out,
    box-shadow 300ms ease-out;
}

.product-card:hover {
  border-color: #2d3748;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

/* Ícone */
.product-card__icon {
  margin-bottom: 32px;
  flex-shrink: 0;
}

.product-card__icon img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Título do card */
.product-card__title {
  color: #e5e5e5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 12px;
}

/* Descrição */
.product-card__description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Link / Botão */
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  /* color definido via inline style (button_color do ACF) */

  transition:
    gap 250ms ease-out,
    opacity 250ms ease-out;
}

.product-card__link:hover {
  gap: 10px;
  opacity: 0.85;
}

.product-card__link-arrow {
  flex-shrink: 0;
  transition: transform 250ms ease-out;
}

.product-card__link:hover .product-card__link-arrow {
  transform: translateX(3px);
}

/* Responsividade mobile */
@media (max-width: 639px) {
  .home-products {
    padding: 60px 0;
  }

  .home-products__header {
    margin-bottom: 40px;
  }

  .product-card {
    padding: 28px 24px;
    min-height: auto;
  }

  .product-card__icon {
    margin-bottom: 24px;
  }
}

/* =============================================================
   Seção: Resultados que Comprovam Nossa Excelência
   Layout ACF: results_excellence
   ============================================================= */

.results-excellence {
  width: 100%;
  background: #0a0a0b;
  padding: 80px 0;
}

/* Container centralizado */
.results-excellence__container {
  max-width: 1494px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .results-excellence__container {
    padding: 0 60px;
  }
}

@media (min-width: 1024px) {
  .results-excellence__container {
    padding: 0 95px;
  }
}

/* ── Cabeçalho ─────────────────────────────────────────────── */

.results-excellence__header {
  text-align: center;
  margin-bottom: 48px;
}

.results-excellence__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #e5e5e5;
}

@media (max-width: 767px) {
  .results-excellence__title {
    font-size: 32px;
    line-height: 38px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .results-excellence__title {
    font-size: 40px;
    line-height: 44px;
  }
}

.results-excellence__subtitle {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Grid de cards ─────────────────────────────────────────── */

.results-excellence__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Tablet: 2 colunas */
@media (min-width: 640px) {
  .results-excellence__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 4 colunas */
@media (min-width: 1024px) {
  .results-excellence__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ── Card ──────────────────────────────────────────────────── */

.re-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 33px 24px;

  background: #1a1a1c;
  border: 1px solid rgba(1, 83, 83, 0);
  border-radius: 14px;

  transition:
    border-color 300ms ease-out,
    box-shadow 300ms ease-out;
}

.re-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── Ícone ─────────────────────────────────────────────────── */

.re-card__icon-wrap {
  display: flex;
  width: 56px;
  height: 56px;
  padding: 0 14px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #015353;
  box-shadow: 0 0 20px 0 rgba(71, 40, 118, 0.4);
  margin-bottom: 20px;
}

.re-card__icon {
  width: 100%;
  max-width: 28px;
  height: auto;
  object-fit: contain;
  display: block;
}

.re-card__icon--fallback {
  color: rgba(0, 186, 186, 0.8);
  width: 24px;
  height: 24px;
  max-width: 24px;
}

/* ── Métrica (valor + sufixo) ──────────────────────────────── */

.re-card__metric {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;

  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;

  background: linear-gradient(
    90deg,
    rgba(0, 186, 186, 0.76) 33.65%,
    rgba(1, 113, 113, 0.76) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.re-card__value {
  /* herda o background-clip do pai */
}

.re-card__suffix {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  /* herda o background-clip do pai */
}

/* ── Label ─────────────────────────────────────────────────── */

.re-card__label {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
}

/* ── Responsivo mobile ─────────────────────────────────────── */

@media (max-width: 639px) {
  .results-excellence {
    padding: 60px 0;
  }

  .results-excellence__header {
    margin-bottom: 36px;
  }

  .re-card__metric {
    font-size: 40px;
    line-height: 40px;
  }

  .re-card__suffix {
    font-size: 22px;
  }
}

/* =============================================================
   Seção: Por que a BIM WORKS?
   Layout ACF: why_bim_works
   ============================================================= */

.why-bim-works {
  background: #1b1b1d;
  padding-top: 80px;
  padding-bottom: 94px;
  width: 100%;
}

.why-bim-works__container {
  max-width: 1494px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1280px) {
  .why-bim-works__container {
    padding-left: 95px;
    padding-right: 95px;
  }
}

.why-bim-works__header {
  text-align: center;
  margin-bottom: 64px; /* Distância do subtítulo para os cards: 64px */
}

.why-bim-works__title {
  color: #e5e5e5;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.why-bim-works__subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  max-width: 640px;
  margin: 0 auto;
}

/* Cards superiores */
.why-bim-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 33px;
}

@media (min-width: 768px) {
  .why-bim-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: transparent;
  width: 100%;
}

.why-card__image {
  position: relative;
  width: 100%;
  height: 224px;
  overflow: hidden;
  flex-shrink: 0;
}

.why-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card__image-fallback {
  width: 100%;
  height: 100%;
  background: #111112;
}

/* Overlay roxo somente sobre a imagem */
.why-card__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(71, 40, 118, 0.4);
  z-index: 2;
}

/* Conteúdo do card abaixo da imagem */
.why-card__content {
  background: rgba(0, 0, 0, 0.62);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px; /* Espaçamento interno entre itens do card: 16px */
  text-align: left;
  flex-grow: 1;
}

/* Caixa do ícone */
.why-card__icon {
  display: flex;
  width: 56px;
  height: 56px;
  padding: 0 14px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #201334;
  box-shadow: 0 0 20px 0 rgba(0, 186, 186, 0.19);
  flex-shrink: 0;
}

.why-card__icon img {
  width: 100%;
  height: auto;
  max-height: 28px;
  object-fit: contain;
}

.why-card h3 {
  color: #e5e5e5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.why-card p {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
}

/* Meta com ícone do relógio */
.why-card__meta {
  display: flex;
  align-items: center;
  gap: 8px; /* Espaço entre ícone e texto: 8px */
}

.why-card__meta img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.why-card__meta span {
  color: #7c3aed;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

/* Bloco inferior */
.why-bim-works__benefits-block {
  margin-top: 64px; /* Distância dos cards para o bloco inferior: 64px */
  display: flex;
  min-height: 242px;
  padding: 49px 49px 49px 49px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid #6e24bc;
  background: linear-gradient(
    90deg,
    rgba(71, 40, 118, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 50%,
    rgba(71, 40, 118, 0.2) 100%
  );
}

@media (max-width: 767px) {
  .why-bim-works__benefits-block {
    padding: 32px 20px;
    gap: 24px;
  }
}

.wbw-benefits__title {
  color: #e5e5e5;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  width: 100%;
  margin: 0;
}

.wbw-benefits__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 32px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .wbw-benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wbw-benefits__list {
    grid-template-columns: repeat(2, 1fr); /* 3 itens por linha no desktop */
  }
}

.wbw-benefits__item {
  display: flex;
  align-items: center;
  gap: 12px; /* Espaço entre ícone e texto: 12px */
}

.wbw-benefits__item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.wbw-benefits__item-text {
  color: #d1d5dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

/* Responsividade mobile geral */
@media (max-width: 767px) {
  .why-bim-works {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .why-bim-works__title {
    font-size: 32px;
    line-height: 38px;
  }

  .why-bim-works__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .why-bim-works__header {
    margin-bottom: 40px;
  }
}

/* =============================================================
   Seção: Depoimentos (Testimonials)
   Layout ACF: home_testimonials
   ============================================================= */

.home-testimonials {
  background: #0a0a0b;
  padding-top: 43px;
  padding-bottom: 94px;
  width: 100%;
}

.home-testimonials__container {
  max-width: 1494px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1280px) {
  .home-testimonials__container {
    padding-left: 95px;
    padding-right: 95px;
  }
}

.home-testimonials__header {
  text-align: center;
  margin-bottom: 64px; /* Espaço entre descrição e cards: 64px */
}

/* Logo centralizada antes do título */
.home-testimonials__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.home-testimonials__logo img {
  width: 89.578px;
  height: 90px;
  box-sizing: content-box;
}

.home-testimonials__title {
  color: #e5e5e5;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.home-testimonials__subtitle {
  color: #99a1af;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  max-width: 640px;
  margin: 0 auto;
}

/* Grid de Depoimentos */
.home-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px; /* Gap de 24px */
}

@media (min-width: 768px) {
  .home-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-testimonials__grid {
    grid-template-columns: repeat(3, 1fr); /* 3 cards por linha no desktop */
  }
}

/* Card de Depoimento */
.testimonial-card {
  background: #1a1a1c;
  border: 1px solid #1e2939;
  border-radius: 16px; /* border-radius 16px */
  padding: 33px; /* padding interno 33px */
  display: flex;
  flex-direction: column;
  min-height: 380px;
  height: 100%;
  position: relative;
  transition:
    transform 300ms ease-out,
    border-color 300ms ease-out,
    box-shadow 300ms ease-out;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* Rating / Estrelas */
.testimonial-card__rating {
  display: flex;
  gap: 4px;
  color: rgba(255, 255, 255, 0.15); /* Estrelas inativas */
}

.star-icon--active {
  color: #ffcd00; /* Cor exata #7C3AED */
}

/* Aspas */
.testimonial-card__quote {
  flex-shrink: 0;
}

.testimonial-card__quote svg {
  display: block;
}

.testimonial-card__text {
  color: #d1d5dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
}

.testimonial-card__text p {
  margin: 0;
}

/* Rodapé / Autor */
.testimonial-card__footer {
  margin-top: 32px;
  border-top: 1px solid #364153; /* Linha separadora exata */
  padding-top: 24px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  color: #7c3aed; /* Cor roxa #7C3AED */
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-style: normal;
}

.testimonial-card__role {
  color: #6a7282; /* Cor cargo #6A7282 */
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

/* Responsividade Mobile */
@media (max-width: 767px) {
  .home-testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-testimonials__title {
    font-size: 32px;
    line-height: 38px;
  }

  .home-testimonials__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .home-testimonials__header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 32px 24px;
    min-height: auto;
  }
}

/* =============================================================
   Seção: Educação Profissional
   Layout ACF: educacao_profissional
   ============================================================= */

.educacao-profissional {
  width: 100%;
  background: #0a0a0b;
  padding: 80px 0;
  position: relative;
}

.educacao-profissional__container {
  max-width: 1494px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .educacao-profissional__container {
    padding: 0 60px;
  }
}

@media (min-width: 1024px) {
  .educacao-profissional__container {
    padding: 0 95px;
  }
}

/* Cabeçalho */
.educacao-profissional__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.educacao-profissional__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 16777200px;
  background: #472876;
  margin-bottom: 24px;
}

.educacao-profissional__tag-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.educacao-profissional__tag-text {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
}

.educacao-profissional__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #e5e5e5;
  max-width: 800px;
}

.educacao-profissional__description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  max-width: 640px;
  margin: 0 auto;
}

/* Grid de Cards */
.educacao-profissional__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 71.5px;
}

/* Notebooks intermediários: 2 cards por linha */
@media (min-width: 1024px) and (max-width: 1439px) {
  .educacao-profissional__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card Individual */
.ep-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #1a1a1c;
  border: 1px solid #1e2939;
  border-radius: 14px;
  padding: 25px;
  transition:
    border-color 300ms ease-out,
    box-shadow 300ms ease-out;
}

.ep-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ep-card__icon-box {
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(71, 40, 118, 0.13);
  box-shadow: 0 0 20px 0 rgba(71, 40, 118, 0.19);
  margin-bottom: 24px;
}

.ep-card__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.ep-card__title {
  color: #e5e5e5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 12px;
}

.ep-card__description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Métrica */
.ep-card__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  width: 100%;
}

.ep-card__number-wrap {
  display: flex;
  align-items: baseline;
  padding-top: 17px;
  border-top: 1px solid #1e2939;
  width: 100%;
}

.ep-card__number {
  font-family: "Space Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}

.ep-card__suffix {
  font-family: "Space Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}

.ep-card__metric-label {
  color: #6a7282;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
}

/* Bloco Inferior */
.educacao-profissional__bottom-block {
  position: relative;
  margin-top: 72px;
  border-radius: 24px;
  border: 1px solid rgba(71, 40, 118, 0.3);
  background: linear-gradient(
    90deg,
    rgba(71, 40, 118, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 50%,
    rgba(71, 40, 118, 0.2) 100%
  );
  padding: 48px;
}

.educacao-profissional__bottom-block::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1118px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(124, 58, 237, 0.9) 30%,
    rgba(124, 58, 237, 0.9) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.ep-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* Notebooks intermediários: empilhar em coluna */
@media (min-width: 1024px) and (max-width: 1279px) {
  .ep-bottom-grid {
    grid-template-columns: 1fr;
  }
}

/* Telas grandes: layout lado a lado */
@media (min-width: 1280px) {
  .ep-bottom-grid {
    grid-template-columns: 1fr 535px;
    align-items: center;
  }
}

.ep-bottom-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.ep-bottom-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 16777200px;
  background: #472876;
  margin-bottom: 16px;
}

.ep-bottom-tag-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.ep-bottom-tag-text {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;
}

.ep-bottom-title {
  color: #e5e5e5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 16px;
}

.ep-bottom-description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 32px;
}

.ep-bottom-button-wrap .btn-primary {
  margin-bottom: 0;
}

.ep-bottom-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .ep-bottom-right {
    justify-content: flex-start;
  }
}

.ep-bottom-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 32px;
}

.ep-bottom-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ep-bottom-item-icon-box {
  display: flex;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16777200px;
  background: #472876;
}

.ep-bottom-item-icon-box img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.ep-bottom-item-text {
  color: #d1d5dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

/* Card Lateral */
.ep-bottom-card {
  display: flex;
  width: 535px;
  height: auto;
  min-height: unset;
  padding: 33px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid #1e2939;
  background: #0a0a0b;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.ep-bottom-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #e5e5e5;
  margin: 0;
}

.ep-bottom-card__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.ep-bottom-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 65px;
  padding: 18px 0;
  align-self: stretch;
  border-bottom: 1px solid #1e2939;
}

.ep-bottom-card__item:last-child {
  border-bottom: none;
}

.ep-bottom-card__item-icon-box {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(71, 40, 118, 0.2);
}

.ep-bottom-card__item-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.ep-bottom-card__item-text {
  color: #d1d5dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

/* Responsividade */

@media (max-width: 1023px) {
  .educacao-profissional {
    padding: 60px 0;
  }

  .educacao-profissional__header {
    margin-bottom: 40px;
  }

  .educacao-profissional__title {
    font-size: 32px;
    line-height: 38px;
  }

  .educacao-profissional__description {
    font-size: 16px;
    line-height: 26px;
  }

  .educacao-profissional__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .educacao-profissional__bottom-block {
    margin-top: 48px;
    padding: 32px;
  }

  .ep-bottom-card {
    width: 100%;
    max-width: 535px;
    height: auto;
    padding-bottom: 24px;
  }

  .ep-bottom-title {
    font-size: 26px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .educacao-profissional__title {
    font-size: 28px;
    line-height: 34px;
  }

  .educacao-profissional__grid {
    grid-template-columns: 1fr;
  }

  .educacao-profissional__bottom-block {
    padding: 32px 24px;
  }

  .ep-card {
    padding: 20px;
  }
}

/* =============================================================
   Botão Secundário Reutilizável
   ============================================================= */

.btn-secondary {
  display: inline-flex;
  padding: 14px 26px;
  justify-content: center;
  align-items: center;
  gap: 7.078px;
  border-radius: 10px;
  border: 2px solid #7c3aed;
  background: transparent;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.btn-secondary:hover {
  background: #7c3aed;
  color: #ffffff;
}

.btn-secondary:hover img {
  transform: translateX(4px);
}

/* =============================================================
   Seção: Artigos
   Layout ACF: artigos
   ============================================================= */

.home-artigos {
  width: 100%;
  background: #1a1a1c;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-artigos__container {
  max-width: 1494px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .home-artigos__container {
    padding: 0 60px;
  }
}

@media (min-width: 1024px) {
  .home-artigos__container {
    padding: 0 95px;
  }
}

/* Cabeçalho */
.home-artigos__header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48.5px;
  width: 100%;
}

@media (min-width: 768px) {
  .home-artigos__header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.home-artigos__header-content {
  max-width: 720px;
}

.home-artigos__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.home-artigos__description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  margin: 0;
}

.home-artigos__header-action {
  flex-shrink: 0;
}

/* Custom Articles Carousel (Sem Swiper) */
.articles-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.articles-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 34px;
}

.articles-carousel__slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .articles-carousel__slide {
    flex: 0 0 calc((100% - 34px) / 2);
  }
}

@media (min-width: 1024px) {
  .articles-carousel__slide {
    flex: 0 0 calc((100% - (2 * 34px)) / 3);
  }
}

/* Static Grid (Até 3 posts) */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: 100%;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.articles-grid__item {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Card Geral */
.article-card {
  display: flex;
  width: 100%;
  max-width: 384px;
  height: 402.5px;
  padding: 1px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid #1e2939;
  background: #0a0a0b;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.article-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Imagem do Card */
.article-card__image-container {
  width: 100%;
  height: 224px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.article-card__image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(71, 40, 118, 0.4) 0%,
    rgba(90, 51, 146, 0.4) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card__image {
  transform: scale(1.05);
}

/* Tag da categoria */
.article-card__category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  padding: 4px 11.219px 4px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16777200px;
  background: linear-gradient(
    90deg,
    #472876 0%,
    #4a2a7a 14.29%,
    #4c2b7e 28.57%,
    #4f2d82 42.86%,
    #522e86 57.14%,
    #54308a 71.43%,
    #57318e 85.71%,
    #5a3392 100%
  );
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

/* Conteúdo inferior do card */
.article-card__content {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  background: #0a0a0b;
  width: 100%;
  height: calc(402.5px - 224px - 2px);
  box-sizing: border-box;
}

.article-card__date-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.article-card__date-wrap img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.article-card__date {
  color: #6a7282;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

.article-card__title {
  margin: 0 0 auto 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-card__title a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-card__title a:hover {
  color: #7c3aed;
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: color 0.3s ease;
}

.article-card__link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.article-card__link:hover {
  color: #9061f9;
}

.article-card__link:hover img {
  transform: translateX(4px);
}

/* Navegação e Paginação Carousel (33px abaixo dos cards) */
.articles-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 33px;
  width: 100%;
}

.articles-carousel__btn {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 13px 13px 1px 13px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #7c3aed;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.articles-carousel__btn img {
  /* height: 12px; */
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.articles-carousel__btn:hover {
  background: #7c3aed;
}

.articles-carousel__btn:hover img {
  filter: brightness(0) invert(1);
}

.articles-carousel__btn:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

/* Dots da paginação */
.articles-carousel__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.articles-carousel__dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #4a5565;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.articles-carousel__dot--active {
  height: 12px;
  flex: 1 0 0;
  width: 32px;
  max-width: 32px;
  border-radius: 999px;
  background: #7c3aed;
}

/* Responsividade */
@media (max-width: 1023px) {
  .home-artigos {
    padding: 60px 0;
  }

  .home-artigos__title {
    font-size: 32px;
    line-height: 38px;
  }

  .home-artigos__description {
    font-size: 16px;
    line-height: 26px;
  }

  .home-artigos__header-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .home-artigos__title {
    font-size: 28px;
    line-height: 34px;
  }

  .article-card {
    max-width: 100%;
  }
}

/* =============================================================
   Seção: CTA Home (Pronto para Transformar)
   Layout ACF: cta_home
   ============================================================= */

.home-cta {
  width: 100%;
  background: #0a0a0b;
  padding: 100px 0;
  position: relative;
}

.home-cta__container {
  max-width: 1494px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .home-cta__container {
    padding: 0 60px;
  }
}

@media (min-width: 1024px) {
  .home-cta__container {
    padding: 0 95px;
  }
}

.home-cta__card {
  display: flex;
  width: 960px;
  min-height: 473.188px;
  padding: 65px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid rgba(71, 40, 118, 0.3);
  background: linear-gradient(
    90deg,
    rgba(71, 40, 118, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 50%,
    rgba(71, 40, 118, 0.2) 100%
  );
  box-sizing: border-box;
  margin: 0 auto;
}

.home-cta__title {
  color: #ffffff;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  max-width: 648px;
}

/* Lista de itens */
.home-cta__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

@media (min-width: 768px) {
  .home-cta__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
  }
}

.home-cta__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-cta__item-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.home-cta__item-text {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

/* Ações e Botão */
.home-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-cta__action .btn-primary,
.home-cta__action .btn-primary--cta {
  margin-bottom: 0;
}

.btn-primary--cta {
  display: inline-flex;
  padding: 16.5px 40px 15.5px 40px;
  justify-content: center;
  align-items: center;
  gap: 7.656px;
  border-radius: 10px;
  background: linear-gradient(270deg, #0a0a0b 0%, #472876 75%, #7c3aed 100%);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out,
    opacity 300ms ease-out;
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 155.556% */
}

.btn-primary--cta svg {
  height: 20px;
  width: auto;
  transition: transform 300ms ease-out;
}

.btn-primary--cta:hover {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow:
    0 14px 24px -4px rgba(124, 58, 237, 0.22),
    0 8px 12px -6px rgba(124, 58, 237, 0.16);
}

.btn-primary--cta:hover svg {
  transform: translateX(3px);
}

.home-cta__footer-text {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
  .home-cta__card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home-cta {
    padding: 60px 0;
  }

  .home-cta__card {
    padding: 40px 24px;
    height: auto;
    min-height: unset;
  }

  .home-cta__title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .home-cta__list {
    margin-bottom: 30px;
  }
}
