.corpo-servicos-home {
  position: relative;
  box-shadow: 2px 4px 20px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;

}



.corpo-servicos-home::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 1);
  transition: all .4s ease-in-out;
  background: linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsl(77deg 100% 64% / 0%) 100%);

  background: -moz-linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsl(77deg 100% 64% / 0%) 100%);
  opacity: 1;
  background: -webkit-linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsl(77deg 100% 64% / 0%) 100%);
  z-index: 1;

}

.corpo-servicos-home::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: all .4s ease-in-out;
  height: 100%;
  background: hsla(0, 0%, 0%, 1);
  background: linear-gradient(90deg, hsla(1, 77%, 39%, 1) 0%, hsl(77deg 100% 64% / 0%) 100%);
  background: -moz-linear-gradient(90deg, hsla(1, 77%, 39%, 1) 0%, hsl(77deg 100% 64% / 0%) 100%);
  background: -webkit-linear-gradient(90deg, hsla(1, 77%, 39%, 1) 0%, hsl(77deg 100% 64% / 0%) 100%);
  z-index: 0;
  opacity: 0;
}

.corpo-servicos-home:hover:after {

  opacity: 1;
}

.corpo-servicos-home:hover:before {

  opacity: 0;

}

.corpo-servicos-home h3 {
  border-bottom: 2px solid white;
  padding-block: 1rem;
  font-weight: 500;
  font-size: 1rem;
}

.text-servicos-home {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 16px;
  z-index: 9;
}

.text-servicos-home * {
  color: white;
}

.carousel-parceiros figure img {
  height: 55px;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: all .4s ease-in-out;
}

.carousel-parceiros figure img:hover {
  filter: grayscale(0%);
}

.container-abaixo-banner {
  position: relative;
}

.container-abaixo-banner::before {
  content: '';
  top: -38px;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url('<?= $url ?>imagens/imagem-abaixo-banner.webp');
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 0;
}


.btn-cta {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 10px;
  font-size: 14px;
  padding: 11px 60px 10px 15px;
  font-weight: 600;
  width: fit-content;
  transition: all 500ms;
  position: relative;

}

.btn-cta span {
  transition: all 1000ms;
}

.btn-cta:hover {
  outline: none;
  border: none;
  transition: all 1000ms;
}

.btn-cta:hover span {
  opacity: 0;
  transition: all 500ms;
}

.btn-cta::after {
  font-family: 'FontAwesome';
  content: '\f232';
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  background-color: white;
  color: var(--primary-color);
  font-weight: 200;
  padding: 3px 10px;
  border-radius: 10px;
  position: absolute;
  right: 3px;
  top: 3px;
  transition: all 1000ms;

}

.btn-cta:hover::after {
  transition: all 1000ms;
  width: 89%;
}



.form-contato {
  width: 100% !important;
}

.container-entre-contato {
  border-right: 2px solid var(--primary-color);
}

@media (max-width: 767.98px) {

  .container-entre-contato {
    border-right: none;
    border-bottom: 2px solid var(--primary-color);
  }
}

/* fim contato page */

.video-banner {
  position: absolute;
  z-index: -1;
  width: 100%;
  filter: brightness(0.5);
  height: var(--slider-height);
  transform: scale(1.5);
}

.sub-title {
  position: relative;
  width: max-content;
}

.sub-title::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.icone-aspectos img {
  filter: brightness(0) saturate(100%);
}

/* =============================== HEADER =============================== */

/* HEADER */
header {
  background-color: #fff;

  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

header .logo img {
  display: block;
  margin: 26px 0;
  width: 100%;
  max-width: 270px;
  object-fit: contain;
}

/* TOPO */
header .topo {
  background-color: white;
  padding: 8px 0;
  font-size: 13px;
  color: #fff;
  position: relative;
}

.topo::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  transform: translateX(407px);
  width: 6%;
  height: 100%;
  background-color: white;
  clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
  z-index: 1;
  /* transform: rotate(5deg); */
}

