/* =========================================================
   CONFIGURAÇÕES GERAIS
========================================================= */

:root {
  --color-white: #F6F6F6;
  --color-purple: #2E3092;
  --color-black: #0C0C20;
  --color-orange: #F36F42;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;

  color: var(--color-black);
  font-family: "Fustat", sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   SCROLLBAR
========================================================= */

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-purple);
  border-radius: 20px;
  border: 3px solid var(--color-white);
}


/* =========================================================
   OWL CAROUSEL
========================================================= */

.owl-theme .owl-dots {
  display: none;
}


/* =========================================================
   TIPOGRAFIA
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h2 {
  font-family: "Fustat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.98%;
}

h3 {
  font-family: "Fustat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 116.412%;
}

h4,
h5,
h6 {
  font-family: "Fustat", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 116.412%;
}

p,
li,
.fonte-padrao {
  font-family: "Fustat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

a {
  font-family: "Fustat", sans-serif;
  text-decoration: none;
}

body strong {
  font-weight: 800 !important;
}


/* =========================================================
   CORES
========================================================= */

.color-white,
.fonte-white {
  color: var(--color-white);
}

.color-roxa,
.fonte-roxa {
  color: var(--color-purple);
}

.color-black,
.fonte-black {
  color: var(--color-black);
}

.color-orange,
.fonte-orange {
  color: var(--color-orange);
}


/* =========================================================
   BACKGROUNDS
========================================================= */

.bg-white {
  background-color: var(--color-white);
}

.bg-roxo {
  background-color: var(--color-purple);
}

.bg-black {
  background-color: var(--color-black);
}

.bg-orange {
  background-color: var(--color-orange);
}


/* =========================================================
   UTILITÁRIOS
========================================================= */

.p-relative {
  position: relative;
}

.f-right {
  float: right;
}

.fonte-bold {
  font-weight: 700;
}

.fonte-extra-bold {
  font-weight: 800;
}

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

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

.size-24 {
  font-size: 24px;
}

.centraliza {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.center {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.centraliza-desk-position {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* =========================================================
   CONTAINER
========================================================= */

@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}


/* =========================================================
   LINKS
========================================================= */

.link-padrao {
  display: inline-flex;
  align-items: center;

  color: var(--color-purple);

  font-family: "Fustat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.link-padrao:hover {
  color: var(--color-orange);
}


/* =========================================================
   CTA PADRÃO
========================================================= */

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 28px;

  border: 0;
  border-radius: 927.674px;

  background: var(--color-orange);
  color: var(--color-white);

  font-family: "Fustat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;

  text-align: center;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.btn-cta:hover {
  color: var(--color-white);
  background-color: #dc5c33;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 111, 66, 0.25);
}

.btn-cta:focus,
.btn-cta:active {
  color: var(--color-white);
}


/* =========================================================
   CTA ROXO
========================================================= */

.btn-roxo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 28px;

  border: 0;
  border-radius: 927.674px;

  background: var(--color-purple);
  color: var(--color-white);

  font-family: "Fustat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;

  text-align: center;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.btn-roxo:hover {
  color: var(--color-white);
  background-color: #222477;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 48, 146, 0.22);
}


/* =========================================================
   PALAVRA DESTACADA
========================================================= */

.word {
  position: relative;
}

.word::after {
  content: "";
  position: absolute;

  width: 100%;
  height: 2px;

  left: 0;
  bottom: -2px;

  background-color: var(--color-orange);

  transform-origin: bottom;
}


/* =========================================================
   BOTÕES FIXOS MOBILE
========================================================= */

.botao-fixo-rodape-1,
.botao-fixo-rodape-2 {
  position: fixed;

  left: 0;
  width: 100%;

  z-index: 1000;

  transition: bottom 0.5s ease-in-out;
}


/* WhatsApp / CTA principal */

.botao-fixo-rodape-1 {
  bottom: 45px;
}

.botao-fixo-rodape-1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  min-height: 45px;

  padding: 10px 15px;

  color: var(--color-white);
  background-color: var(--color-orange);

  font-family: "Fustat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;

  text-align: center;
  text-decoration: none;
}


/* Segundo botão */

.botao-fixo-rodape-2 {
  bottom: 0;
}

.botao-fixo-rodape-2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  min-height: 45px;

  padding: 10px 15px;

  color: var(--color-white);
  background-color: var(--color-purple);

  font-family: "Fustat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;

  text-align: center;
  text-decoration: none;
}


