:root {
  --delucca-wd-section: 1564px;
  --delucca-pd-y-section: 64px;
  --delucca-pd-x-section: 16px;

  --delucca-fs-title-h1: 40px;
  --delucca-fs-title-h2: 32px;
  --delucca-fs-title-h3: 24px;
  --delucca-fs-title-h4: 20px;
  --delucca-fs-base: 18px;
}
@media (max-width: 1599px) {
  :root {
    --delucca-wd-section: 1400px;

    --delucca-fs-title-h1: 38px;
    --delucca-fs-title-h2: 30px;
  }
}
@media (max-width: 1366px) {
  :root {
    --delucca-fs-title-h1: 36px;
    --delucca-fs-title-h2: 28px;
    --delucca-fs-title-h3: 22px;
    --delucca-fs-title-h4: 18px;
    --delucca-fs-base: 16px;

  }
}
@media (max-width: 991px) {
  :root {
    --delucca-pd-y-section: 56px;

    --delucca-fs-title-h1: 34px;
    --delucca-fs-title-h2: 26px;
  }
}
@media (max-width: 575px) {
  :root {
    --delucca-pd-y-section: 40px;

    --delucca-fs-title-h1: 30px;
    --delucca-fs-title-h2: 24px;
    --delucca-fs-title-h3: 20px;
  }
}
/* RESET */
*,
*::before,
*::after {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  text-wrap: pretty;
}
body {
  font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-top: 76px;
  background: #FFFFFF;
}
@media (max-width: 991px) {
  body {
    padding-top: 72.5px;
  }
}
/* General */
.delucca-title-h1 {
  font-size: var(--delucca-fs-title-h1);
}
.delucca-title-h2 {
  font-size: var(--delucca-fs-title-h2);
}
.delucca-title-h3 {
  font-size: var(--delucca-fs-title-h3);
}
.delucca-base {
  font-size: var(--delucca-fs-base);
}
/* END */
/* CUSTOM COLORS */
:root {
  --delucca-clr-primary: #45206A;
  --delucca-clr-primary-light: #8D4AD3;
  --delucca-clr-secondary: #3CB4E5;
  --delucca-clr-secondary-dark: #0A77A3;
  --delucca-clr-grey-700: #7C7C7C;
  --delucca-clr-grey-600: #6D6D6D;
  --delucca-clr-grey-300: #dcdcdc;
  --delucca-clr-grey-200: #E0E0E0;
  --delucca-clr-grey-100: #F8F8F8;
}
/* END CUSTOM COLORS */
/* GLOBAL */
.color-primary {
  color: var(--delucca-clr-primary) !important;
}
.color-primary-light {
  color: var(--delucca-clr-primary-light) !important;
}
.color-secondary {
  color: var(--delucca-clr-secondary) !important;
}
.color-secondary-dark {
  color: var(--delucca-clr-secondary-dark) !important;
}
.bg-primary {
  background-color: var(--delucca-clr-primary) !important;
}
.bg-secondary {
  background-color: var(--delucca-clr-secondary) !important;
}
.bg-gray {
  background-color: var(--delucca-clr-grey-200) !important;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 24px;
  font-size: var(--delucca-fs-base);
  font-weight: 600;
  text-wrap: nowrap;
  border: none;
  border-radius: 56px;
  color: #fff !important;
  background-color: var(--delucca-clr-primary);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-primary {
  background-color: var(--delucca-clr-primary);
}
.btn-primary:hover {
  background-color: var(--delucca-clr-secondary);
}
.btn-secondary {
  background-color: var(--delucca-clr-secondary);
}
.btn-secondary:hover {
  background-color: var(--delucca-clr-primary);
}
.btn-transp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 24px;
  font-size: var(--delucca-fs-base);
  font-weight: 600;
  text-wrap: nowrap;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 56px;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-transp-primary {
  border-color: var(--delucca-clr-primary);
  color: var(--delucca-clr-primary);
}
.btn-transp-primary:hover {
  background-color: var(--delucca-clr-primary);
  color: #fff;
}
.btn-transp-secondary {
  border-color: var(--delucca-clr-secondary);
  color: var(--delucca-clr-secondary);
}
.btn-transp-secondary:hover {
  background-color: var(--delucca-clr-secondary);
  color: #fff;
}
.btn-transp-white {
  border-color: #fff;
  color: #fff;
}
.btn-transp-white:hover {
  background-color: #fff;
  color: var(--delucca-clr-primary);
}
.container-custom {
  width: 100%;
  max-width: var(--delucca-wd-section);
  padding-left: var(--delucca-pd-x-section);
  padding-right: var(--delucca-pd-x-section);
  margin: 0 auto;
}
/* LOADER */
body:not(.loaded) {
  overflow: hidden;
}
#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.loaded #site-loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
#site-loader .loader__wrapper {
  position: relative;
  width: 200px;
}
#site-loader .loader__wrapper img {
  position: absolute;
  width: 100%;
}
#sombra1 {
  animation: sombra infinite 1.5s;
  transform-origin: center;
}
#sombra2 {
  animation: sombra infinite 1.5s .5s;
  transform-origin: center;
}
@keyframes sombra {
  from {
    transform: scale(1);
    opacity: .8;
  }
  to {
    transform: scale(1.7);
    opacity: 0;
  }
}
/* BOTÃO WPP FLUTUANTE */
#btnWpp {
  cursor: pointer;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  opacity: 1;
  background-color: rgba(18, 140, 126, 1);
  /* backdrop-filter: blur(4px); */
  transition: all 0.3s ease;
}
#btnWpp:hover {
  background-color: rgba(18, 140, 126, 1);
  transform: scale(1.1);
}
#btnWpp img {
  transition: all 0.5s ease-in;
  animation: none;
  width: 100%;
  max-width: 24px;
}
#btnWpp:hover > img {
  transform: scale(1.2);
  animation: btnWpp 1s infinite;
}
@keyframes btnWpp {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.2);
  }
  66% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/* BREADCRUMB */
