/* Content List Shortcode */

.content-list-container {
  margin-top: -50px;
  z-index: 10;
  position: relative;
}

.content-type-section {
  margin-bottom: 0;
}

.content-type-tabs-wrapper {
  display: flex;
  gap: 0;
  border-radius: 8px;
  padding: 4px;
  overflow-x: auto;
  margin-left: 110px;
}

.content-type-tab-btn {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 20px !important;
  color: #ffffff50 !important;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.content-type-tab-btn:hover {
  color: #ecf0f1;
  background: rgba(255, 255, 255, 0.1);
}

.content-type-tab-btn--active {
  color: var(--e-global-color-accent) !important;
}

.content-type-tab-btn--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--e-global-color-accent);
}

.content-type-tab-btn__text {
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-type-tabs-wrapper {
    padding: 2px;
    margin-left: 24px;
  }
}

/* Content Sections */
.content-section {
  display: none;
}

.content-section--active {
  display: block;
}

/* Content Swiper */
.swiper.content-swiper {
  margin-top: 1rem;
}

/* Content Cards */
.content-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  left: 0;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease;
  font-family: var(--e-global-typography-text-font-family);
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.content-card__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.content-card__title {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.content-card__title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.content-card__title a:hover {
  color: #e67e22;
}

.content-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.content-card__meta span {
  display: flex;
  align-items: center;
}

.content-card__content p {
  margin: 0;
  color: #5a6c7d;
  line-height: 1.6;
}

.content-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em; /* 2 linhas * 1.4 line-height */
}

.content-card__link {
  color: var(--e-global-color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: 1rem;
  display: inline-block;
}

.content-card__link:hover {
  color: #e67e22;
}

/* Responsividade */
@media (max-width: 768px) {
  .content-type-tabs-wrapper {
    padding: 2px;
  }

  .content-type-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
    min-width: 100px;
  }
}

/* Mídias */
.media-list-container {
  margin-top: -50px;
  z-index: 10;
  position: relative;
}

.media-categories-section {
  margin-bottom: 0;
}

.media-categories-section .categories-tabs-wrapper {
  display: flex;
  gap: 0;
  border-radius: 8px;
  padding: 4px;
  overflow-x: auto;
  margin-left: 110px;
}

.media-categories-section .category-tab-btn {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 20px !important;
  color: #ffffff50 !important;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.media-categories-section .category-tab-btn:hover {
  color: #ecf0f1;
  background: rgba(255, 255, 255, 0.1);
}

.media-categories-section .active {
  color: var(--e-global-color-accent) !important;
}

.media-categories-section .active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--e-global-color-accent);
}

.media-categories-section .category-tab-btn__text {
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  .media-categories-section .categories-tabs-wrapper {
    padding: 2px;
    margin-left: 24px;
  }

  .media-categories-section .category-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
    min-width: 100px;
  }
}

/* Loading e estados de erro */
.loading,
.error,
.no-posts {
  text-align: center;
  padding: 2rem;
  color: #7f8c8d;
  font-style: italic;
}

.error {
  color: #e74c3c;
}

/* Melhorias no Swiper */
.swiper.media-swiper {
  margin-top: 1rem;
}

.media-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  left: 0;
  border-radius: 8px;
  padding: 1.5rem;
  min-height: 400px;
  height: 100%;
  transition: all 0.3s ease;
  font-family: var(--e-global-typography-text-font-family);
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.media-card__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.media-card__title {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--e-global-color-accent);
}

.media-card__title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.media-card__title a:hover {
  color: #e67e22;
}

.media-card--fotos {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  left: 0;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  position: relative;
}

.media-card--fotos .media-card__image {
  height: 250px;
}