/* =========================================================
   EXIBIÇÃO DESKTOP / MOBILE
========================================================= */

@media (min-width: 991.99px) {

  .esconde-desktop {
    display: none !important;
  }

}

@media (max-width: 991.98px) {

  .esconde-mobile {
    display: none !important;
  }

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991.98px) {

  h2 {
    font-size: 36px;
    line-height: 116.98%;
  }

  h3 {
    font-size: 22px;
    line-height: 116.412%;
  }

  p,
  li,
  .fonte-padrao {
    font-size: 16px;
    line-height: 21px;
  }

  .btn-cta,
  .btn-roxo {
    padding: 13px 24px;

    font-size: 16px;
    line-height: 24px;
  }

  .centraliza-desk-position {
    position: relative;

    top: auto;
    left: auto;

    transform: none;
  }

}


@media (max-width: 575.98px) {

  h2 {
    font-size: 32px;
    line-height: 115%;
  }

  h3 {
    font-size: 21px;
  }

  .btn-cta,
  .btn-roxo {
    width: 100%;
  }

}

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

.header-legare {
  position: fixed;
  top: 20px;
  left: 0;

  z-index: 1000;

  width: 100%;
  padding: 10px 0;
}

/* Caixa principal do menu */

.menu-legare {
  width: 100%;

  min-height: 76px;
  padding: 9px 14px 9px 28px;

  border-radius: 115px;
  border: 1px solid rgba(12, 12, 32, 0.10);

  background: rgba(246, 250, 249, 0.60);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   LOGO
========================================================= */

.menu-legare .navbar-brand {
  display: flex;
  align-items: center;

  padding: 0;
  margin: 0;
}

.logo-legare {
  display: block;

  width: auto;
  height: 48px;

  object-fit: contain;
}


/* =========================================================
   LINKS DO MENU
========================================================= */

.menu-legare .navbar-nav {
  display: flex;
  align-items: center;

  gap: 28px;
}

.menu-legare .nav-item {
  display: flex;
  align-items: center;
}

.menu-legare .nav-link {
  position: relative;

  padding: 10px 0 !important;

  color: var(--color-black);

  font-family: "Fustat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;

  transition: all 0.3s ease;
}


/* Link ativo */

.menu-legare .nav-link.active {
  color: var(--color-black);
  font-weight: 700;
}


/* Hover */

.menu-legare .nav-link:hover {
  color: var(--color-purple);
}


/* =========================================================
   BOTÃO DO MENU
========================================================= */

.menu-cta {
  display: flex;
  align-items: center;
}

.btn-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 21px;

  border-radius: 927.674px;

  background: var(--color-orange);
  color: var(--color-white);

  font-family: "Fustat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-menu i {
  font-size: 12px;

  transition: transform 0.3s ease;
}

.btn-menu:hover {
  color: var(--color-white);

  background: #dc5c33;

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(243, 111, 66, 0.25);
}

.btn-menu:hover i {
  transform: translate(2px, -2px);
}


/* =========================================================
   BOTÃO MENU MOBILE
========================================================= */

