/*
Theme Name: Unifahe
Description: Tema personalizado desenvolvido para o site Unifahe
Version: 1.0.0
Author: WayShip
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Text Domain: unifahe
*/

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

body {
  background: linear-gradient(
    150deg,
    #1a4e8b -10%,
    #183e69 400px,
    var(--e-global-color-primary) 850px,
    var(--e-global-color-primary) 100%
  );
  font-family: 'Inter', sans-serif;
}

ul, ol {
  padding-left: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
}

a {
  color: var(--e-global-color-accent);
}

.container {
  max-width: 1295px;
  width: 100%;
  margin: 0 auto;
}

.menu-shortcode .menu {
  display: flex;
  gap: 1rem;
}

.menu-shortcode .menu li {
  list-style: none;
}

.menu-shortcode .menu li a {
  text-decoration: none;
}

.glass-effect {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0.3) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-effect-blue {
  background: linear-gradient(
    135deg,
    rgba(52, 96, 145, 0.4) 0%,
    rgba(52, 96, 145, 0.15) 25%,
    rgba(52, 96, 145, 0) 50%,
    rgba(52, 96, 145, 0.15) 75%,
    rgba(52, 96, 145, 0.4) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(52, 96, 145, 0.3);
}

.glass-black {
  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);
}

.header-glass-black {
  background: linear-gradient(
    135deg,
    rgba(52, 96, 145, 0.4) 0%,
    rgba(52, 96, 145, 0.15) 25%,
    rgba(52, 96, 145, 0) 50%,
    rgba(52, 96, 145, 0.15) 75%,
    rgba(52, 96, 145, 0.4) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* border: 1px solid rgba(255, 255, 255, 0.15); */
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}

.header-glass-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Máscara escura com 40% de opacidade */
  pointer-events: none;
  z-index: 1;
}

.header-glass-black .e-con-inner {
  position: relative;
  z-index: 2;
  transition: all 0.2s;
}

.accordion .e-n-accordion-item-title {
  display: flex !important;
  justify-content: space-between !important;
}

.accordion .e-n-accordion-item {
  border-bottom: 1px solid #d9d9d933;
  padding-bottom: 24px;
}

.bg-rectangle {
  position: relative;
  z-index: 5;
}

.bg-rectangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3%;
  height: 100%;
  background: linear-gradient(120deg, #e74500, #a60701, #4f0400, #100000);
  border-radius: 0 20px 20px 0;
  z-index: -2;
}

.bg-rectangle::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3%;
  height: 100%;
  background: linear-gradient(120deg, #ffd294, #e74500, #a60701, #4f0400);
  border-radius: 20px 0 0 20px;
  z-index: -1;
}

.bg-rectangle-small {
  position: relative;
  z-index: 5;
}

.bg-rectangle-small::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3%;
  height: 70%;
  background: linear-gradient(120deg, #e74500, #a60701, #4f0400, #100000);
  border-radius: 0 20px 20px 0;
  z-index: -2;
}

.bg-rectangle-small::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3%;
  height: 70%;
  background: linear-gradient(120deg, #ffd294, #e74500, #a60701, #4f0400);
  border-radius: 20px 0 0 20px;
  z-index: -1;
}

.bg-rectangle-blue {
  position: relative;
  z-index: 5;
}

.bg-rectangle-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3%;
  height: 100%;
  background: linear-gradient(0deg, #071524, #0e2844, #153c67, #1c508a);
  border-radius: 0 20px 20px 0;
  z-index: -2;
}

.bg-rectangle-blue::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3%;
  height: 100%;
  background: linear-gradient(180deg, #071524, #0e2844, #153c67, #1c508a);
  border-radius: 20px 0 0 20px;
  z-index: -1;
}

.bg-rectangle-large {
  position: relative;
  z-index: 5;
}

.bg-rectangle-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18%;
  height: 200%;
  background: linear-gradient(120deg, #e74500, #a60701, #4f0400, #100000);
  border-radius: 0 20px 20px 0;
  z-index: -2;
}

.bg-rectangle-large-right {
  position: relative;
  z-index: 5;
}

.bg-rectangle-large-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 78%;
  width: 22%;
  height: 100%;
  background: linear-gradient(280deg, #e74500, #a60701, #4f0400, #100000);
  border-radius: 0;
  z-index: -2;
}

.container-link {
  border: 1px solid transparent;
  transition: border 0.3s ease;
}

.container-link:hover {
  border: 1px solid var(--e-global-color-accent);
}

.bg-history {
  background: linear-gradient(
    160deg,
    #ffd294,
    #e74500,
    #a60701,
    #4f0400,
    #100000
  );
}

.video-config {
  overflow: hidden;
  border: 1px solid #ffffff20;
  border-radius: 20px;
  box-shadow: 0 50px 30px 20px rgba(0, 0, 0, 0.4);
}

.image-box {
  display: relative;
  z-index: 5;
}