.topo::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 0;

}

header .topo :is(span, a) {
  position: relative;
  z-index: 9;
  font: 13px var(--primary-font);

  outline: transparent solid 1px;
  outline-offset: 5px;
  border-bottom: 1px solid transparent;
  transition: .3s;
}

header .topo a:hover {

  color: var(--secondary-color);
}

/* MENU */
header #menu {
  text-align: center;
  width: 100%;
  position: relative;
}

header #menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 8px;
  margin: 8px 0
}

header #menu li {
  position: relative;
  display: inline-block;
  margin: 0;
}

header #menu a {
  font-size: 14px;
  display: block;
  box-sizing: border-box;
  padding: 14px;
  text-align: center;
  color: var(--dark);
  border-bottom: 2px solid transparent;
  transition: .3s;
  text-transform: uppercase;
}

header #menu>ul>li:hover>a,
header #menu>ul>li>a.active-menu-topo {

  color: var(--primary-color);
}

/* SUB MENU */
header #menu .dropdown :is(.sub-menu, .sub-menu-info) {
  display: none;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 7;
  width: 230px;
  height: auto;
  background-color: var(--primary-color);
}

header #menu ul>li.dropdown:hover> :is(.sub-menu, .sub-menu-info) {
  display: block;
}

header #menu ul>li.dropdown>:where(.sub-menu, .sub-menu-info)>li.dropdown>:where(.sub-menu, .sub-menu-info) {
  display: none;
  top: 0;
  left: 100%;
}

header #menu>ul>li:nth-last-child(-n+3).dropdown> :is(.sub-menu, .sub-menu-info) {
  left: initial;
  right: 0;
}

header #menu>ul>li:nth-last-child(-n+3).dropdown> :is(.sub-menu, .sub-menu-info) :is(.sub-menu, .sub-menu-info) {
  left: initial;
  right: 100%;
}

header #menu ul>li.dropdown> :is(.sub-menu, .sub-menu-info)>li.dropdown:hover> :is(.sub-menu, .sub-menu-info) {
  display: block;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:first-of-type {
  padding-top: 12px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:last-of-type {
  padding-bottom: 12px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li a {
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 12px;
  text-align: left;
  text-decoration: none;
  color: #fff;
  border-bottom: 2px solid transparent;
}

header #menu .dropdown> :is(.sub-menu, .sub-menu-info)>li:hover>a,
header #menu .dropdown> :is(.sub-menu, .sub-menu-info)>li>a.active-menu-topo {
  border-bottom-color: #fff;
}

/* SUB MENU SCROLL */
header #menu .dropdown :is(.sub-menu, .sub-menu-info).sub-menu-scroll {
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

/* MENU DROPDOWN ARROWS */
header #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  content: "\f107";
  font-family: "FontAwesome";
  color: var(--grey);
  margin-left: 4px;
  font-size: 14px;
  transition: 0.3s;
}

header #menu>ul>li.dropdown:not([data-icon-menu])>a.active-menu-topo::after,
header #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
  color: var(--primary-color);
}

/* HEADER HOME */

header.header-home:not(.headerFixed) {
  position: relative;
  max-width: var(--window-width);
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

}

/*
header.header-home:not(.headerFixed) #menu a {
  color: #fff;
}

header.header-home:not(.headerFixed) #menu>ul>li:hover>a,
header.header-home:not(.headerFixed) #menu>ul>li>a.active-menu-topo {
  color: var(--primary-color);
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  color: #fff;
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
  color: var(--primary-color);
}

header.header-home:not(.headerFixed) .search input,
header.header-home:not(.headerFixed) .search input::placeholder,
header.header-home:not(.headerFixed) .search button {
  color: #FFF;
} */

/* SEARCH */
.search {
  position: relative;
}

.search input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  color: var(--grey);
  background-color: transparent;
  font: normal 12px/normal var(--primary-font);
}

.search input::placeholder {
  font: normal 14px/normal var(--primary-font);
  color: var(--grey);
}

