@charset "UTF-8";
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease; }

.animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease, transform 0.5s ease; }

.animate-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s ease, transform 0.5s ease; }

.animate.animated {
  opacity: 1;
  transform: translateX(0); }

@keyframes buttonAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.btn-animation {
  animation: buttonAnimation 0.5s ease-in-out forwards;
  opacity: 0;
  transform: translateY(20px); }

.mb-sm {
  margin-bottom: 2rem; }

.mb-md {
  margin-bottom: 3rem; }

.mb-lg {
  margin-bottom: 4rem; }

.mb-hg {
  margin-bottom: 8rem; }

.mb-hg-2 {
  margin-bottom: 10rem; }

.mt-mn {
  margin-top: 0.5rem; }

.mt-sm {
  margin-top: 2rem; }

.mt-md {
  margin-top: 3rem; }

.mt-lg {
  margin-top: 4rem; }

.mt-hg {
  margin-top: 8rem; }

.mt-hg-2 {
  margin-top: 10rem; }

.mt-hg-3 {
  margin-top: 18rem; }

.mrl-lg {
  margin: 0 5rem; }

@media (max-width: 700px) {
  .mrl-lg {
    margin: 0 3rem; } }

.mtb-hg-2 {
  margin: 10rem 0; }

.mtb-hg-3 {
  margin: 20rem 0; }

.centralize {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center; }

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

.pb-hg {
  padding-bottom: 10rem; }

.pt-mn {
  padding-top: 0.5rem; }

.pt-sm {
  padding-top: 2rem; }

.pt-md {
  padding-top: 3rem; }

.pt-lg {
  padding-top: 4rem; }

.pt-lg-5 {
  padding-top: 5rem; }

.pt-hg {
  padding-top: 8rem; }

.pt-hg-2 {
  padding-top: 10rem; }

.pt-hg-3 {
  padding-top: 18rem; }

.pb-mn {
  padding-bottom: 0.5rem; }

.pb-sm {
  padding-bottom: 2rem; }

.pb-md {
  padding-bottom: 3rem; }

.pb-lg {
  padding-bottom: 4rem; }

.pb-lg-5 {
  padding-bottom: 5rem; }

.pb-hg {
  padding-bottom: 8rem; }

.pb-hg-2 {
  padding-bottom: 10rem; }

.pb-hg-3 {
  padding-bottom: 18rem; }

.pt-negative-sm {
  margin-top: -1.3rem; }

:root {
  --color-primary: #726ae3;
  --color-primary-dark: #1f1234;
  --color-primary-2: #8d2c7a;
  --color-primary-light: #cfa96fde;
  --accent-color: #02c2cc;
  --color-white: #f8f8f8;
  --color-white-2: rgba(243, 248, 251, 1);
  --color-white-50pc-1: rgba(255, 255, 255, 0.9);
  --color-white-50pc-2: rgba(255, 255, 255, 0.861);
  --color-grey: #484848;
  --color-grey-light-1: #e5e6ed;
  --color-grey-light-2: #828282;
  --color-grey-dark-1: #3a3c3d;
  --color-grey-dark-2: #2c2e2f;
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.06); }

* {
  margin: 0;
  padding: 0; }

*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 68.75em) {
    html {
      font-size: 62%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 60%; } }
  @media only screen and (max-width: 50em) {
    html {
      font-size: 55%; } }
  @media only screen and (max-width: 43.75em) {
    html {
      font-size: 55%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 60%; } }
  @media only screen and (max-width: 31.25em) {
    html {
      font-size: 60%; } }
  @media only screen and (max-width: 25em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 21.87em) {
    html {
      font-size: 45%; } }

body {
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6; }

::selection {
  background-color: var(--color-primary);
  color: var(--white-color); }

#block-selection {
  user-select: none; }

li {
  list-style: none; }

a {
  list-style: none;
  font-style: none;
  text-decoration: none; }

h1 {
  font-weight: 600;
  font-size: 5.2rem;
  line-height: 0.9;
  color: var(--color-white);
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2); }

h2 {
  color: var(--color-primary-dark);
  text-align: center;
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1.2; }

h4 {
  color: var(--color-primary);
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: start; }