.menu-legare .navbar-toggler {
  padding: 8px;

  border: 0;
  box-shadow: none;

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

.menu-legare .navbar-toggler:focus {
  border: 0;
  box-shadow: none;
}

.menu-legare .navbar-toggler i {
  font-size: 24px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .header-legare {
    padding: 10px 0;
  }

  .menu-legare {
    min-height: auto;

    padding: 10px 18px;

    border-radius: 30px;
  }

  .logo-legare {
    height: 42px;
  }

  .menu-legare .navbar-collapse {
    padding-top: 20px;
  }

  .menu-legare .navbar-nav {
    align-items: flex-start;

    gap: 5px;

    margin-bottom: 18px;
  }

  .menu-legare .nav-link {
    width: 100%;

    padding: 8px 0 !important;

    font-size: 18px;
    line-height: 25px;
  }

  .menu-cta {
    width: 100%;
  }

  .btn-menu {
    width: 100%;
  }

}


@media(max-width: 575.98px) {

  .menu-legare {
    padding: 9px 15px;

    border-radius: 26px;
  }

  .logo-legare {
    height: 38px;
  }

}

/* =========================================================
   HOME - HERO
========================================================= */

.home-pt-1 {
  position: relative;

  min-height:820px;

  display: flex;
  align-items: center;

  padding: 100px 0 0px;

  background-image: url("/wp-content/themes/legare/img/banner-home.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  overflow: hidden;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.home-pt-1-content {
  position: relative;
  z-index: 2;
}


/* =========================================================
   H1
========================================================= */

.home-pt-1 h1 {
  margin-bottom: 18px;

  color: var(--color-purple);

  font-family: "Fustat", sans-serif;
  font-size: 43.828px;
  font-style: normal;
  font-weight: 700;
  line-height: 103%;
}

.home-pt-1 h1 span {
  color: #158095;
}


/* =========================================================
   PARÁGRAFOS
========================================================= */

.home-pt-1 .hero-description {
  margin-bottom: 22px;

  color: var(--color-black);

  font-family: "Fustat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

.home-pt-1 .hero-destaque {
  margin-bottom: 0;

  color: var(--color-black);

  font-family: "Fustat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}

@media(min-width: 1200px){
  .home-pt-1 p{
    width: 90%;
  }
}

/* =========================================================
   BENEFÍCIOS
========================================================= */

.hero-beneficios {
  display: flex;
  align-items: stretch;

  margin-top: 42px;
}

.hero-beneficio {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  min-width: 130px;

  padding: 0 20px;
}

.hero-beneficio:first-child {
  padding-left: 0;
}

.hero-beneficio:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 7px;
  right: 0;

  width: 1px;
  height: 52px;

  background: rgba(12, 12, 32, 0.22);
}

.hero-beneficio i {
  margin-bottom: 10px;

  color: var(--color-orange);

  font-size: 22px;
}

.hero-beneficio span {
  color: #4A5571;

  font-family: "Fustat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 1199.98px) {

  .home-pt-1 {
    min-height: 590px;

    background-position: 58% center;
  }

  .home-pt-1 h1 {
    font-size: 40px;
  }

  .hero-beneficio {
    min-width: 115px;
    padding: 0 15px;
  }

}


@media(max-width: 991.98px) {

  .home-pt-1 {
    min-height: auto;

    align-items: flex-start;

    padding: 70px 0 430px;

    background-position: 70% bottom;
  }

  .home-pt-1::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
      180deg,
      rgba(246, 250, 249, 0.98) 0%,
      rgba(246, 250, 249, 0.94) 38%,
      rgba(246, 250, 249, 0.15) 68%,
      rgba(246, 250, 249, 0) 100%
    );
  }

  .home-pt-1-content {
    position: relative;
    z-index: 2;
  }

  .home-pt-1 h1 {
    font-size: 38px;
  }

  .hero-beneficios {
    flex-wrap: wrap;

    gap: 25px 0;

    margin-top: 35px;
  }

  .hero-beneficio {
    width: 50%;
    min-width: initial;

    padding: 0 20px 0 0;
  }

  .hero-beneficio:nth-child(2)::after {
    display: none;
  }

}


@media(max-width: 575.98px) {

  .home-pt-1 {
    padding: 50px 0 360px;

    background-size: auto 100%;
    background-position: 64% bottom;
  }

  .home-pt-1 h1 {
    margin-bottom: 16px;

    font-size: 34px;
    line-height: 105%;
  }

  .home-pt-1 .hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .home-pt-1 .hero-destaque {
    font-size: 15px;
    line-height: 21px;
  }

  .hero-beneficios {
    margin-top: 30px;
  }

  .hero-beneficio {
    padding-right: 15px;
  }

  .hero-beneficio i {
    font-size: 17px;
  }

  .hero-beneficio span {
    font-size: 13px;
    line-height: 16px;
  }

}

/* =========================================================
   HOME - PT 2
========================================================= */

.home-pt-2 {
  position: relative;

  padding: 64px 0;

  background: var(--color-purple);
}


/* =========================================================
   TEXTO
========================================================= */

.home-pt-2-text {
  position: relative;

  padding-right: 70px;
}

.home-pt-2-text::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 0;

  width: 1px;
  height: 100px;

  background: rgba(246, 246, 246, 0.40);

  transform: translateY(-50%);
}