.search button {
  border: none;
  outline: none;
  text-decoration: none;
  background-color: transparent;
  color: var(--grey);
  font-size: 18px;
  width: max-content;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.search--topo {
  margin: 8px 0
}

.search--topo button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: max-content;
}

.search button:hover {
  color: var(--dark);
}

.search .button-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-content {
  opacity: 0;
  transition: opacity .2s ease .2s;
}

.search-content.search-active {
  opacity: 1;
}

.search-content .no-results {
  margin: 0 0 32px 0;
  text-align: left;
  font-size: 18px;
}

.search-content ul {
  margin: 0;
}

.search-content ul li {
  margin: 0;
  list-style: none;
}

.search-content ul li a {
  float: left;
  appearance: button;
  background-color: var(--primary-color);
  background-image: none;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: #fff 4px 4px 0 0, var(--primary-color) 4px 4px 0 1px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 6px 6px 12px 6px;
  overflow: visible;
  padding: 12px 40px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  transition: .3s;
}

.search-content ul li a:focus {
  text-decoration: none;
}

.search-content ul li a:not([disabled]):active,
.search-content li a:not([disabled]):hover {
  box-shadow: unset;
  transform: translate(3px, 3px);
}


/* BREADCRUMB BASE */
.bread {
  padding: 14px 0;

}

.bread__title {
  margin: 0;
  color: #000;
  font-size: 1.4rem;
}

#breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  clear: both;
  margin: 0;
}

#breadcrumb * {
  -webkit-transition: .3s;
  transition: .3s;
}

#breadcrumb a {
  display: inline-flex;
  align-items: center;
  height: fit-content;
}

#breadcrumb a:hover * {
  color: var(--primary-color);
}

#breadcrumb .bread__column {
  display: inline-flex;
  align-items: center;
}

#breadcrumb .bread__column,
#breadcrumb .bread__column a {
  font: 12px var(--primary-font);
  color: #000;
  text-transform: uppercase;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:first-child:before {
  content: "\e3af";
  font-family: "FontAwesome";
  font-size: 12px;
  margin-right: 4px;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:not(:last-child)::after {
  content: "❱";
  margin-left: 6px;
  font-size: 14px;
}


/* SMALL DEVICE */
@media (max-width: 767.98px) {

  #breadcrumb .bread__column,
  #breadcrumb .bread__column a {
    display: flex;
    max-width: 82px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

}


/* ASIDE CONFIG*/

aside nav {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

aside nav ul {
  margin: 0
}

aside nav>ul>li>ul {
  display: none;
}

aside li {
  margin: 6px 0 0 0;
  list-style: none;
}

aside li a {
  font-size: 12px;
  text-transform: uppercase;
}

aside nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold !important;
}


/* SMALL DEVICE */
@media (max-width: 767.98px) {
  aside {
    width: 100%;
    float: none;
    margin: 16px 0;
  }

}


/* ASIDE COMPONENTS */
.aside .aside__btn,
.aside .aside__menu h2,
.aside .aside__contato h2 {
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 12px;
  display: block;
  transition: .3s;
  color: #fff;
  border-radius: var(--border-radius);
}

.aside .aside__btn {
  color: #fff;
  text-align: center;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
}

.aside .aside__btn:hover {
  background-color: var(--dark);
}

.aside .aside__menu h2 a {
  color: #fff;
}

.aside .aside__menu nav ul li {
  border-left: 2px solid var(--primary-color);
  margin: 12px 0;
  padding: 6px;
  transition: .2s;
}

.aside .aside__menu nav ul li a {
  color: var(--dark);
  font-size: 12px;
  border-left: 0;
  padding: 0;
  transition: .3s;
}

.aside .aside__menu nav ul li:hover {
  border-left-color: var(--dark);
  background-color: #f0f0f0;
}

.aside .aside__menu nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold;
}

.aside .aside__contato h2 {
  text-align: center;
}