.image-box .image-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-box .image-02 {
  position: absolute;
  top: 100%;
  right: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-link {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
}

.blog-link:hover {
  color: var(--e-global-color-accent);
  text-decoration: underline;
}

.swiper.posts-list,
.swiper.media-swiper,
.swiper.content-swiper,
.swiper.hero-cursos-slider,
.swiper.cursos-swiper {
  padding: 20px 0;
  border-radius: 20px;
  padding-bottom: 60px;
  margin-top: 0 !important;
}

.swiper.posts-list .swiper-slide,
.swiper.media-swiper .swiper-slide,
.swiper.content-swiper .swiper-slide,
.swiper.hero-cursos-slider .swiper-slide,
.swiper.cursos-swiper .swiper-slide {
  height: auto;
}

.swiper.posts-list .swiper-slide .post-item,
.swiper.media-swiper .swiper-slide .media-card,
.swiper.content-swiper .swiper-slide .content-card,
.swiper.hero-cursos-slider .swiper-slide .hero-cursos-slider,
.swiper.cursos-swiper .swiper-slide .cursos-card,
.swiper.revistas-swiper .swiper-slide .revistas-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.swiper.posts-list .swiper-pagination,
.swiper.media-swiper .swiper-pagination,
.swiper.content-swiper .swiper-pagination,
.swiper.hero-cursos-slider .swiper-pagination,
.swiper.cursos-swiper .swiper-pagination,
.swiper.revistas-swiper .swiper-pagination {
  text-align: left;
  bottom: 24px;
}

.swiper.posts-list .swiper-pagination-bullet,
.swiper.media-swiper .swiper-pagination-bullet,
.swiper.content-swiper .swiper-pagination-bullet,
.swiper.hero-cursos-slider .swiper-pagination-bullet,
.swiper.cursos-swiper .swiper-pagination-bullet,
.swiper.revistas-swiper .swiper-pagination-bullet,
.swiper.parceiros-container .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 1;
  width: 23px;
  height: 7px;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.swiper.cursos-swiper .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.content-swiper .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.media-swiper .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: inherit !important;
  transform: inherit !important;
}

.swiper.posts-list .swiper-pagination-bullet-active,
.swiper.media-swiper .swiper-pagination-bullet-active,
.swiper.content-swiper .swiper-pagination-bullet-active,
.swiper.hero-cursos-slider .swiper-pagination-bullet-active,
.swiper.cursos-swiper .swiper-pagination-bullet-active,
.swiper.parceiros-container .swiper-pagination-bullet-active,
.swiper.revistas-swiper .swiper-pagination-bullet-active {
  background: var(--e-global-color-accent);
}

.swiper.posts-list .swiper-buttons,
.swiper.media-swiper .swiper-buttons,
.swiper.content-swiper .swiper-buttons,
.swiper.hero-cursos-slider .swiper-buttons,
.swiper.cursos-swiper .swiper-buttons,
.swiper.parceiros-container .swiper-buttons,
.swiper.revistas-swiper .swiper-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 20px;
  position: absolute;
  right: 0;
  bottom: 13px;
  z-index: 10;
}

.swiper.posts-list .swiper-next,
.swiper.posts-list .swiper-prev,
.swiper.media-swiper .swiper-next,
.swiper.media-swiper .swiper-prev,
.swiper.content-swiper .swiper-next,
.swiper.content-swiper .swiper-prev,
.swiper.hero-cursos-slider .swiper-next,
.swiper.hero-cursos-slider .swiper-prev,
.swiper.cursos-swiper .swiper-next,
.swiper.cursos-swiper .swiper-prev,
.swiper.parceiros-container .swiper-next,
.swiper.parceiros-container .swiper-prev,
.swiper.revistas-swiper .swiper-next,
.swiper.revistas-swiper .swiper-prev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--e-global-color-accent);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper.posts-list .swiper-next:hover,
.swiper.posts-list .swiper-prev:hover,
.swiper.media-swiper .swiper-next:hover,
.swiper.media-swiper .swiper-prev:hover,
.swiper.content-swiper .swiper-next:hover,
.swiper.content-swiper .swiper-prev:hover,
.swiper.hero-cursos-slider .swiper-next:hover,
.swiper.hero-cursos-slider .swiper-prev:hover,
.swiper.cursos-swiper .swiper-next:hover,
.swiper.cursos-swiper .swiper-prev:hover,
.swiper.parceiros-container .swiper-next:hover,
.swiper.parceiros-container .swiper-prev:hover,
.swiper.revistas-swiper .swiper-next:hover,
.swiper.revistas-swiper .swiper-prev:hover {
  background: #ffffff;
  color: var(--e-global-color-accent);
  border: 1px solid var(--e-global-color-accent);
}

@media screen and (max-width: 550px) {
  .swiper.cursos-swiper {
    padding-top: 0;
  }
}

.link-breadcrumb {
  color: #ffffff;
  transition: all 0.2s;
}

.link.breadcrumb:hover {
  color: var(--e-global-color-accent) !important;
}

.depoimentos-container {
  padding: 20px 0;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  position: absolute !important;
	transform: translateY(-15%);
}

.depoimentos-container .swiper-slide {
  height: auto !important;
}

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

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

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


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

.depoimento-title {
	margin-bottom: 8px;
	font-size: 1.5rem;
}