.home-pt-2-text p {
  margin-bottom: 18px;

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

.home-pt-2-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CTA
========================================================= */

.home-pt-2-cta {
  padding-left: 45px;
}

.home-pt-2-btn {
  display: flex;

  width: 519px;

  align-items: center;
  justify-content: space-between;

  padding: 13.147px 52.587px;

  border-radius: 1313.352px;

  background: var(--color-orange);
  color: var(--color-white);

  font-family: "Fustat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 116.412%;

  text-decoration: none;

  transition: all 0.3s ease;
}

.home-pt-2-btn i {
  margin-left: 25px;

  font-size: 16px;

  transition: transform 0.3s ease;
}

.home-pt-2-btn:hover {
  color: var(--color-white);

  background: #dc5c33;

  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(12, 12, 32, 0.18);
}

.home-pt-2-btn:hover i {
  transform: translate(3px, -3px);
}


/* =========================================================
   TEXTO ABAIXO DO CTA
========================================================= */

.home-pt-2-note {
  margin-top: 14px;
  margin-bottom: 0;

  padding-left: 20px;

  color: var(--color-white);

  font-family: "Fustat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 1199.98px) {

  .home-pt-2-btn {
    width: 100%;

    padding: 14px 35px;
  }

  .home-pt-2-text {
    padding-right: 45px;
  }

  .home-pt-2-cta {
    padding-left: 20px;
  }

}


@media(max-width: 991.98px) {

  .home-pt-2 {
    padding: 50px 0;
  }

  .home-pt-2-text {
    padding-right: 0;
    padding-bottom: 35px;
  }

  .home-pt-2-text::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    transform: none;
  }

  .home-pt-2-cta {
    padding-left: 0;
  }

  .home-pt-2-btn {
    width: 100%;

    padding: 14px 30px;
  }

  .home-pt-2-note {
    padding-left: 0;
  }

}


@media(max-width: 575.98px) {

  .home-pt-2 {
    padding: 42px 0;
  }

  .home-pt-2-btn {
    gap: 20px;

    padding: 15px 24px;

    font-size: 20px;
    line-height: 120%;
  }

  .home-pt-2-btn i {
    margin-left: 0;
  }

  .home-pt-2-note {
    margin-top: 16px;
  }

}

/* =========================================================
   HOME - PT 3
========================================================= */

.home-pt-3 {
  padding: 90px 0;
  background: #fff;
}


/* IMAGEM */

.home-pt-3-image {
  overflow: hidden;
  border-radius: 0 28px 28px 28px;
}

.home-pt-3-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* CONTEÚDO */

.home-pt-3 h2 {
  margin-bottom: 22px;

  font-size: 32px;
}

.home-pt-3-content p {
  margin-bottom: 22px;
}

.home-pt-3-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-3 {
    padding: 60px 0;
  }

  .home-pt-3 h2 {
    font-size: 30px;
  }

}


@media(max-width: 575.98px) {

  .home-pt-3 {
    padding: 45px 0;
  }

  .home-pt-3 h2 {
    font-size: 28px;
  }

  .home-pt-3-image {
    border-radius: 0 22px 22px 22px;
  }

}

/* =========================================================
   HOME - PT 4
========================================================= */