#breadcrumb {
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  background: #fff;
}
#breadcrumb a {
  color: var(--delucca-clr-secondary);
  text-decoration: none;
}
#breadcrumb a:hover {
  text-decoration: underline;
}
#breadcrumb .breadcrumb-item.active {
  color: var(--delucca-clr-secondary);
}
#breadcrumb .breadcrumb {
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 0;
}
#breadcrumb .breadcrumb-item {
  display: flex;
  text-wrap: nowrap;
}
#breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  font-weight: bold;
  color: var(--delucca-clr-secondary);
}
/* NAVBAR */
.navbar.is-scrolled {
  background: #232323;
}
.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  padding: 0;
  font-size: var(--delucca-fs-base);
  background-color: #fff;
  transition: all 0.3s ease;
}
.navbar .navbar-brand img {
  max-height: 44px;
  width: 100%;
}
.navbar a {
  text-decoration: none;
  color: var(--delucca-clr-primary);
  transition: all 0.3s ease;
}
.navbar__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.navbar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 76px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.navbar__top ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 5%;
}
.navbar__top li {
  display: flex;
}
.navbar__top ul a {
  padding: 8px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.navbar__top ul a:hover {
  color: var(--delucca-clr-primary-light);
  text-decoration: underline;
}
.navbar__top ul .menu-item-has-children {
  position: relative;
}
.navbar__top ul .menu-item-has-children::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 9px;
  height: 36px;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 8'><path d='M14.5 1.08336C14.5 0.934178 14.4378 0.784847 14.3135 0.670952C14.0649 0.443017 13.6622 0.443017 13.4137 0.670952L7.49999 6.09181L1.58625 0.670951C1.33759 0.443016 0.934935 0.443016 0.686435 0.670951C0.437935 0.898887 0.437775 1.26799 0.686435 1.49578L7.05008 7.32905C7.29874 7.55699 7.7014 7.55699 7.9499 7.32905L14.3135 1.49578C14.4378 1.38188 14.5 1.23255 14.5 1.08336Z' fill='%2345206A' stroke='%2345206A'/></svg>");
  transition: all 0.3s ease;
}
.navbar__top ul .menu-item-has-children:hover::after {
  transform: translateY(-50%) rotate(-180deg);
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 8'><path d='M14.5 1.08336C14.5 0.934178 14.4378 0.784847 14.3135 0.670952C14.0649 0.443017 13.6622 0.443017 13.4137 0.670952L7.49999 6.09181L1.58625 0.670951C1.33759 0.443016 0.934935 0.443016 0.686435 0.670951C0.437935 0.898887 0.437775 1.26799 0.686435 1.49578L7.05008 7.32905C7.29874 7.55699 7.7014 7.55699 7.9499 7.32905L14.3135 1.49578C14.4378 1.38188 14.5 1.23255 14.5 1.08336Z' fill='%238D4AD3' stroke='%238D4AD3'/></svg>");
}
.navbar__top ul .sub-menu {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 95%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 0 16px;
  min-width: 400px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.navbar__top ul .menu-item-has-children:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
}
.navbar__top ul .sub-menu li {
  width: 100%;
  padding: 16px 0;
}
.navbar__top ul .sub-menu li:not(:last-child) {
  border-bottom: 1px solid var(--delucca-clr-grey-200);
}
.navbar__top ul .sub-menu a {
  padding: 0;
}
/* NAVBAR MOBILE */
.navbar__mobile {
  background: #fff;
  max-height: 72px;
  flex-wrap: nowrap !important;
  gap: 16px;
}
.navbar__mobile .navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar__mobile .navbar-brand img {
  max-height: 40px;
}
.navbar__mobile .offcanvas.offcanvas-end {
  width: 100%;
  max-width: 500px;
  border-left: none;
}
.navbar__mobile .offcanvas-toggle {
  background: transparent;
}
.navbar__mobile .offcanvas-toggle img {
  width: 36px;
}
.navbar__mobile .offcanvas-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.navbar__mobile .btn-close-menu {
  background: transparent;
}
.navbar__mobile .offcanvas {
  background-color: #fff;
}
.navbar__mobile .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 16px;
}
.navbar__mobile .offcanvas-body .btn {
  width: 100%;
}
.navbar__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.navbar__mobile .menu-item {
  display: flex;
}
.navbar__mobile .menu-item a {
  position: relative;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--delucca-clr-grey-200);
  text-transform: uppercase;
}
.navbar__mobile .menu-item a::after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='15' viewBox='0 0 8 15' fill='none'><path d='M1.08336 0.500001C0.934176 0.500001 0.784845 0.562205 0.67095 0.686456C0.443015 0.935115 0.443015 1.33778 0.67095 1.58628L6.09181 7.50001L0.670951 13.4137C0.443016 13.6624 0.443016 14.0651 0.670951 14.3136C0.898887 14.5621 1.26799 14.5622 1.49578 14.3136L7.32905 7.94992C7.55698 7.70126 7.55698 7.2986 7.32905 7.0501L1.49577 0.686456C1.38188 0.562205 1.23255 0.500001 1.08336 0.500001Z' fill='%2345206A' stroke='%2345206A'/></svg>");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.navbar__mobile .menu-item-has-children {
  flex-direction: column;
}
/* FOOTER */
#footer {
  background: #fff;
}
#footer a {
  width: fit-content;
  text-decoration: none;
  color: var(--delucca-clr-grey-600);
}
#footer .links {
  font-size: var(--delucca-fs-base);
  color: var(--delucca-clr-grey-600);
}
#footer .links .item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 350px;
}
#footer .links .title {
  width: fit-content;
  font-size: var(--delucca-fs-title-h4);
  font-weight: 600;
  color: var(--delucca-clr-primary);
}
#footer .links img {
  max-width: 60%;
}
#footer .links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
#footer .sociais {
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-self: end;
  gap: 16px;
}
#footer .sociais .sociais__redes {
  display: flex;
  gap: 16px;
}
#footer .sociais .sociais__redes img {
  max-width: 30px;
}
#footer .privacy__link {
  max-width: 184px;
  text-align: end;
  /*font-weight: 600;*/
  color: var(--delucca-clr-grey-600);
  text-wrap: balance;
}
#footer .privacy__link a {
  text-decoration: underline;
  color: var(--delucca-clr-secondary-dark);
}
#footer .privacy__link a:hover {
  color: var(--delucca-clr-primary);
}
#footer .logo__footer {
  display: flex;
  justify-content: end;
  align-items: end;
  flex: 1;
}
#footer .logo__footer img {
  max-width: 100%;
}
.copyright .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--delucca-fs-base);
  border-top: 1px solid var(--delucca-clr-secondary);
  color: #fff;
}
.copyright .copy {
  max-width: 50%;
  color: var(--delucca-clr-grey-600);
}
.copyright .copy-dev {
  transform-origin: 100% 50%;
  transition: all 0.3s ease;
}
.copyright .copy-dev:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  #footer .links .item {
    max-width: 100%;
  }
  #footer .sociais {
    align-self: start;
  }
  #footer .privacy__link {
    max-width: 100%;
  }
  #footer .logo__footer {
    justify-content: start;
    align-items: start;
  }
  #footer .links .row {
    flex-direction: column;
    gap: 32px !important;
  }
  #footer .links img:first-of-type {
    max-width: 200px;
  }
  .copyright .container-custom .wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
  .copyright .copy {
    max-width: 100%;
  }
}
/* BLOCAGEM TEXTO IMAGEM */
.textoImagem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 600px;
}
.textoImagem .texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  gap: 16px;
}
.textoImagem .texto.esquerda {
  justify-self: flex-end;
  padding: 100px 100px 100px 10px;
}
.textoImagem .texto.direita {
  justify-self: flex-start;
  padding: 100px 10px 100px 100px;
}
.textoImagem .imagem {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.textoImagem .imagem .img-full {
  height: 0;
  width: 0;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 991px) {
  .textoImagem {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .textoImagem .texto.esquerda,
  .textoImagem .texto.direita {
    justify-self: center;
    padding: 32px 0;
  }
  .textoImagem .imagem .img-full {
    width: 100%;
    height: auto;
  }
}