.btn-default {
  font-size: .7rem;
  font-weight: var(--bold);
  color: var(--white);
  padding: 10px 24px;
  border: none;
  border-radius: 18px;
  transition: all .3s ease-in-out;
  transform: scale(1);
}

.btn-default i {
  margin-left: 8px;
}

.btn-default:hover {
  color: var(--white);
  transform: scale(1.05);
  /*box-shadow: 0 0 8px rgba(255,255,255,0.4);*/
}

.btn-default.wine {
  background-color: var(--wine);
}

.btn-default.wine:hover {
  background-color: var(--green);
}

.btn-default.blue {
  background-color: var(--blue);
}

.btn-default.blue:hover {
  background-color: var(--green);
}

.btn-default.mobile:hover {
  transform: scale(1);
  background-color: var(--blue);
}

.shine {
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* btn-demo */

.btn-demo {
  font-size: .7rem;
  font-weight: var(--bold);
  color: var(--font-btn-demo);
  background: var(--bg-btn-demo);
  padding: 8px 48px;
  border: 1px solid var(--border-gray);
  border-radius: 18px;
  transform: scale(1);
  transition: all .3s ease-in-out;
  display: none;
}

.btn-demo:hover {
  color: var(--font-btn-demo);
  background: var(--bg-btn-demo);
  transform: scale(1.05);
}

/* title */

.title {
  font-size: 1.6rem;
  font-weight: var(--medium);
  color: var(--white);
}

@media (min-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
}

.title.right {
  text-align: right;
}

.title.center {
  text-align: center;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin-bottom: 12px;
  }
}

.subtitle.center {
  text-align: center;
}

.title2 {
  font-size: 1.5rem;
  font-weight: var(--medium);
  line-height: 1.8rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .title2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
}

.title2 strong {
  color: var(--wine);
}

.title3 {
  font-size: 1.6rem;
  font-weight: var(--medium);
  line-height: 2.1rem;
  color: var(--white);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .title3 {
    font-size: 1.9rem;
    line-height: 2.6rem;
  }
}

/* paragraph */

.paragraph {
  font-size: .75rem;
  font-weight: var(--regular);
  color: var(--white);
  line-height: 1.2rem;
}

@media (min-width: 992px) {
  .paragraph {
    font-size: .9rem;
    line-height: 1.4rem;
  }
}

.paragraph.left {
  text-align: left;
}

.paragraph.center {
  text-align: center;
}

/* footnote */

.footnote {
  font-size: .6rem;
  font-weight: var(--regular);
  font-style: italic;
  color: var(--white);
}

/* card atendimento ia */