.aside .aside__contato a {
  color: var(--dark);
  text-align: center;
  display: block;
  margin: 12px;
  transition: all .2s ease;
}

.aside .aside__contato a:hover {
  color: #5492c3;
}

.aside .fb-page {
  display: block;
  margin-bottom: 24px;
}


/* FORMULARIO / CONTATO PAGE */
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}

.form *:focus,
.form *:active {
  outline: unset;
}

.form :is(input, textarea, select) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  margin: 8px 0;
  outline: transparent solid 2px;
  outline-offset: 1px;
  font: 12px/normal var(--primary-font);
  background-color: #fff;
  color: var(--grey);
  -webkit-transition: .3s;
  transition: .3s;
}

.form :is(input, textarea, select):hover,
.form :is(input, textarea, select):active,
.form :is(input, textarea, select):focus {
  outline: currentColor solid 2px;
}

.form label,
.form :is(input, textarea)::placeholder {
  font: 12px/normal var(--primary-font);
  color: var(--grey);
}

.form textarea {
  height: 60px;
}

.form [type="submit"] {
  max-width: 280px;
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: var(--primary-color);
  cursor: pointer;
  outline: transparent solid 2px;
  outline-offset: 1px;
  border: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.form [type="submit"]:active,
.form [type="submit"]:focus,
.form [type="submit"]:hover {
  outline: var(--primary-color) solid 2px;
}

.form__obrigatory {
  display: block;
  margin: 16px 0;
  font-size: 12px;
  color: var(--grey);
}

.contato .address {
  font-style: normal;
}

.contato .address :is(span, a) {
  display: block;
  font: 13px/22px var(--primary-font);
  color: var(--grey);
}

.contato .address a:hover {
  color: var(--primary-color);
}

.contato .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px
}

.contato .social .social__icons {
  color: var(--dark);
  font-size: 18px;
  margin-top: 8px;
  transition: .3s;
}

.contato .social .social__icons:hover {
  color: var(--primary-color);
}

.contato .mapa {
  width: 100%;
  height: 258px;
}

.g-recaptcha {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .form textarea {
    height: auto;
  }
}


/* FOOTER */

.logo-footer {
  max-width: 300px;
  margin: 0 auto;
}

.logo-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  background-color: #F1F1F1;
}

footer .footer__title {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: var(--primary-color);
  text-transform: uppercase;
}

footer .footer__link {
  font-size: 12px;
  display: block;
  margin: 0 0 8px 0;
  color: #000;
  outline: transparent solid 1px;
  outline-offset: 5px;
  transition: .3s;
}



footer .footer__menu nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
}

footer .footer__menu nav ul li {
  display: inline;
  margin: 0;
  color: #000;
}

footer .footer__menu nav ul li a {
  color: #000;
  font-size: 14px;

  transition: .3s;
}

footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

footer .social .social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius);
  font-size: 18px;
  background-color: var(--dark);
  color: #000;
  text-align: center;
  transition: .3s;
}

footer .social .social__icons:hover {
  background: #fff;
  color: var(--primary-color);
}


/* COPYRIGHT FOOTER */
footer .footer__copyright {
  position: relative;
  background-color: var(--primary-color);
}

footer .footer__copyright::before {
  content: '';
  position: absolute;
  top: 0;
  right: 407px;
  width: 5%;
  height: 100%;
  background-color: #F1F1F1;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;

}

footer .footer__copyright::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: #F1F1F1;
  z-index: 0;
}

footer .footer__copyright .copyright__text {
  color: #fff;
  font-size: 10px;
}

footer .footer__copyright .copyright__selos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
  z-index: 9;
}

footer .footer__copyright .copyright__selos a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

footer .footer__copyright .copyright__selos i {
  font-size: 14px;
  color: #000;
}

footer .footer__copyright .copyright__selos strong {

  color: #000;
  padding: 1px 6px;
  font-size: 8px
}

footer .footer__copyright .copyright__selos img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

footer .footer__copyright .row {
  margin-left: -4px;
  margin-right: -4px;
}