.h4-dark {
  color: var(--color-primary-dark);
  transition: all 0.2s ease; }

.grey-color {
  color: var(--color-grey-dark-1); }

h5 {
  color: var(--color-primary-2);
  font-family: inherit;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 1px; }

.h5-footer {
  color: #726ae3; }

h6 {
  font-size: 15px;
  font-weight: 700;
  color: #726ae3;
  text-transform: uppercase;
  margin-bottom: 15px; }

p {
  font-family: inherit;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 142.5%;
  letter-spacing: 1px; }

.heading-4 {
  font-size: 2rem;
  color: #3a3c3d;
  font-weight: 500; }

.botao-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000; }

.fa-whatsapp {
  margin-top: 16px;
  font-size: 30px; }

@media (max-width: 600px) {
  .botao-whatsapp {
    bottom: 65px;
    right: 25px; } }

.btn-main {
  padding: 1.5rem 3rem;
  border-radius: 2.5rem;
  background-color: #726ae3;
  color: #f8f8f8;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 20rem;
  width: 100%; }

.btn-main:hover {
  background-color: #8c85e9; }

#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px;
  display: none;
  z-index: 100; }

.center-cookies-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  gap: 1rem; }

.content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  justify-items: center; }

#cookie-text {
  text-align: center; }

#accept-button {
  background-color: #726ae3;
  color: white;
  border: none;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0.4rem; }

#close-button {
  background-color: transparent;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer; }

.container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px; }

h2 {
  margin-bottom: 20px;
  text-align: center; }

form {
  display: flex;
  flex-direction: column; }

label {
  font-weight: bold;
  margin-bottom: 5px; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px; }

input[type="submit"] {
  background-color: #726ae3;
  color: white;
  border: none;
  border-radius: 4rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: all ease 0.2s; }

input[type="submit"]:hover {
  background-color: #8c85e9; }

#mensagem-resultado {
  margin-top: 10px;
  font-weight: bold;
  text-align: center; }

.footer {
  background: linear-gradient(140deg, #1f1234 0%, #3f3377 72%, #4c4193 90%, #594fae 100%, #726ae3 100%); }
  .footer__container {
    margin-right: auto;
    margin-left: auto;
    max-width: 116rem; }
  .footer__content {
    display: flex;
    justify-content: space-between;
    padding: 10rem 0;
    column-gap: 3rem; }
  .footer__collumn1 {
    flex: 0 0 40%; }
    .footer__collumn1__logo {
      width: auto;
      height: 6.5rem; }
      .footer__collumn1__logo::selection {
        background-color: transparent; }
    .footer__collumn1__text {
      color: var(--color-white-50pc-1);
      font-size: 1.4rem;
      font-weight: 300; }

.footer__collumn2 {
  margin-top: -0.5rem; }
  .footer__collumn2__menu {
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
    .footer__collumn2__menu__item {
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--color-white-50pc-2);
      text-decoration: none;
      margin: 0.3rem 0;
      position: relative;
      transition: 0.2s; }
      .footer__collumn2__menu__item:hover {
        color: #fff; }
      .footer__collumn2__menu__item:after {
        content: "";
        position: absolute;
        background-color: var(--color-primary);
        height: 1px;
        width: 0%;
        left: 0;
        bottom: -2px;
        transition: 0.2s; }
      .footer__collumn2__menu__item:hover:after {
        width: 100%; }

.footer__menu {
  display: flex;
  flex-direction: column; }

.footer__collumn3 {
  margin-top: -0.5rem; }
  .footer__collumn3__menu {
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
    .footer__collumn3__menu__item {
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--color-white-50pc-2);
      text-decoration: none;
      margin: 0.3rem 0;
      position: relative;
      transition: 0.2s; }
      .footer__collumn3__menu__item:hover {
        color: #fff; }
      .footer__collumn3__menu__item:after {
        content: "";
        position: absolute;
        background-color: var(--color-primary);
        height: 1px;
        width: 0%;
        left: 0;
        bottom: -2px;
        transition: 0.2s; }
      .footer__collumn3__menu__item:hover:after {
        width: 100%; }

.serviços__menu {
  display: flex;
  flex-direction: column; }

.footer__collumn4 {
  margin-top: -0.5rem; }
  .footer__collumn4__link:not(:last-child) {
    margin-right: 1rem; }
  .footer__collumn4__socialmedia {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0.8rem 0; }
    .footer__collumn4__socialmedia__icon {
      cursor: pointer;
      width: 2rem;
      height: 2rem;
      fill: var(--color-white-50pc-2);
      transition: 0.2s; }
      .footer__collumn4__socialmedia__icon:hover {
        fill: #fff; }

.social-media-icon {
  margin: 0 0 0 0px; }

.development {
  background-color: #150d24;
  height: 6rem;
  display: flex;
  align-items: center; }
  .development__container {
    margin-right: auto;
    margin-left: auto;
    max-width: 116rem; }
  .development__content {
    display: flex;
    justify-content: center;
    color: var(--color-white-50pc-2);
    cursor: pointer;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 100;
    align-items: center; }
  .development__copyright {
    color: var(--color-white-50pc-2);
    font-size: 1.1rem;
    font-weight: 300; }
  .development__barra {
    margin: 0 2rem; }
  .development__link {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-white-50pc-2);
    text-decoration: none; }

@media (max-width: 700px) {
  .footer__content {
    flex-direction: column; }
  .footer__collumn2 {
    margin-top: 4rem; }
  .footer__collumn3 {
    margin-top: 4rem; }
  .footer__collumn4 {
    margin-top: 4rem; }
  .footer__collumn4__socialmedia__icon {
    width: 3rem;
    height: 3rem; }
  .social-media-icon {
    margin: 0 0 0 3px; } }

.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f8f8; }

.hidden {
  display: none; }

.loader {
  --path: #1f1234;
  --dot: #726ae3;
  --duration: 3s;
  width: 44px;
  height: 44px;
  position: relative; }

.loader:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 37px;
  left: 19px;
  transform: translate(-18px, -18px);
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite; }

.loader svg {
  display: block;
  width: 100%;
  height: 100%; }

.loader svg rect,
.loader svg polygon,
.loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round; }

.loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite; }

.loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite; }

.loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite; }

.loader.triangle {
  width: 48px; }

.loader.triangle:before {
  left: 21px;
  transform: translate(-10px, -18px);
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite; }

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74; }
  66% {
    stroke-dashoffset: 147; }
  100% {
    stroke-dashoffset: 221; } }

@keyframes dotTriangle {
  33% {
    transform: translate(0, 0); }
  66% {
    transform: translate(10px, -18px); }
  100% {
    transform: translate(-10px, -18px); } }

@keyframes pathRect {
  25% {
    stroke-dashoffset: 64; }
  50% {
    stroke-dashoffset: 128; }
  75% {
    stroke-dashoffset: 192; }
  100% {
    stroke-dashoffset: 256; } }

@keyframes dotRect {
  25% {
    transform: translate(0, 0); }
  50% {
    transform: translate(18px, -18px); }
  75% {
    transform: translate(0, -36px); }
  100% {
    transform: translate(-18px, -18px); } }

@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125; }
  50% {
    stroke-dashoffset: 175; }
  75% {
    stroke-dashoffset: 225; }
  100% {
    stroke-dashoffset: 275; } }

.loader {
  display: inline-block;
  margin: 0 16px; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  padding: 2rem 0; }
  .navbar__logo {
    margin: 0 5rem;
    line-height: 1;
    width: 7rem;
    cursor: pointer; }
    .navbar__logo::selection {
      background-color: transparent; }
  .navbar__menu {
    margin: 0 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
  .navbar__main-menu-item {
    margin-left: 40px;
    color: var(--color-white);
    text-decoration: none;
    position: relative; }
    .navbar__main-menu-item:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -10px;
      left: 0;
      background-color: #726ae3;
      visibility: hidden;
      -webkit-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
    .navbar__main-menu-item.ultimo:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -10px;
      left: 0;
      background-color: rgba(0, 0, 0, 0);
      visibility: hidden;
      -webkit-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
    .navbar__main-menu-item:hover:before {
      visibility: visible;
      -webkit-transform: scaleX(1);
      transform: scaleX(1); }
    .navbar__main-menu-item:hover {
      -webkit-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 116rem; }

.hamburger {
  display: none;
  cursor: pointer; }

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--color-white); }