.home-pt-4 {
  padding: 90px 0;
  background: var(--nutral-f-6-faf-9, #F6F6F6);
}


/* TÍTULO */

.home-pt-4-title {
  margin-bottom: 45px;
}

.home-pt-4-title h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.home-pt-4-title p {
  margin-bottom: 0;
  font-weight: 400;
}


/* =========================================================
   CARDS
========================================================= */

.vantagem-card {
  height: 100%;

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

  padding: 50px 35px 35px;

border-radius: 25px;
border: 0.5px solid rgba(12, 12, 32, 0.11);

  text-align: center;

  transition: all 0.3s ease;
}

.vantagem-card:hover {
  transform: translateY(-4px);

  border-color: rgba(46, 48, 146, 0.25);

  box-shadow: 0 12px 35px rgba(12, 12, 32, 0.07);
}


/* ÍCONE */

.vantagem-icon {
  width: 110px;
  height: 87px;

  margin-bottom: 22px;

  object-fit: contain;
}


/* TÍTULO */

.vantagem-card h3 {
  margin-bottom: 18px;

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


/* PARÁGRAFO */

.vantagem-card p {
  margin-bottom: 30px;

  font-weight: 400;
}


/* =========================================================
   LINK
========================================================= */

.vantagem-link {
  position: relative;

  margin-top: auto;
  padding-bottom: 12px;

  color: var(--color-black);

  font-size: 14px;
  font-weight: 400;
  line-height: 18px;

  text-align: center;
  text-decoration: none;
}

.vantagem-link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 190px;
  height: 1px;

  background: rgba(12, 12, 32, 0.65);

  transform: translateX(-50%);

  transition: all 0.3s ease;
}

.vantagem-link:hover {
  color: var(--color-purple);
}

.vantagem-link:hover::after {
  width: 215px;

  background: var(--color-purple);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-4 {
    padding: 60px 0;
  }

  .home-pt-4-title h2 {
    font-size: 34px;
  }

  .vantagem-card {
    padding: 40px 28px 30px;
  }

}


@media(max-width: 575.98px) {

  .home-pt-4 {
    padding: 45px 0;
  }

  .home-pt-4-title {
    margin-bottom: 35px;
  }

  .home-pt-4-title h2 {
    font-size: 30px;
  }

  .vantagem-card {
    padding: 35px 22px 28px;
  }

  .vantagem-icon {
    width: 60px;
    height: 60px;
  }

}

/* =========================================================
   HOME - PT 5
========================================================= */

.home-pt-5 {
  padding: 90px 0;
  background: #fff;
}


/* =========================================================
   IMAGEM
========================================================= */

.home-pt-5-image {
  position: relative;
  overflow: hidden;

  border-radius: 0 0 0 24px;
  height: 100%;
  border-radius: 5px;
}

.home-pt-5-image img {
  display: block;

  width: 100%;

  object-fit: cover;
}

.home-pt-5-image-text {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 88%;

  padding: 28px 42px;

  border-radius: 0 24px 0 0;

  background: #607D98;
  color: var(--color-white);

  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.home-pt-5 h2 {
  margin-bottom: 20px;
}

.home-pt-5-intro {
  margin-bottom: 55px;

  font-weight: 400;
}


/* =========================================================
   ACCORDION
========================================================= */

.home-pt-5-accordion {
  margin: 0 -14px;
}

.home-pt-5-accordion > div {
  padding: 0 14px;
}

.operacao-item {
  border-bottom: 1px solid rgba(243, 111, 66, 0.40);
}

.operacao-button {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 0;

  border: 0;
  background: transparent;

  color: var(--color-purple);

  font-family: "Fustat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;

  text-align: left;

  cursor: pointer;
}

.operacao-button i {
  flex-shrink: 0;

  color: var(--color-orange);

  font-size: 13px;

  transition: transform 0.3s ease;
}

.operacao-button[aria-expanded="true"] i {
  transform: rotate(180deg);
}


/* TEXTO ABERTO */

.operacao-content {
  padding: 0 25px 18px 0;

  color: var(--color-black);

  font-family: "Fustat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-5 {
    padding: 60px 0;
  }

  .home-pt-5-intro {
    margin-bottom: 35px;
  }

  .home-pt-5-image-text {
    padding: 24px 30px;

    font-size: 18px;
  }

}


@media(max-width: 767.98px) {

  .home-pt-5-accordion {
    margin: 0;
  }

  .home-pt-5-accordion > div {
    padding: 0;
  }

}


@media(max-width: 575.98px) {

  .home-pt-5 {
    padding: 45px 0;
  }

  .home-pt-5-image-text {
    position: relative;

    width: 100%;

    padding: 22px;

    border-radius: 0 0 18px 18px;

    font-size: 16px;
  }

  .home-pt-5-image {
    border-radius: 0 0 18px 18px;
  }

  .operacao-button {
    font-size: 15px;
  }

}

/* =========================================================
   HOME - PT 6
========================================================= */

.home-pt-6 {
  padding: 85px 0;
  background: var(--color-white);
}


/* =========================================================
   TÍTULO
========================================================= */

.home-pt-6-title {
  margin-bottom: 55px;
}

.home-pt-6-title h2 {
  margin-bottom: 0;
}


/* =========================================================
   ESPECIALIDADES
========================================================= */

.especialidade-card {
  min-height: 90px;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 20px 20px;

  border: 1px solid rgba(12, 12, 32, 0.10);
  border-radius: 20px;

  background: transparent;

  transition: all 0.3s ease;
}

.especialidade-card:hover {
  transform: translateY(-3px);

  border-color: rgba(46, 48, 146, 0.25);

  background: #fff;

  box-shadow: 0 10px 30px rgba(12, 12, 32, 0.05);
}


/* ÍCONE */

.especialidade-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  object-fit: contain;
}