.card-atendimento-ia {
  width: 100%;
  height: auto;
  aspect-ratio: initial;
  background: linear-gradient(180deg,rgba(149, 27, 129, .3) 0%, rgba(71, 126, 192, .3) 100%);
  padding: 24px;
  border-radius: var(--radius-default);
  border: 2px solid var(--border-gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  box-shadow: 0 4px 16px rgba(126,126,126,.25);
}

@media (min-width: 768px) {
  .card-atendimento-ia {
    aspect-ratio: 1 / .7;
  }
}

@media (min-width: 992px) {
  .card-atendimento-ia {
    aspect-ratio: 1 / 1.4;
  }
}

@media (min-width: 1200px) {
  .card-atendimento-ia {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 1400px) {
  .card-atendimento-ia {
    aspect-ratio: 1 / .8;
  }
}

.card-atendimento-ia img {
  margin-bottom: 16px;
}

.card-atendimento-ia .content {
  width: 100%;
  height: auto;
  min-height: 70%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-atendimento-ia h3 {
  font-size: 1.1rem;
  font-weight: var(--bold);
  color: var(--white);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .card-atendimento-ia h3 {
    font-size: 1.2rem;
  }
}

.card-atendimento-ia p {
  font-size: .7rem;
  font-weight: var(--medium);
  color: var(--white);
  margin: 0;
}

@media (min-width: 768px) {
  .card-atendimento-ia p {
    font-size: .8rem;
    font-weight: var(--medium);
    color: var(--white);
    margin: 0;
  }
}

/* bg degrade session */

.bg-degrade-session {
  background: linear-gradient(230deg,rgba(149, 27, 129, .3) 0%, rgba(71, 126, 192, .3) 100%);
}

/* card platform */

.card-platform {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
}

.card-platform .menu-area {
  width: 100%;
  min-width: initial;
  height: 100%;
  background: var(--dark-gray);
  border-radius: var(--radius-default);
  border: 1px solid var(--border-gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  z-index: 10;
}

@media (min-width: 768px) {
  .card-platform .menu-area {
    width: 250px;
    min-width: 250px;
    border-radius: var(--radius-default) 0 0 var(--radius-default);
  }
}

.card-platform .content-area {
  display: none;
  width: 100%;
  min-width: 720px;
  height: 100%;
  background: linear-gradient(230deg,rgba(91, 91, 91, .3) 0%, rgba(0, 0, 0, .3) 100%);
  border-radius: 0 var(--radius-default) var(--radius-default) 0;
  padding: 16px;
  border: 1px solid var(--border-gray);
}

@media (min-width: 768px) {
  .card-platform .content-area {
    display: block;
  }
}

.btn-plataform {
  position: relative;
  width: 100%;
  font-size: .95rem;
  font-weight: var(--semi-bold);
  color: var(--white);
  text-align: left;
  padding: 12px 20px;
  border-radius: 24px;
  transition: all .5s ease-in-out;
}

.btn-plataform:hover, .btn-plataform.selected {
  color: var(--white);
  background: var(--gray);
}

.btn-plataform:after {
  content: url("../../assets/img/btn-arrow.svg");
  position: absolute;
  top: 14px;
  right: 24px;
  display: block;
  width: 8px;
  height: 8px;
  transition: all .3s ease-in-out;
  transform: rotate(0);
}

.btn-plataform.selected:after {
  transform: rotate(180deg);
  top: 24px;
  right: 18px;
}

@media (min-width: 768px) {
  .btn-plataform:after {
    display: none;
  }
}

.btn-plataform i {
  margin-right: 12px;
}

/* btn mobile */

.btn-menu-mobile {
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../../assets/img/btn-mobile.svg");
  background-repeat: no-repeat;
  background-position: center;
  /*background-size: contain;*/
  padding: 16px;
  border: none;
  box-shadow: none;
  transition: all .3s ease-in-out;
}

.btn-menu-mobile:hover {
  background-image: url("../../assets/img/btn-mobile-hover.svg");
}

.btn-close-menu-mobile {
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../../assets/img/btn-close-mobile.svg");
  background-repeat: no-repeat;
  background-position: center;
  padding: 16px;
  border: none;
  box-shadow: none;
  transition: all .3s ease-in-out;
}

.btn-close-menu-mobile:hover {
  background-image: url("../../assets/img/btn-close-mobile-hover.svg");
}

/* content item platform */

.content-item-platform {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 1px solid var(--border-gray);
}

.content-item-platform.selected {
  display: flex;
}

@media (min-width: 768px) {
  .content-item-platform, .content-item-platform.selected {
    display: none;
  }
}

.content-item-platform:last-child {
  border-bottom: none;
}

.content-item-platform img {
  width: 100%;
  height: auto;
}

.content-item-platform p {
  font-size: .75rem;
  color: var(--white);
  font-weight: var(--regular);
}

.card-platform .content-area header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 8px;
}

.card-platform .content-area header h4 {
  font-size: 2rem;
  font-weight: var(--semi-bold);
  color: var(--white);
}

.badge {
  font-size: .65rem;
  font-weight: var(--regular);
  color: var(--white);
  padding: 8px 16px;
  background: linear-gradient(90deg,rgba(71, 126, 192, 1) 0%, rgba(149, 27, 129, 1) 100%);
  border-radius: 16px;
}

.card-platform .content-area .content {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 16px;
}

.card-platform .content-area .content img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.564;
  object-fit: contain;
  display: block;
}

.card-platform .content-area .content p {
  font-size: .75rem;
  color: var(--white);
  font-weight: var(--regular);
  margin: 0;
}

/* card services */

.card-services {
  width: 100%;
  height: auto;
  border-radius: var(--radius-default);
  border: 1px solid var(--border-gray);
  padding: 20px;
  background: linear-gradient(0deg,rgba(37, 159, 138, .3) 0%, rgba(71, 126, 192, .3) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: start;
  gap: 8px;
}

.card-services header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

@media (min-width: 992px) {
  .card-services header {
    flex-direction: row;
    justify-content: space-between;
  }
}

.card-services header .badge-hubling {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--light-gray);
  font-size: .6rem;
  line-height: 0;
  font-weight: var(--medium);
  color: var(--white);
  padding: 2px 16px 2px 2px;
  margin: 0;
  border-radius: 32px;
  border: 1px solid var(--border-gray);
}

@media (min-width: 1200px) {
  .card-services header .badge-hubling {
    font-size: .7rem;
  }
}

.card-services header .badge-hubling img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

.card-services header h4 {
  font-size: 2rem;
  font-weight: var(--medium);
  color: var(--white);
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .card-services header h4 {
    font-size: 2.5rem;
  }
}

.card-services ul {
  list-style: none;
  font-size: .75rem;
  font-weight: var(--regular);
  color: var(--white);
  text-align: right;
  padding-left: 0;
  margin: 0;
}

@media (min-width: 1200px) {
  .card-services ul {
    list-style: none;
    font-size: .9rem;
    font-weight: var(--regular);
    color: var(--white);
    text-align: right;
    padding-left: 0;
    margin: 0;
  }
}

.card-services ul li:not(:last-child) {
  margin-bottom: 8px;
}

/* social media */

.social-media {
  color: var(--white);
  font-size: 1.3rem;
  padding: 8px;
  margin: 0;
  border: none;
  box-shadow: none;
  transition: all .3s ease-in-out;
}

.social-media:hover {
  color: var(--wine);
}

/* imagens 3d */

.container-3d {
  perspective: 190px;
  opacity: .7;
}

.container-3d img {
  transform: rotateX(0deg) rotateY(7deg);
  transform-style: preserve-3d;
}

.container-3d.right img {
  transform: rotateX(0deg) rotateY(-7deg);
  transform-style: preserve-3d;
}

/* btn Whatsapp */

.btn-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: var(--whatsapp-color);
  border-radius: 50%;
  z-index: 99;
  transition: all .3s ease-in-out;
}

.btn-whatsapp i {
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-color-hover);
}

