:root {
  --TitleColor: #454545;
  --DescriptionColor: #616060;
  --BackgroundColor: #fbfbfb;
  --WhiteColor: #FFF;
  --YellowColor: #FFCD00;

  --TitleSize: cal(var(--DefaultSizeTypography) * 1.618);
  --DescriptionSize: var(--DefaultSizeTypography);

  --NavbarHeight: 5rem;
  --NavbarHeightMobile: 4rem;
}


ul {
  padding-left: 28px;
  color: var(--DescriptionColor);
}

.TITLE {
  font-size: 26px;
  font-weight: 700;
  color: var(--TitleColor);
}

.DESCRIPTION {
  font-size: 16px;
  font-weight: 400;
  font-size: normal;
  color: var(--DescriptionColor);
}

.descriptions {
  margin-top: 7rem !important;
  margin-bottom: 4rem !important;
}
.descriptions .header {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header .alter_title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  color: #68abe5;
}



.description_buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;
}
.accept_cookies_button, .return_button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  margin: 0;
  padding: 8px 16px;
  background-color: #68abe5;
  transition: .1s;
} .accept_cookies_button {
  margin: 0 12px 0 0;
} .accept_cookies_button:hover {
  cursor: pointer;
  background-color: #5595cd;
}
.return_button {
  cursor: pointer;
  background-color: #eaeaea;
} .return_button:hover {
  background-color: #dfdfdf;
} .return_button a {
  color: #a8a8a8;
  text-decoration: none;
}



.main_title:after {
  content:'';
  position: absolute;
  background-color: #45454520;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}


.politica_de_privacidade, .termos_de_uso { margin-top: 12px; }


.policy_wrapper, .termos_wrapper { margin: 30px 0 40px 0 !important; }

.policy_wrapper h4, .termos_wrapper h4 {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  color: var(--TitleColor);
}

.policy_wrapper .table_title {
  font-size: 14px;
  font-weight: bold;
  margin: 25px 0 12px 0;
  color: var(--TitleColor);
}

.homePageMobileButton{
  color: #fff;
}


.depoimentos_{
  display: grid;
  grid-template-columns: 1fr 1fr;
  

  width: 100%;
}

@media (max-width: 770px){
  .depoimentos_{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .depoimento_{
    width: 90% !important;
    margin: 25px 0;
  }

  .icon_depoimento{
    font-size: 1rem;
  }
}

.depoimento_{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  margin: 25px;
  background-color: #efefef;
  border-radius: 10px;
}

.depoimento_texto{
  text-align: center;

  margin: 15px;
}

.icon_depoimento{
  font-size: 2rem;
  color: #68ABE5;
}

.detalhes_{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 15px;
}

.detalhes_ .nome{
  font-size: 1rem;
  font-weight: bold;
}

.detalhes_ .nivel{
  font-size: 0.8rem;
}

.depoimentos_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.depoimento_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video_wrapper {
    width: 100%;
    aspect-ratio: 5 / 9; /* mantém proporção correta */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.video_depoimento {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detalhes_ {
    margin-top: 10px;
    text-align: center;
}

.detalhes_ .nome {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.detalhes_ .nivel {
    font-size: 0.9rem;
    color: #666;
}

/* Responsividade: tablet */
@media (max-width: 992px) {
    .depoimentos_grid {
        grid-template-columns: repeat(2, 1fr); /* 2 vídeos lado a lado */
    }
}

/* Responsividade: celular */
@media (max-width: 600px) {
    .depoimentos_grid {
        grid-template-columns: 1fr; /* apenas 1 vídeo por linha */
    }
}