.media-card--fotos .media-card__image-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.media-card--fotos .media-card__title {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.media-card__content p {
  margin: 0;
  color: #5a6c7d;
  line-height: 1.6;
}

.media-card--fotos .media-card__content p {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.media-card__excerpt {
  color: var(--e-global-color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em; /* 2 linhas * 1.4 line-height */
}

.media-card__link {
  color: var(--e-global-color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: 1rem;
  display: inline-block;
}

.media-card__link:hover {
  color: #e67e22;
}

.container-post {
  max-width: 1296px;
  margin: 0 auto;
  margin-top: 32px;
  font-family: var(--e-global-typography-text-font-family);
}

.container-post .breadcrumbs {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 300;
}

.container-post .breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.container-post .breadcrumbs a:hover {
  color: var(--e-global-color-accent);
}

.container-post .breadcrumbs .current-page {
  color: var(--e-global-color-accent);
}

.post-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container-post .post-header h1 {
  font-size: 49px;
  font-weight: 300;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .container-post .post-header h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

/* Cursos */

.shortcode-cursos-list.cursos-filtros {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
}

.shortcode-cursos-list .cursos-filtros__content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.shortcode-cursos-list .cursos-filtros__content__header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--e-global-color-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.shortcode-cursos-list .cursos-filtros__form {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  gap: 1rem;
  align-items: flex-end;
}

.shortcode-cursos-list .cursos-filtros__form .filtros-btn {
  background: var(--e-global-color-accent);
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  padding: 14px 24px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--e-global-color-accent);
  padding: 14px 0 !important;
}

.shortcode-cursos-list .cursos-filtros__form .filtros-btn:hover {
  background: #ffffff;
  color: var(--e-global-color-accent);
  border: 1px solid var(--e-global-color-accent);
}

.shortcode-cursos-list .cursos-filtros__form .limpar-filtros {
  background: none;
  color: var(--e-global-color-primary);
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0 !important;
}

.shortcode-cursos-list .cursos-filtros__content__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Garantir que todos os elementos de formulário tenham a mesma largura no grid */
.shortcode-cursos-list .cursos-filtros__content__form .form-input {
  width: 100%;
  min-width: 0; /* Permite que o elemento encolha se necessário */
}

.shortcode-cursos-list .cursos-filtros__content__form .form-input input,
.shortcode-cursos-list .cursos-filtros__content__form .form-input select,
.shortcode-cursos-list .cursos-filtros__content__form .form-input textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.shortcode-cursos-list .cursos-filtros__content__form .form-input.pesquisa-input {
  grid-column: span 2;
}

@media (max-width: 1280px) {
  .shortcode-cursos-list .cursos-filtros__content__form {
    grid-template-columns: repeat(3, 1fr);
  }

  .shortcode-cursos-list .cursos-filtros__form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .shortcode-cursos-list .cursos-filtros__content__form {
    grid-template-columns: repeat(2, 1fr);
  }

  .shortcode-cursos-list .cursos-filtros__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 610px) {
  .shortcode-cursos-list .cursos-filtros__content__form {
    grid-template-columns: 1fr;
  }

  .shortcode-cursos-list .cursos-filtros__content__form .form-input.pesquisa-input {
    grid-column: span 1;
  }
}

/* Hero Cursos Slider */
.hero-cursos-slider-container {
  width: 100%;
}

.hero-cursos-slider-container .swiper-slide {
  width: 80%;
  overflow: hidden;
}

.hero-cursos-container {
  padding-bottom: 12px;
}

.hero-cursos-container .swiper {
  padding-top: 64px !important;
  padding-bottom: 116px !important;
}

@media screen and (max-width: 550px) {
  .hero-cursos-container .swiper {
    padding-top: 48px !important;
    padding-bottom: 80px !important;
  }
}

.hero-cursos-slider {
  background-size: cover;
  background-position: center;
  background: transparent;
  border-radius: 24px;
  padding: 0 100px;
  height: auto;
}

.hero-cursos-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.08) 25%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.08) 75%,
    rgba(0, 0, 0, 0.15) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  z-index: -1;
}

.hero-cursos-slider .swiper-pagination {
  left: 10% !important;
  width: fit-content !important;
  bottom: 64px !important;
}

@media screen and (max-width: 550px) {
  .hero-cursos-slider .swiper-pagination {
    /* left: 10% !important; */
    bottom: 34px !important;
  }
}

.hero-cursos-slider-item {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  height: 560px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.hero-cursos-slider__content {
  position: relative;
  z-index: 1;
  padding: 24px 52px;
  padding-bottom: 64px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.swiper.hero-cursos-slider .swiper-buttons {
  right: 12% !important;
  bottom: 140px !important;
}


@media screen and (max-width: 1290px) {
  .hero-cursos-slider-item {
    height: 320px !important;
  }

  .swiper.hero-cursos-slider .swiper-buttons {
    right: 12% !important;
    bottom: 54px !important;
  }
}

@media screen and (max-width: 550px) {
  .hero-cursos-slider-item {
    background-image: url('https://unifahe.edu.br/wp-content/uploads/2025/09/segunda-licenciatura-mobile.webp') !important;
    height: 500px !important;
  }

  .hero-cursos-slider-item:nth-child(2) {
    background-image: url('https://unifahe.edu.br/wp-content/uploads/2025/09/mais-cursos-mobile.webp') !important;
  }

  .hero-cursos-slider-item:nth-child(3) {
    background-image: url('https://unifahe.edu.br/wp-content/uploads/2025/10/matriculas-facilitadas-mobile.webp') !important;
  }

  .swiper.hero-cursos-slider .swiper-buttons {
    right: 12% !important;
    bottom: 24px !important;
  }
}


.swiper.hero-cursos-slider .swiper-buttons .swiper-prev,
.swiper.hero-cursos-slider .swiper-buttons .swiper-next {
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
}

.hero-cursos-slider__content__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.hero-cursos-slider__content__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}

.hero-cursos-slider .swiper-slide-active .hero-cursos-slider__content__mask {
  background: rgba(0, 0, 0, 0.5);
}

.hero-cursos-slider__content__title img {
  width: 254px;
  height: auto;
  margin-bottom: 50px;
}

.hero-cursos-slider__content__title h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 35px;
  max-width: 475px;
}

.hero-cursos-slider__content .hero-cursos-slider__content__description__text {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  max-width: 430px;
}

.hero-cursos-slider__prices {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
}

.hero-cursos-slider__prices .preco-vista {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.hero-cursos-slider__prices .preco-vista span {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.hero-cursos-slider__prices .preco-parcelado {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.hero-cursos-slider__prices .preco-parcelado span {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}

.hero-cursos-slider__prices .hero-cursos-slider__link {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 100px;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
  margin-top: 42px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-cursos-slider__prices .hero-cursos-slider__link:hover {
  background: var(--e-global-color-accent);
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-cursos-slider__content {
    padding: 24px;
    padding-bottom: 48px;
    padding-top: 48px;
    justify-content: flex-start;
  }

  .hero-cursos-slider__content h2 {
    font-size: 32px;
    line-height: 32px;
  }

  .hero-cursos-slider__content .hero-cursos-slider__footer__descricao {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-cursos-slider__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .shortcode-cursos-list.cursos-filtros {
    padding: 24px;
  }

  .shortcode-cursos-list .cursos-filtros__content__form {
    grid-template-columns: 1fr;
  }

  .shortcode-cursos-list .cursos-filtros__form {
    grid-template-columns: 1fr;
  }

  /* .hero-cursos-slider .swiper-pagination {
    left: 25% !important;
  } */

  .swiper.hero-cursos-slider .swiper-buttons {
    right: 12% !important;
  }

  .hero-cursos-slider::before {
    width: 96%;
  }
}

/* Segunda Licenciatura Formulario */
.segunda-licenciatura-formulario {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  min-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.segunda-licenciatura-formulario__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.segunda-licenciatura-formulario__form__button {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--e-global-color-accent) !important;
  color: #ffffff !important;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segunda-licenciatura-formulario .message .alert {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .segunda-licenciatura-formulario {
    min-width: 100%;
  }
}

/* Diferenciais */
.diferenciais-container {
  padding: 20px 0;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  position: absolute !important;
	transform: translateY(-30%);
}

.diferenciais-container .swiper-slide {
  height: auto;
}

@media screen and (max-width: 1024px) {
  .diferenciais-container {
    position: relative !important;
    transform: translateY(0);
    max-width: 100%;
  }
}

.diferencial-item {
	background: #FFFFFF;
	padding: 32px 24px;
	border-radius: 16px;
  height: 100%;
}

.diferencial-image {
	width: 100%;
	height: 470px;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 32px;
}

.diferencial-image img {
	width: 100%;
  height: 100%;
  object-fit: cover; /* faz a imagem cobrir todo o container */
}

@media (max-width: 550px) {
  .diferencial-image {
    height: 290px;
  }
}

.diferencial-title {
	margin-bottom: 8px;
	font-size: 24px;
  font-weight: 500;
  color: var(--e-global-color-accent);
  margin-bottom: 16px;
}

.diferencial-text {
	font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 16px;
}

/* Benefícios */
.beneficios-container {
  padding: 20px 0;
}

.beneficios-container .swiper-slide {
  height: auto;
}

.beneficio-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  height: 100%;
}

.beneficio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.beneficio-header span {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  font-family: 'Space Grotesk', sans-serif;
}

.beneficio-item h4 {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  font-family: 'Space Grotesk', sans-serif;
}

/* Parceiros */
.parceiros-container {
  padding: 20px 0;
  padding-bottom: 60px;
}

.parceiros-container .swiper-slide {
  height: auto;
  transition: all 0.3s ease;
}

.parceiros-container .swiper-wrapper {
  align-items: center;
}

.parceiro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 20px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  height: 335px;
  width: 100%;
}

.parceiro-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, #05101D 100%);
}

.parceiros-container .swiper-slide.swiper-slide-active .parceiro-content {
  height: 396px;
}

.parceiro-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parceiro-desconto {
  background: #3E99DD;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  border-radius: 50px;
  padding: 8px 16px;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

.parceiros-container .swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: cursor !important;
}

.parceiros-container .swiper-pagination {
  left: 0% !important;
  width: fit-content;
  bottom: -20px;
  text-align: left !important;
}

.parceiros-container .swiper-buttons {
  position: absolute;
  right: 0% !important;
  bottom: -20px !important;
}

/* Postagens mais lidas */
.postagens-mais-recentes-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.postagens-mais-recentes-container .post-item {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
  padding-bottom: 16px;
  border-bottom: 1px solid #FFFFFF;
}

.postagens-mais-recentes-container .post-item:last-child {
  border-bottom: none;
}

.postagens-mais-recentes-container .post-item span {
  color: var(--e-global-color-accent);
  font-size: 20px;
  font-weight: 500;
}

.postagens-mais-recentes-container .post-item .post-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.postagens-mais-recentes-container .post-item .post-title h3 {
  font-size: 18px;
  font-weight: 600;
}

.postagens-mais-recentes-container .post-item:hover {
  color: var(--e-global-color-accent);
}

/* Mais postagens */

.mais-postagens-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.mais-postagens-container .swiper-slide {
  height: auto;
}

.mais-postagens-container .swiper-slide .post-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mais-postagens-container .swiper-slide .post-item .post-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.mais-postagens-container .swiper-slide .post-item .post-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
  color: #ffffff;
  z-index: 2;
}

/* Compartilhar postagem */
.compartilhar-postagem-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.compartilhar-postagem-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.compartilhar-postagem-buttons {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
}

.compartilhar-postagem-button {
  background: #FFFFFF;
  color: #000000;
  padding: 16px !important;
  font-size: 18px;
  border: none;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.compartilhar-postagem-button:hover {
  background: var(--e-global-color-accent);
  color: #FFFFFF;
  transform: scale(1.05);
}

.compartilhar .elementor-shortcode {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .compartilhar-postagem-buttons {
    flex-direction: row;
  }
}