.menu.scrolled .bar {
  /* Cor do ícone do hamburger quando o menu está transparente */
  background-color: var(--color-primary); }

.menu.scrolled .navbar__logo {
  filter: grayscale(100%);
  filter: contrast(1000%);
  filter: brightness(0.1); }

@media (max-width: 700px) {
  .hamburger {
    display: block;
    margin: -2.5rem 5rem; }
  .navbar__menu {
    display: block;
    position: absolute;
    margin: 0 0;
    width: 100%;
    top: 77px;
    right: 0;
    height: 0px;
    background-image: linear-gradient(#f3f8fb, #f2f0f0);
    transition: 0.3s;
    z-index: 10000;
    visibility: hidden;
    overflow-y: hidden;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  #nav.active #menu {
    margin-top: -10px;
    height: 50vh;
    visibility: visible;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); }
  .navbar__item {
    margin: 0 -10rem;
    padding: 3.2rem 0; }
  .navbar__main-menu-item {
    margin-left: 0;
    color: var(--color-grey-dark-1);
    font-size: 2.2rem; }
    .navbar__main-menu-item:hover {
      color: rgba(0, 0, 0, 0.349); }
  .nav.active .bar:nth-child(2) {
    opacity: 0; }
  .nav.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg); }
  .nav.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); } }

@media (max-width: 700px) {
  .navbar__logo {
    margin: 0 3rem; }
  .hamburger {
    margin: 0 3rem; }
  .mt-md {
    margin-top: 2rem; }
  .navbar__item {
    padding: 3.2rem 0; } }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease-in-out;
  background-color: transparent;
  z-index: 999; }

.menu.scrolled {
  background-color: #f8f8f8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); }

.menu .nav-container {
  position: relative;
  margin: 0 auto; }

.menu.scrolled .navbar__main-menu-item {
  /* Cor dos itens quando o menu está com fundo branco */
  color: var(--color-grey-dark-1); }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #d6d6d6; }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots span {
  background: #726ae3; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px; }

.item {
  padding: 2rem; }

.img-caroulsel {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  transition: all 0.2s ease; }

.img-caroulsel:hover {
  box-shadow: 2px 2px 20px rgba(255, 182, 236, 0.4); }

.section {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden; }

.section-background {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden; }

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center; }

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

.text-align__start {
  text-align: start; }

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

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

.text-white {
  color: var(--color-white); }

.text-dark {
  color: var(--color-primary); }

.text-grey {
  color: var(--color-grey); }

.text-color-grey-light-2 {
  color: var(--color-grey-light-2); }

/*
##################################################################################
##################################################################################
*/
header#menu .logo {
  float: left;
  margin-left: 20px; }

header#menu .logo img {
  height: 40px;
  /* Ajuste a altura conforme necessário */
  width: auto; }

header#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: background-color 0.5s ease-in-out; }

header#menu.scrolled {
  background-color: #ffffff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); }

header#menu nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 10px;
  justify-content: flex-end; }

header#menu nav ul li {
  margin-right: 10px; }

header#menu nav ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease-in-out; }

header#menu.scrolled nav ul li a {
  color: #000000; }

header#menu nav ul li a:hover {
  color: #ff0000;
  /* Altere a cor para o efeito desejado */ }

/*
##################################################################################
##################################################################################
*/
.hero__background-image {
  background-image: url(/img/hero-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.hero-image {
  max-width: 40rem;
  width: 40rem; }

.grid-hero {
  padding-top: 12rem;
  padding-bottom: 7rem;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 10px; }

.coluna-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 50%; }

.coluna-2 {
  display: flex;
  justify-content: center;
  align-items: center; }

/* Estilos para dispositivos móveis */
@media (max-width: 1164px) {
  .coluna-1 {
    max-width: 60%; } }

@media (max-width: 1064px) {
  .coluna-1 {
    max-width: 70%; } }

@media (max-width: 970px) {
  .coluna-1 {
    max-width: 80%; } }

@media (max-width: 768px) {
  .grid-hero {
    grid-template-columns: 1fr;
    margin-bottom: -4rem; }
  .hero-image {
    max-width: 100%;
    height: auto;
    transform: scale(0.8);
    margin-top: 4rem; }
  .coluna-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%; }
  .hero__background-image {
    background-position: left; } }

