/* =============================== */
/* WRAPPER EXTERNO DO CARD         */
/* =============================== */

.cards__card__img-wrapper {
  background: transparent;
}

/* =============================== */
/* CONTEÚDO INTERNO DO CARD        */
/* =============================== */

.card-inner {
  border-radius: inherit;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden; /* garante o radius na imagem */
}

/* =============================== */
/* LAYOUT DO CARD                  */
/* =============================== */

.card {
  align-content: flex-start;
}

.cards__card__img {
  padding: 0 !important;
  margin-top: 4px;
  margin-bottom: 4px;  
  background: transparent !important;
}

.cards__card__img a {
  display: inline-block;
}

/* =============================== */
/* IMAGEM                          */
/* =============================== */

.card__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  object-fit: cover;
}

/* =============================== */
/* TEXTO / CONTEÚDO                */
/* =============================== */

.card__text {
  width: 100%;
  padding: 20px;
  padding-top: 8px;
}

h4.card__title {
  margin: 0 0 10px 0;
}

.card__text p {
  margin-bottom: 10px;
}

/* =============================== */
/* ÍCONE                           */
/* =============================== */

.card__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto 0;
  padding: 0 20px;
}

.card__icon-wrapper i {
  line-height: 1;
  display: inline-block;
}

.icon-shape--circle { border-radius: 50%; }
.icon-shape--square { border-radius: 4px; }
.icon-shape--rounded { border-radius: 12px; }
.icon-shape--none { border-radius: 0; }

/* =============================== */
/* CTA                             */
/* =============================== */

.card__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 0.95em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: 12px;
  margin-bottom: 16px;
}

.card__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.card__cta--solid {
  border-color: transparent;
}

.card__cta--outline {
  background-color: transparent !important;
  border-color: currentColor;
}

.card__cta--text {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 12px;
  margin-bottom: 12px;
  color: inherit
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card__cta--text:hover {
  opacity: 0.7;
  transform: none;
}

.card__cta-button .cta-icon {
  margin: 0 4px;
  font-size: 1em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.card__cta-button .cta-text {
  margin: 0 4px; /* ajuste como preferir */
}

/* Remove sublinhado em todos os estados */
.card__cta-button,
.card__cta-button:hover,
.card__cta-button:focus,
.card__cta-button:active,
.card__cta--text,
.card__cta--text:hover,
.card__cta--text:focus,
.card__cta--text:active {
  text-decoration: none !important;
}

/* =============================== */
/* SWIPER                          */
/* =============================== */

.swiper-pagination-bullet { 
  margin: 0 2px;
}

.card__cta-wrapper {
  width: 100%;
  display: flex;
}

.card__cta-wrapper.align-left {
  justify-content: flex-start;
}

.card__cta-wrapper.align-center {
  justify-content: center;
}

.card__cta-wrapper.align-right {
  justify-content: flex-end;
}