.depoimento-curso {
	margin-bottom: 32px;
	font-size: 1.5rem;
}

.depoimento-text {
	font-size: 18px;
}

@media screen and (max-width: 550px) {
  .depoimento-image {
    height: 220px;
  }

  .depoimento-curso {
    font-size: 1.25rem;
  }

  .depoimento-text {
    font-size: 16px;
  }
}

/* Swiper */

.swiper-controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
  position: relative;
  z-index: 99;
}
.swiper-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
}
.swiper-button {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0 !important;
  margin: 0;
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 2rem;
  height: 2rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  stroke: var(--e-global-color-accent);
  z-index: 10;
  transition: all 0.2s ease;
}
.swiper-button:disabled {
  color: var(--detail-high-contrast);
}

.swiper-button svg {
  width: 24px;
  height: 24px;
  stroke: var(--e-global-color-accent);
  transition: all 0.2s ease;
}

.swiper-button:hover {
  background: var(--e-global-color-accent);
}

.swiper-button:hover svg {
  stroke: #ffffff;
}

.swiper-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: calc((2.6rem - 1.4rem) / 2 * -1);
}
.swiper-dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.swiper-dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: '';
}
.swiper-dot--selected:after {
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}

/* Sessão */

.titulo-sessao {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 48px;
}

button:disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

button:disabled:hover {
  background: var(--e-global-color-accent);
  color: #ffffff;
  border: 1px solid var(--e-global-color-accent);
}

.loading {
  border-left: 5px solid var(--e-global-color-accent);
  border-top: 5px solid var(--e-global-color-accent);
  border-right: 5px solid var(--e-global-color-accent);
  border-bottom: 5px solid transparent;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 30px;
}

.button-loading {
  border-left: 4px solid #d1d1d1;
  border-top: 4px solid #d1d1d1;
  border-right: 4px solid #d1d1d1;
  border-bottom: 4px solid transparent;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

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

.alert {
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}

.alert-success {
  background: #CCF2CF;
  color: #077E07;
  border: 1px solid #71b371b3;
}

.alert-error {
  background: #F9D9D7;
  color: #A25C58;
  border: 1px solid #a25c58b3;
}

.mobile-menu {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}
.mobile-menu .content {
  background: #EEEFEF;
  max-width: 250px;
  padding: 40px 20px;
  position: relative;
  height: 100%;
  animation: openMobileMenu 0.6s cubic-bezier(.58,.07,.45,1.01);
}
.mobile-menu .content.close {
  left: -360px;
  animation: closeMobileMenu 0.6s cubic-bezier(.58,.07,.45,1.01);
}
@keyframes openMobileMenu {
  from{left: -350px}
  to{left: 0;}
}
@keyframes closeMobileMenu {
  from{left: 0px}
  to{left: -350px;}
}
.mobile-menu .content .close {
  color: var(--e-global-color-primary);
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
}
.mobile-menu .menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-menu .menu li {
  margin-bottom: 10px;
}
.mobile-menu .menu li a {
  color: #414042;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}
.mobile-menu .menu li.current_page_item a {
  color: var(--e-global-color-primary);
}
.mobile-menu .menu ul li a:hover {
  color: var(--e-global-color-primary);
}
.mobile-menu .social {
  margin-top: 30px;
  padding: 0 10px;
}
.mobile-menu .social a {
  color: var(--e-global-color-primary);
  margin-right: 15px;
}
.mobile-menu .area-aluno {
  background: var(--e-global-color-accent);
  border: 1px solid var(--e-global-color-accent);
  padding: 10px 20px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  width: fit-content;
}
.mobile-menu .area-aluno:hover {
  background: #ffffff;
  color: var(--e-global-color-accent);
  border: 1px solid var(--e-global-color-accent);
}

#masthead {
  position: sticky !important;
  -webkit-position: sticky !important;
  -moz-position: sticky !important;
  -ms-position: sticky !important;
  -o-position: sticky !important;
  top: 0;
  transition: all 0.2s;
}

.influencer {
  cursor: pointer;
}

.influencers-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  display: none;
}

.influencers-form.active {
  display: flex;
}

.influencers-form .content {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.influencers-form .content .influencers-form__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: #000000;
  position: absolute;
  width: fit-content;
  top: 15px;
  right: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influencers-form .content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.influencers-form .content .message .alert {
  margin-bottom: 20px;
}

.influencers-form .content .form-input {
  margin-bottom: 20px;
}

.influencers-form .content .submit-button {
  background: var(--e-global-color-accent);
  color: #ffffff;
  border: 1px solid var(--e-global-color-accent);
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-button {
  font-family: 'Space Grotesk', sans-serif !important;
}

.js-field-email {
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
}

.bricks-form__fieldset {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.rd-form {
  padding: 0 !important;
}

.cky-notice-btn-wrapper button {
  padding: 8px 16px !important;
}

.woot--bubble-holder button {
  padding: inherit !important;
}

.hamburguer-menu {
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hamburguer-menu .line {
  width: 20px;
  height: 2px;
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .menu-shortcode .menu {
    display: none;
  }
}