/* TEXTO */

.especialidade-card span {
  color: var(--color-purple);

  font-family: "Fustat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}


/* =========================================================
   CTA
========================================================= */

.home-pt-6-cta {
  margin-top: 55px;
}

.home-pt-6-cta .btn-cta {
  padding-left: 38px;
  padding-right: 38px;
  font-size: 18px;
}

.home-pt-6-cta .btn-cta i {
  margin-left: 16px;

  font-size: 13px;

  transition: transform 0.3s ease;
}

.home-pt-6-cta .btn-cta:hover i {
  transform: translate(3px, -3px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-6 {
    padding: 60px 0;
  }

  .home-pt-6-title {
    margin-bottom: 40px;
  }

}


@media(max-width: 575.98px) {

  .home-pt-6 {
    padding: 45px 0;
  }

  .home-pt-6-title {
    margin-bottom: 30px;
  }

  .especialidade-card {
    min-height: 78px;

    padding: 16px 20px;

    border-radius: 16px;
  }

  .especialidade-icon {
    width: 42px;
    height: 42px;
  }

  .especialidade-card span {
    font-size: 15px;
  }

  .home-pt-6-cta {
    margin-top: 35px;
  }

}

/* =========================================================
   HOME - PT 7
========================================================= */

.home-pt-7 {
  padding: 95px 0;

  background: var(--color-purple);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.home-pt-7-content {
  padding-right: 60px;
}

.home-pt-7-content h2 {
  margin-bottom: 24px;
}

.home-pt-7-content h2 span {
  color: var(--color-orange);
}

.home-pt-7-content p {
  margin-bottom: 0;

  color: var(--color-white);

  font-weight: 400;
}


/* =========================================================
   LISTA
========================================================= */

.perfil-item {
  padding: 24px 25px 24px 30px;

  border-bottom: 1px solid rgba(243, 111, 66, 0.45);
}

.perfil-item:first-child {
  padding-top: 0;
}

.perfil-item-title {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 7px;
}

.perfil-item-title i {
  flex-shrink: 0;

  color: var(--color-orange);

  font-size: 16px;
}

.perfil-item h3 {
  margin-bottom: 0;

  color: var(--color-white);

  font-size: 16px;
  font-weight: 700;
}

.perfil-item p {
  margin: 0;
  padding-left: 26px;

  color: var(--color-white);

  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-7 {
    padding: 60px 0;
  }

  .home-pt-7-content {
    padding-right: 0;
  }

  .home-pt-7-list {
    margin-top: 10px;
  }

}


@media(max-width: 575.98px) {

  .home-pt-7 {
    padding: 45px 0;
  }

  .home-pt-7-content h2 {
    font-size: 36px;
  }

  .perfil-item {
    padding: 22px 0;
  }

  .perfil-item p {
    padding-left: 26px;
  }

}

/* =========================================================
   HOME - PT 8
========================================================= */

.home-pt-8 {
  padding: 90px 0;
  background: #fff;
}


/* =========================================================
   IMAGEM
========================================================= */

.home-pt-8-image {
  position: relative;

}

.home-pt-8-image img {
  display: block;

  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* BOX SOBRE A IMAGEM */

.home-pt-8-image-text {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 92%;

  padding: 30px 45px;

  border-radius: 0 22px 0 22px;

  background: #607D98;
}

.home-pt-8-image-text p {
  margin-bottom: 0;

  color: var(--color-white);

  font-weight: 400;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.home-pt-8-content h2 {
  margin-bottom: 20px;
}

.home-pt-8-content p {
  margin-bottom: 25px;

  font-weight: 400;
}

.home-pt-8-content p:last-child {
  margin-bottom: 0;
}

.home-pt-8-content h3 {
  margin-bottom: 12px;

  color: var(--color-purple);

  font-size: 18px;
  font-weight: 700;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-8 {
    padding: 60px 0;
  }

}


@media(max-width: 575.98px) {

  .home-pt-8 {
    padding: 45px 0;
  }

  .home-pt-8-image {
    padding-bottom: 0;
  }

  .home-pt-8-image-text {
    position: relative;

    width: 100%;

    padding: 24px;

    border-radius: 0 0 18px 18px;
  }

}

/* =========================================================
   HOME - PT 9
========================================================= */

.home-pt-9 {
  padding: 90px 0;
  background: #fff;
}


/* =========================================================
   CONTEÚDO / ETAPAS
========================================================= */

.home-pt-9-content h2 {
  margin-bottom: 45px;
}

.agendamento-etapas {
  position: relative;
}

.agendamento-etapa {
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  padding-bottom: 28px;
}

.agendamento-etapa:last-child {
  padding-bottom: 0;
}


/* LINHA ENTRE OS NÚMEROS */

.agendamento-etapa:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 58px;
  left: 31px;

  width: 1px;
  height: calc(100% - 42px);

  background: var(--color-orange);
}


/* NÚMERO */

.etapa-numero {
  position: relative;
  z-index: 2;

  width: 62px;
  height: 62px;

  flex: 0 0 62px;

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

  border-radius: 50%;

  background: var(--color-purple);
}

.etapa-numero span {
  color: var(--color-orange);

  font-size: 22px;
  font-weight: 700;
}


/* TEXTO */

.etapa-content {
  padding-top: 3px;
}

.etapa-content h3 {
  margin-bottom: 4px;

  color: var(--color-black);

  font-size: 16px;
  font-weight: 700;
}

.etapa-content p {
  margin-bottom: 0;

  font-weight: 400;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.agendamento-form-box {
  padding: 50px;

  border: 1px solid rgba(12, 12, 32, 0.06);
  border-radius: 24px;

  background: #F2F2F2;
}

.agendamento-form-box > h3 {
  margin-bottom: 12px;

  color: var(--color-black);

  font-size: 18px;
  font-weight: 700;
}

.agendamento-form-intro {
  margin-bottom: 28px;

  font-weight: 400;
}


/* INPUTS */

.agendamento-form .form-control {
  min-height: 52px;

  padding: 14px 20px;

  border: 1px solid rgba(12, 12, 32, 0.06);
  border-radius: 14px;

  background: #fff;
  color: var(--color-black);

  font-family: "Fustat", sans-serif;
  font-size: 14px;
  font-weight: 400;

  box-shadow: none;

  transition: all 0.3s ease;
}

.agendamento-form .form-control::placeholder {
  color: rgba(12, 12, 32, 0.75);
  opacity: 1;
}

.agendamento-form .form-control:focus {
  border-color: rgba(46, 48, 146, 0.45);

  box-shadow: 0 0 0 3px rgba(46, 48, 146, 0.08);
}


/* CTA */

.agendamento-submit {
  width: 100%;

  min-height: 52px;

  margin-top: 3px;
}

.agendamento-submit i {
  margin-left: 10px;

  font-size: 13px;

  transition: transform 0.3s ease;
}

.agendamento-submit:hover i {
  transform: translate(3px, -3px);
}


/* LGPD */

.agendamento-lgpd {
  margin: 20px 7px 0;

  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-9 {
    padding: 60px 0;
  }

  .home-pt-9-content h2 {
    margin-bottom: 35px;
  }

  .agendamento-form-box {
    padding: 35px;
  }

}


@media(max-width: 575.98px) {

  .home-pt-9 {
    padding: 45px 0;
  }

  .agendamento-etapa {
    gap: 15px;

    padding-bottom: 25px;
  }

  .etapa-numero {
    width: 52px;
    height: 52px;

    flex-basis: 52px;
  }

  .etapa-numero span {
    font-size: 19px;
  }

  .agendamento-etapa:not(:last-child)::after {
    top: 50px;
    left: 26px;

    height: calc(100% - 35px);
  }

  .agendamento-form-box {
    padding: 25px 20px;

    border-radius: 20px;
  }

}

/* =========================================================
   HOME - PT 10
========================================================= */

.home-pt-10 {
  padding: 90px 0;
  background: #fff;
}


/* BOX */

.home-pt-10-box {
  padding: 65px 50px;

  border-radius: 20px;

  background: var(--color-purple);
}


/* TÍTULO */

.home-pt-10-box h2 {
  margin-bottom: 18px;
}

.home-pt-10-box h2 span {
  color: var(--color-orange);
}


/* TEXTO */

.home-pt-10-box p {
  margin-bottom: 35px;

  color: var(--color-white);

  font-weight: 400;
}


/* CTA */

.home-pt-10-box .btn-cta {
  padding-left: 32px;
  padding-right: 32px;
}

.home-pt-10-box .btn-cta i {
  margin-left: 8px;

  font-size: 13px;

  transition: transform 0.3s ease;
}

.home-pt-10-box .btn-cta:hover i {
  transform: translate(3px, -3px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-10 {
    padding: 60px 0;
  }

  .home-pt-10-box {
    padding: 50px 35px;
  }

}


@media(max-width: 575.98px) {

  .home-pt-10 {
    padding: 45px 0;
  }

  .home-pt-10-box {
    padding: 40px 22px;

    border-radius: 18px;
  }

  .home-pt-10-box h2 {
    font-size: 32px;
  }

}

/* =========================================================
   FOOTER
========================================================= */

.footer-legare {
  padding: 55px 0 30px;

  background: var(--color-purple);
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  display: block;

  width: 190px;
  height: auto;
}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-label {
  display: block;

  margin-bottom: 12px;

  color: var(--color-white);

  font-family: "Fustat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-info a {
  margin-bottom: 7px;

  color: var(--color-white);

  font-size: 14px;
  font-weight: 400;
  line-height: 20px;

  text-decoration: none;

  transition: opacity 0.3s ease;
}

.footer-info a:hover {
  color: var(--color-white);
  opacity: 0.75;
}


/* =========================================================
   DIVISOR
========================================================= */

.footer-divider {
  width: 100%;
  height: 1px;

  margin: 45px 0 32px;

  background: rgba(243, 111, 66, 0.35);
}


/* =========================================================
   RODAPÉ INFERIOR
========================================================= */

.footer-bottom p {
  margin-bottom: 0;

  color: var(--color-white);

  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.footer-bottom a {
  color: var(--color-white);

  font-size: inherit;
  font-weight: 400;

  text-decoration: underline;
  text-underline-offset: 3px;

  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-white);
  opacity: 0.75;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 991.98px) {

  .footer-legare {
    padding: 45px 0 25px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-divider {
    margin: 35px 0 28px;
  }

}


@media(max-width: 575.98px) {

  .footer-legare {
    padding: 40px 0 25px;
  }

  .footer-logo img {
    width: 170px;
  }

  .footer-info {
    margin-top: 5px;
  }

}

/* =========================================================
   HERO - TABLET / MOBILE
========================================================= */

@media(max-width: 991.98px) {

  .home-pt-1 {
    min-height: 690px;

    display: block;

    padding: 125px 0 345px;

    background-image: url("/wp-content/themes/legare/img/banner-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
  }

  .home-pt-1::before {
    display: none;
  }

  .home-pt-1-content {
    text-align: center;
  }

  .home-pt-1 h1 {
    margin-bottom: 12px;

    font-size: 30px;
    line-height: 108%;
  }

  .home-pt-1 .hero-description {
    margin-bottom: 20px;

    font-size: 14px;
    line-height: 19px;

    font-weight: 400;
  }

  .home-pt-1 .hero-destaque {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 19px;
  }


  /* =========================================================
     BENEFÍCIOS
  ========================================================= */

  .hero-beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    margin-top: 28px;

    gap: 0;
  }

  .hero-beneficio {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    gap: 6px;

    padding: 13px 3px;

    text-align: left;

    border-bottom: 1px solid rgba(46, 48, 146, 0.20);
  }

  .hero-beneficio:nth-child(odd) {
    margin-right: 8px;
  }

  .hero-beneficio:nth-child(even) {
    margin-left: 8px;
  }

  .hero-beneficio:not(:last-child)::after {
    display: none;
  }

  .hero-beneficio i {
    flex-shrink: 0;

    margin-bottom: 0;

    color: var(--color-orange);

    font-size: 14px;
  }

  .hero-beneficio span {
    color: #607D98;

    font-size: 12px;
    line-height: 14px;
  }

}