footer .footer__copyright [class*=col-] {
  padding: 4px;
}


/* SMALL DEVICE */
@media (max-width: 767.98px) {

  footer * {
    text-align: center;
  }

  footer .footer__link {
    margin-left: auto;
    margin-right: auto;
  }

  footer .footer__menu nav ul {
    flex-direction: column;
    width: 100%;
  }

  footer .footer__menu nav ul li {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
  }

  footer .footer__menu nav ul li a {
    width: 100%;
    border: 1px solid var(--light);
  }

  footer .social,
  footer .footer__copyright .copyright__selos {
    justify-content: center;
  }

  .container-abaixo-banner::before {
    display: none;
  }

  footer .footer__copyright::after {
    display: none
  }

  footer .footer__copyright .copyright__selos * {
    color: white !important;
  }

}

/******************** CONTEÚDO PÁGINAS ********************/

/* EMPRESA */
.empresa img {
  object-fit: cover;
  aspect-ratio: 6/6;
}

/* CATEGORIAS MPI */

.card--categorias .card__link {
  position: relative;
  display: block;
}

.card--categorias .card__link .card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  color: white;
  padding: 15px;
  text-align: center;
  transition: height 0.3s;
}

.card--categorias .card__link:hover .card__title {
  height: 100%;
}

.card--categorias .card__link .card__cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .card--categorias .card__link .card__cover {
    aspect-ratio: 3/3;
    height: auto;
    object-fit: cover;
  }
}

/* PROVA SOCIAL */
.prova-social .card--prova-social {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  border-radius: var(--border-radius);
}

.prova-social .card--prova-social .card__image {
  display: block;
  margin: 0 auto;
  width: auto;
  filter: brightness(0.5);
  aspect-ratio: 6/2;
  object-fit: contain;
}

.prova-social .card--prova-social .card__body {
  min-height: 320px;
  height: 100%;
  padding: 32px 16px;
  text-align: center;
  margin-top: 32px;
  border-radius: var(--border-radius);
  background-color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: relative;
}

.prova-social .card--prova-social .card__body .card__text {
  flex: 3;
}


.prova-social .card--prova-social .card__body::after {
  content: var(--inicialCliente);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 900;
  width: 50px;
  height: 50px;
  font-size: 13px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: #fff solid 2px;
  outline-offset: -5px;
}

.card__stars {
  color: #FCB824;
}

.prova-social .card--prova-social .card__body :is(.card__text, .card__name) {
  font-size: 14px;
  text-align: center;
}

.topo-corpo-prova {
  border-top-left-radius: 20px;
  display: flex;
  border-top-right-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 110%;
}

.corpo-prova {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
}

.forma-triangulo {
  position: absolute;
  top: -1px;
  left: 0px;
  width: 48px;
  height: 40px;
  transform: translateX(-30px);
  background-color: #000;
  clip-path: polygon(93% 0, 0 0, 91% 100%);
}

.container-depoimento {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 95%;
  background-color: white;
}

.container-depoimento p {
  font-size: 12px;
}

.inicial-prova {
  background-color: white;
  max-width: 60px !important;
  height: 60px;
  border-radius: 100%;
}

.inicial-prova h3 {
  color: black;
  font-size: 25px;
  font-weight: 600;
}

.row-prova {
  width: 100%;
}

@media (min-width: 1920px) {
  .topo-corpo-prova {
    width: 107%;
  }

  .container-depoimento {
    width: 97%;
  }

}

@media (max-width: 767.98px) {
  .forma-triangulo {
    display: none;
  }

  .topo-corpo-prova {
    width: 100%;
  }

  .container-depoimento {
    width: 100%;
  }

  .row-prova {
    justify-content: center;
  }

  .row-prova * {
    text-align: center;
  }
}

@media (min-width: 1920px) {
  .topo::before {

    transform: translateX(574px);

  }

  footer .footer__copyright::before {

    right: 574px;

  }
}