.hero__p {
  color: var(--color-white);
  font-weight: 300;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  line-height: 162.5%; }

/*
##################################################################################
##################################################################################
*/
.about_background-image {
  background-image: url(/img/slider-right-dec.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.how-it-works_background-image {
  /*background-image: url(/img/blog-left-dec.jpg);*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

p em {
  font-weight: 400;
  font-style: normal;
  color: var(--color-primary); }

.grid-sobre {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 6rem;
  align-items: center; }

.coluna-imagem-sobre {
  grid-column: 1; }

.coluna-imagem-sobre-2 img {
  display: flex;
  max-width: 100%; }

.coluna-imagem-atendimento img {
  display: flex;
  max-width: 100%;
  transform: scale(1.1); }

.coluna-texto-sobre-2 {
  display: grid;
  align-content: center; }

.p-about {
  line-height: 3rem;
  font-weight: 300;
  font-size: 1.6rem; }

@media (max-width: 600px) {
  .grid-sobre {
    display: grid;
    grid-template-columns: 1fr; }
  .coluna-imagem-sobre-2 img {
    max-width: 80%;
    margin: 0 auto; } }

/*
##################################################################################
##################################################################################
*/
h2 em {
  font-style: normal;
  color: var(--color-primary); }

.line-dec {
  width: 50px;
  height: 2px;
  background-color: #726ae3;
  margin: 0 auto; }

.line-dec-start {
  width: 50px;
  height: 2px;
  background-color: #726ae3; }

.background-degrade {
  background: linear-gradient(90deg, white 0%, white 76%, rgba(63, 26, 52, 0.137693) 100%); }

.background-degrade-radial {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.01) 60%, rgba(63, 26, 52, 0.0532668) 100%); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center; }
  .service-grid__grid-item {
    /* background-color: rgb(186, 6, 57); */
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    transition: all 0.2s ease; }
  .service-grid__grid-item:hover .service-grid__grid-circle {
    transform: scale(1.2, 1.2);
    box-shadow: 2px 2px 20px rgba(255, 182, 236, 0.4); }
  .service-grid__grid-circle {
    background: #f2e9ff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    align-self: center;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; }
  .service-grid__img-circle {
    width: 80%;
    height: 80%;
    object-fit: cover; }

.service-grid__grid-item:hover .h4-dark {
  color: var(--color-primary); }

/*
##################################################################################
##################################################################################
*/
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center; }

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #726ae3;
  color: #fff;
  font-size: 18px;
  font-weight: bold; }

.step-content {
  margin-left: 15px;
  margin-top: 20px; }

.step-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-primary-dark); }

.step-description {
  font-size: 1.4rem;
  color: #666; }

/*
##################################################################################
##################################################################################
*/
.free-quote {
  background-image: url(/img/faq-background.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover; }

.faq-container {
  max-width: 60rem;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; }

.faq {
  box-sizing: border-box;
  background: transparent;
  padding: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer; }

.faq:not(:first-child) {
  border-top: 1px solid #e6e6e6; }

.faq-title {
  margin: 0 35px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; }

.faq-text {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 300;
  margin: 30px 0 0;
  display: none;
  letter-spacing: 0.1rem;
  line-height: 2.5rem; }

.faq.active {
  background-color: #f8f8f8;
  box-shadow: inset 4px 0px 0px 0px var(--color-primary); }

.faq.active .faq-title {
  color: var(--color-primary); }

.faq.active .faq-text {
  display: block; }

.faq-toggle {
  background-color: transparent;
  border: 1px solid #e6e6e6;
  color: inherit;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding-top: 3px;
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
  transition: 0.6s ease; }

.faq-toggle:focus {
  outline: none; }

.faq.active .faq-toggle {
  transform: rotate(180deg);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff; }

/*
##################################################################################
##################################################################################
*/
.cta1-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center; }

.gif {
  max-height: 25rem;
  object-fit: cover;
  background-position: center; }

@media (max-width: 600px) {
  .gif {
    max-height: 15rem;
    object-fit: cover;
    background-position: center; } }
