body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #f7df67 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
  color: #000000 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f1dc04 !important;
  border-color: #f1dc04 !important;
  color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000000 !important;
  background-color: #f1dc04 !important;
  border-color: #f1dc04 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #f1dc04 !important;
  border-color: #f1dc04 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #000000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #f7df67;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f7df67;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #f3ce15 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #5a4c05 !important;
  background-color: #f7df67 !important;
  border-color: #f7df67 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f1dc04;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9c8e03 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #f1dc04 !important;
  border-color: #f1dc04 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #272727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f7df67 !important;
}
.text-secondary {
  color: #f1dc04 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f7df67 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #8d8002 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #f7df67;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f7df67;
  border-color: #f7df67;
  color: #726006;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f7df67;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f7df67 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #f7df67;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f7df67;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f7df67;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f7df67;
  border-bottom-color: #f7df67;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f7df67 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f1dc04 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f7df67' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t3rKekLX1t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3rKekLX1t .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-t3rKekLX1t .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-t3rKekLX1t nav.navbar {
  position: fixed;
}
.cid-t3rKekLX1t .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-t3rKekLX1t .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-item {
    border: 0;
  }
}
.cid-t3rKekLX1t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-t3rKekLX1t .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-t3rKekLX1t .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-t3rKekLX1t .title-wrap:hover span {
  color: white;
}
.cid-t3rKekLX1t .title-wrap:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-t3rKekLX1t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3rKekLX1t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3rKekLX1t .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3rKekLX1t .nav-link {
  position: relative;
}
.cid-t3rKekLX1t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .container {
    flex-wrap: nowrap;
  }
}
.cid-t3rKekLX1t .dropdown-menu,
.cid-t3rKekLX1t .navbar.opened {
  background: #000000 !important;
}
.cid-t3rKekLX1t .nav-item:focus,
.cid-t3rKekLX1t .nav-link:focus {
  outline: none;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3rKekLX1t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3rKekLX1t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-t3rKekLX1t .navbar.opened {
  transition: all 0.3s;
}
.cid-t3rKekLX1t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3rKekLX1t .navbar .navbar-logo img {
  width: auto;
}
.cid-t3rKekLX1t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3rKekLX1t .navbar.collapsed {
  justify-content: center;
}
.cid-t3rKekLX1t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3rKekLX1t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t3rKekLX1t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3rKekLX1t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3rKekLX1t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3rKekLX1t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t3rKekLX1t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3rKekLX1t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3rKekLX1t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3rKekLX1t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3rKekLX1t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3rKekLX1t .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3rKekLX1t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3rKekLX1t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3rKekLX1t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3rKekLX1t .dropdown-item.active,
.cid-t3rKekLX1t .dropdown-item:active {
  background-color: transparent;
}
.cid-t3rKekLX1t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3rKekLX1t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3rKekLX1t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3rKekLX1t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3rKekLX1t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3rKekLX1t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3rKekLX1t .navbar {
    height: 70px;
  }
  .cid-t3rKekLX1t .navbar.opened {
    height: auto;
  }
  .cid-t3rKekLX1t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3rKekLX1t .navbar-caption-wrap,
.cid-t3rKekLX1t .title-wrap {
  color: #272727;
}
.cid-t3rKdK4uyp .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #f7df67;
}
.cid-t3rKdK4uyp .card-wrapper {
  min-height: 300px;
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t3rKdK4uyp .icon1 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon2 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon3 {
  color: #272727;
}
.cid-t3rKdK4uyp .icon4 {
  color: #272727;
}
.cid-t3rKdK4uyp .big {
  min-height: 100%;
}
.cid-t3rKdK4uyp .mbr-section-btn {
  max-width: 200px;
}
.cid-t3rKdK4uyp .mbr-section-btn .btn {
  margin: 2px;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .mbr-section-btn {
    text-align: center;
    max-width: 100%;
    margin: auto;
  }
}
.cid-t3rKdK4uyp .card1 {
  background-image: url("../../../assets/images/tipos-de-acabamento-para-pisos-com-sinteco.webp");
  background-size: cover;
  background-position: center;
  padding: 6rem;
}
.cid-t3rKdK4uyp .card1 .mbr-iconfont {
  font-size: 16.5rem;
}
@media (max-width: 767px) {
  .cid-t3rKdK4uyp .card1 {
    padding: 3rem 1rem;
  }
}
.cid-t3rKdK4uyp .card-box {
  z-index: 2;
}
.cid-t3rKdK4uyp .card2 {
  background-image: url("../../../assets/images/decoracao-de-sala-com-piso-de-madeira.webp");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card2 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card2:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #272727;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card2:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card2:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card3 {
  background-image: url("../../../assets/images/aplicacao-de-bona-4-833x625.jpeg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card3 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7df67;
  transition: all 0.3s;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card3:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card3:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card4 {
  background-image: url("../../../assets/images/o-que-e-sinteco-e-como-ele-e-aplicado-1080x675.jpeg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card4:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card4:hover:before {
  opacity: 0;
}
.cid-t3rKdK4uyp .card4 .mbr-iconfont {
  background: #f7df67;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-t3rKdK4uyp .card-title,
.cid-t3rKdK4uyp .card-box {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card2-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card3-title {
  color: #272727;
}
.cid-t3rKdK4uyp .card4-title {
  color: #000000;
}
.cid-t3rKdK4uyp .card1-title {
  color: #f1dc04;
}
.cid-t3rKdK4uyp .card2-text {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card4-text {
  color: #ffffff;
}
.cid-uOZnSMhCaD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  align-items: flex-end;
  background-color: #f4f4f4;
}
.cid-uOZnSMhCaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOZnSMhCaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOZnSMhCaD .card {
  justify-content: flex-end;
}
.cid-uOZnSMhCaD .content-wrapper {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .cid-uOZnSMhCaD .content-wrapper {
    margin-bottom: 10px;
    padding: 40px 0;
  }
}
.cid-uOZnSMhCaD .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uOZnSMhCaD .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uOZnSMhCaD .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOZnSMhCaD .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uOZnSMhCaD .items-wrapper {
  height: 100%;
  min-height: 700px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uOZnSMhCaD .items-wrapper {
    height: 350px;
    min-height: auto;
  }
}
.cid-uOZnSMhCaD .items-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uOZnSMhCaD .items-wrapper .image-wrapper img {
    width: 100%;
  }
}
.cid-uOZnSMhCaD .items-wrapper .image-wrap img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  object-fit: cover;
  z-index: 1;
}
.cid-uOZnSMhCaD .mbr-section-title {
  color: #093388;
}
.cid-uOZnSMhCaD .mbr-text {
  color: #58595b;
}
.cid-uOZnSMhCaD .mbr-section-title,
.cid-uOZnSMhCaD .mbr-section-btn {
  color: #101112;
}
.cid-uOZubjaSxl {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f7df67;
}
.cid-uOZubjaSxl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOZubjaSxl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOZubjaSxl .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uOZubjaSxl .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-uOZubjaSxl .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-uOZubjaSxl .wrapper {
  padding: 30px 0;
}
.cid-uOZubjaSxl .mbr-section-title {
  color: #000000;
}
.cid-uOZubjaSxl .mbr-text,
.cid-uOZubjaSxl .mbr-section-btn {
  color: #272727;
}
.cid-uOZubjaSxl mbr-section-title {
  color: #000000;
}
.cid-uOZwjoluwq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #373f46;
}
.cid-uOZwjoluwq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOZwjoluwq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOZwjoluwq .mbr-section-title {
  color: #ffffff;
}
.cid-uOZwjoluwq .mbr-text,
.cid-uOZwjoluwq .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uOZndupNWX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uOZndupNWX .showAlerts {
  display: block !important;
}
.cid-uOZndupNWX .rowflexrev {
  display: -webkit-flex;
}
.cid-uOZndupNWX .title {
  margin-bottom: 2rem;
}
.cid-uOZndupNWX .mbr-section-subtitle {
  color: #767676;
}
.cid-uOZndupNWX textarea.form-control {
  min-height: 188px;
}
.cid-uOZndupNWX LABEL {
  color: #232323;
  display: initial;
}
.cid-uOZndupNWX .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uOZndupNWX .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uOZndupNWX .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uOZndupNWX .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uOZndupNWX .alert {
  margin-bottom: 0;
}
.cid-uOZndupNWX .alert-success {
  background-color: #70c770;
}
.cid-uOZndupNWX .alert-danger {
  background-color: #ff4a52;
}
.cid-uOZndupNWX .btn {
  display: inline-flex;
}
.cid-uOZndupNWX .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uOZndupNWX .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uOZndupNWX .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uOZndupNWX input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uOZndupNWX input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uOZndupNWX input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uOZndupNWX input,
.cid-uOZndupNWX option,
.cid-uOZndupNWX textarea {
  color: #000000;
}
.cid-uOZDWLC09D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uOZDWLC09D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOZDWLC09D .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uOZDWLC09D img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uOZDWLC09D .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOZDWLC09D .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uOZDWLC09D .mbr-section-title {
  color: #ffffff;
}
.cid-uOZDWLC09D .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-t3rKekLX1t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3rKekLX1t .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-t3rKekLX1t .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-t3rKekLX1t .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-t3rKekLX1t nav.navbar {
  position: fixed;
}
.cid-t3rKekLX1t .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-t3rKekLX1t .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-item {
    border: 0;
  }
}
.cid-t3rKekLX1t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-t3rKekLX1t .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-t3rKekLX1t .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-t3rKekLX1t .title-wrap:hover span {
  color: white;
}
.cid-t3rKekLX1t .title-wrap:hover:before {
  height: 100%;
}
.cid-t3rKekLX1t .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-t3rKekLX1t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3rKekLX1t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3rKekLX1t .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-t3rKekLX1t .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3rKekLX1t .nav-link {
  position: relative;
}
.cid-t3rKekLX1t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .container {
    flex-wrap: nowrap;
  }
}
.cid-t3rKekLX1t .dropdown-menu,
.cid-t3rKekLX1t .navbar.opened {
  background: #000000 !important;
}
.cid-t3rKekLX1t .nav-item:focus,
.cid-t3rKekLX1t .nav-link:focus {
  outline: none;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3rKekLX1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rKekLX1t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3rKekLX1t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3rKekLX1t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-t3rKekLX1t .navbar.opened {
  transition: all 0.3s;
}
.cid-t3rKekLX1t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3rKekLX1t .navbar .navbar-logo img {
  width: auto;
}
.cid-t3rKekLX1t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3rKekLX1t .navbar.collapsed {
  justify-content: center;
}
.cid-t3rKekLX1t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3rKekLX1t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3rKekLX1t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t3rKekLX1t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3rKekLX1t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3rKekLX1t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3rKekLX1t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3rKekLX1t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t3rKekLX1t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3rKekLX1t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3rKekLX1t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3rKekLX1t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3rKekLX1t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3rKekLX1t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3rKekLX1t .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3rKekLX1t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3rKekLX1t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3rKekLX1t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3rKekLX1t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3rKekLX1t .dropdown-item.active,
.cid-t3rKekLX1t .dropdown-item:active {
  background-color: transparent;
}
.cid-t3rKekLX1t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3rKekLX1t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t3rKekLX1t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3rKekLX1t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3rKekLX1t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3rKekLX1t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3rKekLX1t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rKekLX1t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3rKekLX1t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rKekLX1t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3rKekLX1t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3rKekLX1t .navbar {
    height: 70px;
  }
  .cid-t3rKekLX1t .navbar.opened {
    height: auto;
  }
  .cid-t3rKekLX1t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3rKekLX1t .navbar-caption-wrap,
.cid-t3rKekLX1t .title-wrap {
  color: #272727;
}
.cid-uP4k9nDb5P {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/decoracao-de-sala-com-piso-de-madeira-1.webp");
  position: relative;
}
.cid-uP4k9nDb5P::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#101112 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-uP4k9nDb5P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4k9nDb5P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4k9nDb5P .row {
  justify-content: center;
}
.cid-uP4k9nDb5P .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uP4k9nDb5P .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #ffffff, #f7df67 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uP4k9nDb5P .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP4k9nDb5P .mbr-section-title {
  color: #ffffff;
}
.cid-uP4k9nDb5P .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uP4k9nDb5P .mbr-section-title,
.cid-uP4k9nDb5P .mbr-section-btn {
  text-align: center;
}
.cid-uP4fX6sO54 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP4fX6sO54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4fX6sO54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4fX6sO54 .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-uP4fX6sO54 .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uP4fX6sO54 .item {
    margin-bottom: 15px;
  }
}
.cid-uP4fX6sO54 .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #e0e0e0;
}
@media (max-width: 992px) {
  .cid-uP4fX6sO54 .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uP4fX6sO54 .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uP4fX6sO54 .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uP4fX6sO54 .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uP4fX6sO54 .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uP4fX6sO54 .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uP4fX6sO54 .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uP4fX6sO54 .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uP4fX6sO54 .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uP4fX6sO54 .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uP4fX6sO54 .card-title {
  color: #000000;
}
.cid-uP4fX6sO54 .card-text {
  color: #8a8a8a;
}
.cid-uP4l4Gr2UL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uP4l4Gr2UL .showAlerts {
  display: block !important;
}
.cid-uP4l4Gr2UL .rowflexrev {
  display: -webkit-flex;
}
.cid-uP4l4Gr2UL .title {
  margin-bottom: 2rem;
}
.cid-uP4l4Gr2UL .mbr-section-subtitle {
  color: #767676;
}
.cid-uP4l4Gr2UL textarea.form-control {
  min-height: 188px;
}
.cid-uP4l4Gr2UL LABEL {
  color: #232323;
  display: initial;
}
.cid-uP4l4Gr2UL .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4l4Gr2UL .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uP4l4Gr2UL .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4l4Gr2UL .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4l4Gr2UL .alert {
  margin-bottom: 0;
}
.cid-uP4l4Gr2UL .alert-success {
  background-color: #70c770;
}
.cid-uP4l4Gr2UL .alert-danger {
  background-color: #ff4a52;
}
.cid-uP4l4Gr2UL .btn {
  display: inline-flex;
}
.cid-uP4l4Gr2UL .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uP4l4Gr2UL .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uP4l4Gr2UL .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uP4l4Gr2UL input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4l4Gr2UL input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4l4Gr2UL input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4l4Gr2UL input,
.cid-uP4l4Gr2UL option,
.cid-uP4l4Gr2UL textarea {
  color: #000000;
}
.cid-uP4fz1GsF5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uP4fz1GsF5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP4fz1GsF5 .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uP4fz1GsF5 img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4fz1GsF5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uP4fz1GsF5 .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uP4fz1GsF5 .mbr-section-title {
  color: #ffffff;
}
.cid-uP4fz1GsF5 .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-uP4lW50Rkj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP4lW50Rkj .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uP4lW50Rkj .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uP4lW50Rkj .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uP4lW50Rkj .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uP4lW50Rkj .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-uP4lW50Rkj nav.navbar {
  position: fixed;
}
.cid-uP4lW50Rkj .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uP4lW50Rkj .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uP4lW50Rkj .nav-item {
    border: 0;
  }
}
.cid-uP4lW50Rkj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uP4lW50Rkj .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uP4lW50Rkj .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uP4lW50Rkj .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uP4lW50Rkj .title-wrap:hover span {
  color: white;
}
.cid-uP4lW50Rkj .title-wrap:hover:before {
  height: 100%;
}
.cid-uP4lW50Rkj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4lW50Rkj .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-uP4lW50Rkj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP4lW50Rkj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP4lW50Rkj .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uP4lW50Rkj .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uP4lW50Rkj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP4lW50Rkj .nav-link {
  position: relative;
}
.cid-uP4lW50Rkj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4lW50Rkj .container {
    flex-wrap: nowrap;
  }
}
.cid-uP4lW50Rkj .dropdown-menu,
.cid-uP4lW50Rkj .navbar.opened {
  background: #000000 !important;
}
.cid-uP4lW50Rkj .nav-item:focus,
.cid-uP4lW50Rkj .nav-link:focus {
  outline: none;
}
.cid-uP4lW50Rkj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP4lW50Rkj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP4lW50Rkj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP4lW50Rkj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4lW50Rkj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP4lW50Rkj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP4lW50Rkj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-uP4lW50Rkj .navbar.opened {
  transition: all 0.3s;
}
.cid-uP4lW50Rkj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP4lW50Rkj .navbar .navbar-logo img {
  width: auto;
}
.cid-uP4lW50Rkj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP4lW50Rkj .navbar.collapsed {
  justify-content: center;
}
.cid-uP4lW50Rkj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP4lW50Rkj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP4lW50Rkj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-uP4lW50Rkj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP4lW50Rkj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP4lW50Rkj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uP4lW50Rkj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP4lW50Rkj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP4lW50Rkj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP4lW50Rkj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP4lW50Rkj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP4lW50Rkj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP4lW50Rkj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP4lW50Rkj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uP4lW50Rkj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP4lW50Rkj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP4lW50Rkj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP4lW50Rkj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP4lW50Rkj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP4lW50Rkj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP4lW50Rkj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP4lW50Rkj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP4lW50Rkj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP4lW50Rkj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP4lW50Rkj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP4lW50Rkj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP4lW50Rkj .dropdown-item.active,
.cid-uP4lW50Rkj .dropdown-item:active {
  background-color: transparent;
}
.cid-uP4lW50Rkj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP4lW50Rkj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP4lW50Rkj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP4lW50Rkj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uP4lW50Rkj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP4lW50Rkj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP4lW50Rkj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP4lW50Rkj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP4lW50Rkj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP4lW50Rkj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP4lW50Rkj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP4lW50Rkj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4lW50Rkj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4lW50Rkj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP4lW50Rkj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4lW50Rkj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP4lW50Rkj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP4lW50Rkj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4lW50Rkj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP4lW50Rkj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP4lW50Rkj .navbar {
    height: 70px;
  }
  .cid-uP4lW50Rkj .navbar.opened {
    height: auto;
  }
  .cid-uP4lW50Rkj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP4lW50Rkj .navbar-caption-wrap,
.cid-uP4lW50Rkj .title-wrap {
  color: #272727;
}
.cid-uP4lW5R53K {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/decoracao-de-sala-com-piso-de-madeira-1.webp");
  position: relative;
}
.cid-uP4lW5R53K::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#101112 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-uP4lW5R53K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4lW5R53K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4lW5R53K .row {
  justify-content: center;
}
.cid-uP4lW5R53K .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uP4lW5R53K .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #ffffff, #f7df67 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uP4lW5R53K .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP4lW5R53K .mbr-section-title {
  color: #ffffff;
}
.cid-uP4lW5R53K .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uP4lW5R53K .mbr-section-title,
.cid-uP4lW5R53K .mbr-section-btn {
  text-align: center;
}
.cid-uP4o1S2EpC {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uP4o1S2EpC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uP4o1S2EpC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP4o1S2EpC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP4o1S2EpC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uP4o1S2EpC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #febc04;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uP4o1S2EpC .icon-focus,
.cid-uP4o1S2EpC .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uP4o1S2EpC .icon-focus:before,
.cid-uP4o1S2EpC .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP4o1S2EpC .icon-video {
  font-size: 1.5rem !important;
}
.cid-uP4o1S2EpC .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uP4o1S2EpC ul {
  font-size: 0;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-uP4o1S2EpC .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li:first-child,
.cid-uP4o1S2EpC .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uP4o1S2EpC .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uP4o1S2EpC .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-uP4o1S2EpC .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-uP4o1S2EpC .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-uP4o1S2EpC .mbr-section-title b:last-child,
.cid-uP4o1S2EpC .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-uP4o1S2EpC .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-uP4o1S2EpC .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-uP4qs9iWFw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #373f46;
}
.cid-uP4qs9iWFw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4qs9iWFw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4qs9iWFw .mbr-section-title {
  color: #ffffff;
}
.cid-uP4qs9iWFw .mbr-text,
.cid-uP4qs9iWFw .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uP4lW78VyZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uP4lW78VyZ .showAlerts {
  display: block !important;
}
.cid-uP4lW78VyZ .rowflexrev {
  display: -webkit-flex;
}
.cid-uP4lW78VyZ .title {
  margin-bottom: 2rem;
}
.cid-uP4lW78VyZ .mbr-section-subtitle {
  color: #767676;
}
.cid-uP4lW78VyZ textarea.form-control {
  min-height: 188px;
}
.cid-uP4lW78VyZ LABEL {
  color: #232323;
  display: initial;
}
.cid-uP4lW78VyZ .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4lW78VyZ .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uP4lW78VyZ .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4lW78VyZ .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4lW78VyZ .alert {
  margin-bottom: 0;
}
.cid-uP4lW78VyZ .alert-success {
  background-color: #70c770;
}
.cid-uP4lW78VyZ .alert-danger {
  background-color: #ff4a52;
}
.cid-uP4lW78VyZ .btn {
  display: inline-flex;
}
.cid-uP4lW78VyZ .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uP4lW78VyZ .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uP4lW78VyZ .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uP4lW78VyZ input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4lW78VyZ input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4lW78VyZ input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4lW78VyZ input,
.cid-uP4lW78VyZ option,
.cid-uP4lW78VyZ textarea {
  color: #000000;
}
.cid-uP4lW80LV6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uP4lW80LV6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP4lW80LV6 .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uP4lW80LV6 img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4lW80LV6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uP4lW80LV6 .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uP4lW80LV6 .mbr-section-title {
  color: #ffffff;
}
.cid-uP4lW80LV6 .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-uP4qNSOpCc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP4qNSOpCc .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uP4qNSOpCc .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uP4qNSOpCc .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uP4qNSOpCc .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uP4qNSOpCc .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-uP4qNSOpCc nav.navbar {
  position: fixed;
}
.cid-uP4qNSOpCc .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uP4qNSOpCc .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uP4qNSOpCc .nav-item {
    border: 0;
  }
}
.cid-uP4qNSOpCc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uP4qNSOpCc .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uP4qNSOpCc .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uP4qNSOpCc .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uP4qNSOpCc .title-wrap:hover span {
  color: white;
}
.cid-uP4qNSOpCc .title-wrap:hover:before {
  height: 100%;
}
.cid-uP4qNSOpCc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4qNSOpCc .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-uP4qNSOpCc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP4qNSOpCc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP4qNSOpCc .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uP4qNSOpCc .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uP4qNSOpCc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP4qNSOpCc .nav-link {
  position: relative;
}
.cid-uP4qNSOpCc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4qNSOpCc .container {
    flex-wrap: nowrap;
  }
}
.cid-uP4qNSOpCc .dropdown-menu,
.cid-uP4qNSOpCc .navbar.opened {
  background: #000000 !important;
}
.cid-uP4qNSOpCc .nav-item:focus,
.cid-uP4qNSOpCc .nav-link:focus {
  outline: none;
}
.cid-uP4qNSOpCc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP4qNSOpCc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP4qNSOpCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP4qNSOpCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4qNSOpCc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP4qNSOpCc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP4qNSOpCc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-uP4qNSOpCc .navbar.opened {
  transition: all 0.3s;
}
.cid-uP4qNSOpCc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP4qNSOpCc .navbar .navbar-logo img {
  width: auto;
}
.cid-uP4qNSOpCc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP4qNSOpCc .navbar.collapsed {
  justify-content: center;
}
.cid-uP4qNSOpCc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP4qNSOpCc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP4qNSOpCc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-uP4qNSOpCc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP4qNSOpCc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP4qNSOpCc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uP4qNSOpCc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP4qNSOpCc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP4qNSOpCc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP4qNSOpCc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP4qNSOpCc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP4qNSOpCc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP4qNSOpCc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP4qNSOpCc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uP4qNSOpCc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP4qNSOpCc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP4qNSOpCc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP4qNSOpCc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP4qNSOpCc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP4qNSOpCc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP4qNSOpCc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP4qNSOpCc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP4qNSOpCc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP4qNSOpCc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP4qNSOpCc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP4qNSOpCc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP4qNSOpCc .dropdown-item.active,
.cid-uP4qNSOpCc .dropdown-item:active {
  background-color: transparent;
}
.cid-uP4qNSOpCc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP4qNSOpCc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP4qNSOpCc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP4qNSOpCc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uP4qNSOpCc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP4qNSOpCc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP4qNSOpCc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP4qNSOpCc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP4qNSOpCc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP4qNSOpCc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP4qNSOpCc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP4qNSOpCc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4qNSOpCc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4qNSOpCc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP4qNSOpCc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4qNSOpCc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP4qNSOpCc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP4qNSOpCc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4qNSOpCc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP4qNSOpCc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP4qNSOpCc .navbar {
    height: 70px;
  }
  .cid-uP4qNSOpCc .navbar.opened {
    height: auto;
  }
  .cid-uP4qNSOpCc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP4qNSOpCc .navbar-caption-wrap,
.cid-uP4qNSOpCc .title-wrap {
  color: #272727;
}
.cid-uP4qNTD5t1 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/decoracao-de-sala-com-piso-de-madeira-1.webp");
  position: relative;
}
.cid-uP4qNTD5t1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#101112 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-uP4qNTD5t1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4qNTD5t1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4qNTD5t1 .row {
  justify-content: center;
}
.cid-uP4qNTD5t1 .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uP4qNTD5t1 .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #ffffff, #f7df67 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uP4qNTD5t1 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP4qNTD5t1 .mbr-section-title {
  color: #ffffff;
}
.cid-uP4qNTD5t1 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uP4qNTD5t1 .mbr-section-title,
.cid-uP4qNTD5t1 .mbr-section-btn {
  text-align: center;
}
.cid-uP4s2VWsjL {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP4s2VWsjL .row {
  flex-direction: row-reverse;
}
.cid-uP4s2VWsjL .container-fluid {
  padding: 0;
}
.cid-uP4s2VWsjL .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP4s2VWsjL .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP4s2VWsjL .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP4s2VWsjL .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP4s2VWsjL .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP4s2VWsjL .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP4s2VWsjL .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP4s2VWsjL .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP4s2VWsjL .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4snvJ0ao {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP4snvJ0ao .container-fluid {
  padding: 0;
}
.cid-uP4snvJ0ao .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP4snvJ0ao .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP4snvJ0ao .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP4snvJ0ao .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP4snvJ0ao .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP4snvJ0ao .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP4snvJ0ao .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP4snvJ0ao .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP4snvJ0ao .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4srBhi6W {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP4srBhi6W .row {
  flex-direction: row-reverse;
}
.cid-uP4srBhi6W .container-fluid {
  padding: 0;
}
.cid-uP4srBhi6W .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP4srBhi6W .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP4srBhi6W .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP4srBhi6W .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP4srBhi6W .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP4srBhi6W .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP4srBhi6W .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP4srBhi6W .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP4srBhi6W .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4EgRy22N {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uP4EgRy22N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4EgRy22N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4EgRy22N .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uP4EgRy22N .mbr-section-title {
  color: #24262b;
}
.cid-uP4EgRy22N .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uP4EgRy22N .items-row {
  row-gap: 32px;
}
.cid-uP4EgRy22N .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uP4EgRy22N .item-wrapper img {
  width: 100%;
  height: calc(50px * 4);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uP4EgRy22N .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-uP4EgRy22N .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uP4EgRy22N .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uP4EgRy22N .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uP4EgRy22N .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uP4EgRy22N .carousel-control,
.cid-uP4EgRy22N .close {
  background: #1b1b1b;
}
.cid-uP4EgRy22N .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uP4EgRy22N .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uP4EgRy22N .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uP4EgRy22N .carousel-control-next span {
  margin-left: 5px;
}
.cid-uP4EgRy22N .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uP4EgRy22N .close::before {
  content: '\e91a';
}
.cid-uP4EgRy22N .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uP4EgRy22N .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uP4EgRy22N .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP4EgRy22N .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uP4EgRy22N .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uP4EgRy22N .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uP4EgRy22N .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uP4EgRy22N .carousel-indicators li.active,
.cid-uP4EgRy22N .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uP4EgRy22N .carousel-indicators li::after,
.cid-uP4EgRy22N .carousel-indicators li::before {
  content: none;
}
.cid-uP4EgRy22N .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uP4EgRy22N .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uP4EgRy22N .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uP4EgRy22N .carousel-indicators {
    display: none;
  }
}
.cid-uP4EgRy22N .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uP4EgRy22N .carousel-inner > .active {
  display: block;
}
.cid-uP4EgRy22N .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP4EgRy22N .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP4EgRy22N .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uP4EgRy22N .carousel-control,
  .cid-uP4EgRy22N .carousel-indicators,
  .cid-uP4EgRy22N .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uP4EgRy22N .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uP4EgRy22N .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uP4EgRy22N .carousel-indicators .active,
.cid-uP4EgRy22N .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uP4EgRy22N .carousel-indicators .active {
  background: #fff;
}
.cid-uP4EgRy22N .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uP4EgRy22N .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uP4EgRy22N .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uP4EgRy22N .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uP4EgRy22N .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uP4EgRy22N .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uP4EgRy22N .carousel {
  width: 100%;
}
.cid-uP4EgRy22N .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uP4EgRy22N .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uP4EgRy22N .modal.fade .modal-dialog,
.cid-uP4EgRy22N .modal.in .modal-dialog {
  transform: none;
}
.cid-uP4EgRy22N .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uP4EgRy22N H6 {
  text-align: center;
}
.cid-uP4suePWyF {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP4suePWyF .container-fluid {
  padding: 0;
}
.cid-uP4suePWyF .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP4suePWyF .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP4suePWyF .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP4suePWyF .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP4suePWyF .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP4suePWyF .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP4suePWyF .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP4suePWyF .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP4suePWyF .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4AjaaB9h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uP4AjaaB9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4AjaaB9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4AjaaB9h .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uP4AjaaB9h .mbr-section-title {
  color: #24262b;
}
.cid-uP4AjaaB9h .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uP4AjaaB9h .items-row {
  row-gap: 32px;
}
.cid-uP4AjaaB9h .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uP4AjaaB9h .item-wrapper img {
  width: 100%;
  height: calc(50px * 4);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uP4AjaaB9h .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-uP4AjaaB9h .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uP4AjaaB9h .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uP4AjaaB9h .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uP4AjaaB9h .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uP4AjaaB9h .carousel-control,
.cid-uP4AjaaB9h .close {
  background: #1b1b1b;
}
.cid-uP4AjaaB9h .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uP4AjaaB9h .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uP4AjaaB9h .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uP4AjaaB9h .carousel-control-next span {
  margin-left: 5px;
}
.cid-uP4AjaaB9h .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uP4AjaaB9h .close::before {
  content: '\e91a';
}
.cid-uP4AjaaB9h .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uP4AjaaB9h .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uP4AjaaB9h .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP4AjaaB9h .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uP4AjaaB9h .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uP4AjaaB9h .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uP4AjaaB9h .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uP4AjaaB9h .carousel-indicators li.active,
.cid-uP4AjaaB9h .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uP4AjaaB9h .carousel-indicators li::after,
.cid-uP4AjaaB9h .carousel-indicators li::before {
  content: none;
}
.cid-uP4AjaaB9h .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uP4AjaaB9h .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uP4AjaaB9h .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uP4AjaaB9h .carousel-indicators {
    display: none;
  }
}
.cid-uP4AjaaB9h .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uP4AjaaB9h .carousel-inner > .active {
  display: block;
}
.cid-uP4AjaaB9h .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP4AjaaB9h .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP4AjaaB9h .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uP4AjaaB9h .carousel-control,
  .cid-uP4AjaaB9h .carousel-indicators,
  .cid-uP4AjaaB9h .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uP4AjaaB9h .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uP4AjaaB9h .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uP4AjaaB9h .carousel-indicators .active,
.cid-uP4AjaaB9h .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uP4AjaaB9h .carousel-indicators .active {
  background: #fff;
}
.cid-uP4AjaaB9h .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uP4AjaaB9h .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uP4AjaaB9h .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uP4AjaaB9h .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uP4AjaaB9h .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uP4AjaaB9h .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uP4AjaaB9h .carousel {
  width: 100%;
}
.cid-uP4AjaaB9h .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uP4AjaaB9h .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uP4AjaaB9h .modal.fade .modal-dialog,
.cid-uP4AjaaB9h .modal.in .modal-dialog {
  transform: none;
}
.cid-uP4AjaaB9h .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uP4AjaaB9h H6 {
  text-align: center;
}
.cid-uP4qNVtzUu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #373f46;
}
.cid-uP4qNVtzUu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4qNVtzUu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4qNVtzUu .mbr-section-title {
  color: #ffffff;
}
.cid-uP4qNVtzUu .mbr-text,
.cid-uP4qNVtzUu .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uP4qNW8hrG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uP4qNW8hrG .showAlerts {
  display: block !important;
}
.cid-uP4qNW8hrG .rowflexrev {
  display: -webkit-flex;
}
.cid-uP4qNW8hrG .title {
  margin-bottom: 2rem;
}
.cid-uP4qNW8hrG .mbr-section-subtitle {
  color: #767676;
}
.cid-uP4qNW8hrG textarea.form-control {
  min-height: 188px;
}
.cid-uP4qNW8hrG LABEL {
  color: #232323;
  display: initial;
}
.cid-uP4qNW8hrG .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4qNW8hrG .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uP4qNW8hrG .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4qNW8hrG .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4qNW8hrG .alert {
  margin-bottom: 0;
}
.cid-uP4qNW8hrG .alert-success {
  background-color: #70c770;
}
.cid-uP4qNW8hrG .alert-danger {
  background-color: #ff4a52;
}
.cid-uP4qNW8hrG .btn {
  display: inline-flex;
}
.cid-uP4qNW8hrG .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uP4qNW8hrG .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uP4qNW8hrG .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uP4qNW8hrG input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4qNW8hrG input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4qNW8hrG input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4qNW8hrG input,
.cid-uP4qNW8hrG option,
.cid-uP4qNW8hrG textarea {
  color: #000000;
}
.cid-uP4qNY1guX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uP4qNY1guX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP4qNY1guX .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uP4qNY1guX img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4qNY1guX .text-wrapper {
    padding: 2rem;
  }
}
.cid-uP4qNY1guX .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uP4qNY1guX .mbr-section-title {
  color: #ffffff;
}
.cid-uP4qNY1guX .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-uP4r2Ida7X {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP4r2Ida7X .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uP4r2Ida7X .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uP4r2Ida7X .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uP4r2Ida7X .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uP4r2Ida7X .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-uP4r2Ida7X nav.navbar {
  position: fixed;
}
.cid-uP4r2Ida7X .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uP4r2Ida7X .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uP4r2Ida7X .nav-item {
    border: 0;
  }
}
.cid-uP4r2Ida7X .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uP4r2Ida7X .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uP4r2Ida7X .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uP4r2Ida7X .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uP4r2Ida7X .title-wrap:hover span {
  color: white;
}
.cid-uP4r2Ida7X .title-wrap:hover:before {
  height: 100%;
}
.cid-uP4r2Ida7X .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4r2Ida7X .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-uP4r2Ida7X .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP4r2Ida7X .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP4r2Ida7X .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uP4r2Ida7X .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uP4r2Ida7X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP4r2Ida7X .nav-link {
  position: relative;
}
.cid-uP4r2Ida7X .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4r2Ida7X .container {
    flex-wrap: nowrap;
  }
}
.cid-uP4r2Ida7X .dropdown-menu,
.cid-uP4r2Ida7X .navbar.opened {
  background: #000000 !important;
}
.cid-uP4r2Ida7X .nav-item:focus,
.cid-uP4r2Ida7X .nav-link:focus {
  outline: none;
}
.cid-uP4r2Ida7X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP4r2Ida7X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP4r2Ida7X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP4r2Ida7X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4r2Ida7X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP4r2Ida7X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP4r2Ida7X .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-uP4r2Ida7X .navbar.opened {
  transition: all 0.3s;
}
.cid-uP4r2Ida7X .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP4r2Ida7X .navbar .navbar-logo img {
  width: auto;
}
.cid-uP4r2Ida7X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP4r2Ida7X .navbar.collapsed {
  justify-content: center;
}
.cid-uP4r2Ida7X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP4r2Ida7X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP4r2Ida7X .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-uP4r2Ida7X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP4r2Ida7X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP4r2Ida7X .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uP4r2Ida7X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP4r2Ida7X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP4r2Ida7X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP4r2Ida7X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP4r2Ida7X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP4r2Ida7X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP4r2Ida7X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP4r2Ida7X .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uP4r2Ida7X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP4r2Ida7X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP4r2Ida7X .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP4r2Ida7X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP4r2Ida7X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP4r2Ida7X .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP4r2Ida7X .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP4r2Ida7X .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP4r2Ida7X .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP4r2Ida7X .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP4r2Ida7X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP4r2Ida7X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP4r2Ida7X .dropdown-item.active,
.cid-uP4r2Ida7X .dropdown-item:active {
  background-color: transparent;
}
.cid-uP4r2Ida7X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP4r2Ida7X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP4r2Ida7X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP4r2Ida7X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uP4r2Ida7X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP4r2Ida7X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP4r2Ida7X ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP4r2Ida7X .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP4r2Ida7X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP4r2Ida7X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP4r2Ida7X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP4r2Ida7X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4r2Ida7X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4r2Ida7X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP4r2Ida7X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4r2Ida7X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP4r2Ida7X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP4r2Ida7X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4r2Ida7X .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP4r2Ida7X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP4r2Ida7X .navbar {
    height: 70px;
  }
  .cid-uP4r2Ida7X .navbar.opened {
    height: auto;
  }
  .cid-uP4r2Ida7X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP4r2Ida7X .navbar-caption-wrap,
.cid-uP4r2Ida7X .title-wrap {
  color: #272727;
}
.cid-uP4r2IYozT {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/decoracao-de-sala-com-piso-de-madeira-1.webp");
  position: relative;
}
.cid-uP4r2IYozT::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#101112 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-uP4r2IYozT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4r2IYozT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4r2IYozT .row {
  justify-content: center;
}
.cid-uP4r2IYozT .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uP4r2IYozT .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #ffffff, #f7df67 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uP4r2IYozT .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP4r2IYozT .mbr-section-title {
  color: #ffffff;
}
.cid-uP4r2IYozT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uP4r2IYozT .mbr-section-title,
.cid-uP4r2IYozT .mbr-section-btn {
  text-align: center;
}
.cid-uP4TIB5ys8 {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP4TIB5ys8 .row {
  flex-direction: row-reverse;
}
.cid-uP4TIB5ys8 .container-fluid {
  padding: 0;
}
.cid-uP4TIB5ys8 .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP4TIB5ys8 .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP4TIB5ys8 .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP4TIB5ys8 .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP4TIB5ys8 .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP4TIB5ys8 .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP4TIB5ys8 .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP4TIB5ys8 .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP4TIB5ys8 .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4TJmsDIb {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP4TJmsDIb .container-fluid {
  padding: 0;
}
.cid-uP4TJmsDIb .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP4TJmsDIb .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP4TJmsDIb .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP4TJmsDIb .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP4TJmsDIb .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP4TJmsDIb .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP4TJmsDIb .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP4TJmsDIb .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP4TJmsDIb .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4TJYD4jt {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP4TJYD4jt .row {
  flex-direction: row-reverse;
}
.cid-uP4TJYD4jt .container-fluid {
  padding: 0;
}
.cid-uP4TJYD4jt .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP4TJYD4jt .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP4TJYD4jt .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP4TJYD4jt .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP4TJYD4jt .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP4TJYD4jt .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP4TJYD4jt .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP4TJYD4jt .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP4TJYD4jt .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4r2JwD0L {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #373f46;
}
.cid-uP4r2JwD0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4r2JwD0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4r2JwD0L .mbr-section-title {
  color: #ffffff;
}
.cid-uP4r2JwD0L .mbr-text,
.cid-uP4r2JwD0L .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uP4r2Kcfm0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uP4r2Kcfm0 .showAlerts {
  display: block !important;
}
.cid-uP4r2Kcfm0 .rowflexrev {
  display: -webkit-flex;
}
.cid-uP4r2Kcfm0 .title {
  margin-bottom: 2rem;
}
.cid-uP4r2Kcfm0 .mbr-section-subtitle {
  color: #767676;
}
.cid-uP4r2Kcfm0 textarea.form-control {
  min-height: 188px;
}
.cid-uP4r2Kcfm0 LABEL {
  color: #232323;
  display: initial;
}
.cid-uP4r2Kcfm0 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4r2Kcfm0 .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uP4r2Kcfm0 .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4r2Kcfm0 .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4r2Kcfm0 .alert {
  margin-bottom: 0;
}
.cid-uP4r2Kcfm0 .alert-success {
  background-color: #70c770;
}
.cid-uP4r2Kcfm0 .alert-danger {
  background-color: #ff4a52;
}
.cid-uP4r2Kcfm0 .btn {
  display: inline-flex;
}
.cid-uP4r2Kcfm0 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uP4r2Kcfm0 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uP4r2Kcfm0 .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uP4r2Kcfm0 input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4r2Kcfm0 input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4r2Kcfm0 input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4r2Kcfm0 input,
.cid-uP4r2Kcfm0 option,
.cid-uP4r2Kcfm0 textarea {
  color: #000000;
}
.cid-uP4r2Mqw0Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uP4r2Mqw0Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP4r2Mqw0Q .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uP4r2Mqw0Q img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4r2Mqw0Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-uP4r2Mqw0Q .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uP4r2Mqw0Q .mbr-section-title {
  color: #ffffff;
}
.cid-uP4r2Mqw0Q .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-uP4r7VPuEK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP4r7VPuEK .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uP4r7VPuEK .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uP4r7VPuEK .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uP4r7VPuEK .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uP4r7VPuEK .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-uP4r7VPuEK nav.navbar {
  position: fixed;
}
.cid-uP4r7VPuEK .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uP4r7VPuEK .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uP4r7VPuEK .nav-item {
    border: 0;
  }
}
.cid-uP4r7VPuEK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uP4r7VPuEK .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uP4r7VPuEK .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uP4r7VPuEK .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uP4r7VPuEK .title-wrap:hover span {
  color: white;
}
.cid-uP4r7VPuEK .title-wrap:hover:before {
  height: 100%;
}
.cid-uP4r7VPuEK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4r7VPuEK .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-uP4r7VPuEK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP4r7VPuEK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP4r7VPuEK .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uP4r7VPuEK .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uP4r7VPuEK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP4r7VPuEK .nav-link {
  position: relative;
}
.cid-uP4r7VPuEK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4r7VPuEK .container {
    flex-wrap: nowrap;
  }
}
.cid-uP4r7VPuEK .dropdown-menu,
.cid-uP4r7VPuEK .navbar.opened {
  background: #000000 !important;
}
.cid-uP4r7VPuEK .nav-item:focus,
.cid-uP4r7VPuEK .nav-link:focus {
  outline: none;
}
.cid-uP4r7VPuEK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP4r7VPuEK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP4r7VPuEK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP4r7VPuEK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP4r7VPuEK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP4r7VPuEK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP4r7VPuEK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-uP4r7VPuEK .navbar.opened {
  transition: all 0.3s;
}
.cid-uP4r7VPuEK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP4r7VPuEK .navbar .navbar-logo img {
  width: auto;
}
.cid-uP4r7VPuEK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP4r7VPuEK .navbar.collapsed {
  justify-content: center;
}
.cid-uP4r7VPuEK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP4r7VPuEK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP4r7VPuEK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-uP4r7VPuEK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP4r7VPuEK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP4r7VPuEK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uP4r7VPuEK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP4r7VPuEK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP4r7VPuEK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP4r7VPuEK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP4r7VPuEK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP4r7VPuEK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP4r7VPuEK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP4r7VPuEK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uP4r7VPuEK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP4r7VPuEK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP4r7VPuEK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP4r7VPuEK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP4r7VPuEK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP4r7VPuEK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP4r7VPuEK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP4r7VPuEK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP4r7VPuEK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP4r7VPuEK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP4r7VPuEK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP4r7VPuEK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP4r7VPuEK .dropdown-item.active,
.cid-uP4r7VPuEK .dropdown-item:active {
  background-color: transparent;
}
.cid-uP4r7VPuEK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP4r7VPuEK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP4r7VPuEK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP4r7VPuEK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uP4r7VPuEK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP4r7VPuEK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP4r7VPuEK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP4r7VPuEK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP4r7VPuEK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP4r7VPuEK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP4r7VPuEK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP4r7VPuEK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4r7VPuEK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP4r7VPuEK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP4r7VPuEK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4r7VPuEK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP4r7VPuEK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP4r7VPuEK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP4r7VPuEK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP4r7VPuEK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP4r7VPuEK .navbar {
    height: 70px;
  }
  .cid-uP4r7VPuEK .navbar.opened {
    height: auto;
  }
  .cid-uP4r7VPuEK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP4r7VPuEK .navbar-caption-wrap,
.cid-uP4r7VPuEK .title-wrap {
  color: #272727;
}
.cid-uP4r7WzCo7 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/decoracao-de-sala-com-piso-de-madeira-1.webp");
  position: relative;
}
.cid-uP4r7WzCo7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#101112 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-uP4r7WzCo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4r7WzCo7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4r7WzCo7 .row {
  justify-content: center;
}
.cid-uP4r7WzCo7 .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uP4r7WzCo7 .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #ffffff, #f7df67 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uP4r7WzCo7 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP4r7WzCo7 .mbr-section-title {
  color: #ffffff;
}
.cid-uP4r7WzCo7 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uP4r7WzCo7 .mbr-section-title,
.cid-uP4r7WzCo7 .mbr-section-btn {
  text-align: center;
}
.cid-uP5cMtD9UG {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP5cMtD9UG .row {
  flex-direction: row-reverse;
}
.cid-uP5cMtD9UG .container-fluid {
  padding: 0;
}
.cid-uP5cMtD9UG .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP5cMtD9UG .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP5cMtD9UG .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP5cMtD9UG .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP5cMtD9UG .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP5cMtD9UG .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP5cMtD9UG .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP5cMtD9UG .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP5cMtD9UG .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP5cMZE5lU {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP5cMZE5lU .container-fluid {
  padding: 0;
}
.cid-uP5cMZE5lU .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP5cMZE5lU .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP5cMZE5lU .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP5cMZE5lU .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP5cMZE5lU .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP5cMZE5lU .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP5cMZE5lU .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP5cMZE5lU .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP5cMZE5lU .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP5cNEH8Vk {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uP5cNEH8Vk .row {
  flex-direction: row-reverse;
}
.cid-uP5cNEH8Vk .container-fluid {
  padding: 0;
}
.cid-uP5cNEH8Vk .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-uP5cNEH8Vk .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uP5cNEH8Vk .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-uP5cNEH8Vk .content-wrapper .text {
    padding: 200px 190px;
    padding: 140px 130px;
  }
}
.cid-uP5cNEH8Vk .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-uP5cNEH8Vk .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP5cNEH8Vk .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uP5cNEH8Vk .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-uP5cNEH8Vk .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uP4r7X3HlQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #373f46;
}
.cid-uP4r7X3HlQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP4r7X3HlQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP4r7X3HlQ .mbr-section-title {
  color: #ffffff;
}
.cid-uP4r7X3HlQ .mbr-text,
.cid-uP4r7X3HlQ .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uP4r7XCdBI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uP4r7XCdBI .showAlerts {
  display: block !important;
}
.cid-uP4r7XCdBI .rowflexrev {
  display: -webkit-flex;
}
.cid-uP4r7XCdBI .title {
  margin-bottom: 2rem;
}
.cid-uP4r7XCdBI .mbr-section-subtitle {
  color: #767676;
}
.cid-uP4r7XCdBI textarea.form-control {
  min-height: 188px;
}
.cid-uP4r7XCdBI LABEL {
  color: #232323;
  display: initial;
}
.cid-uP4r7XCdBI .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4r7XCdBI .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uP4r7XCdBI .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4r7XCdBI .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP4r7XCdBI .alert {
  margin-bottom: 0;
}
.cid-uP4r7XCdBI .alert-success {
  background-color: #70c770;
}
.cid-uP4r7XCdBI .alert-danger {
  background-color: #ff4a52;
}
.cid-uP4r7XCdBI .btn {
  display: inline-flex;
}
.cid-uP4r7XCdBI .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uP4r7XCdBI .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uP4r7XCdBI .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uP4r7XCdBI input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4r7XCdBI input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4r7XCdBI input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP4r7XCdBI input,
.cid-uP4r7XCdBI option,
.cid-uP4r7XCdBI textarea {
  color: #000000;
}
.cid-uP4r7Ysys3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uP4r7Ysys3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP4r7Ysys3 .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uP4r7Ysys3 img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP4r7Ysys3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uP4r7Ysys3 .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uP4r7Ysys3 .mbr-section-title {
  color: #ffffff;
}
.cid-uP4r7Ysys3 .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-uP5ewVi6NN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP5ewVi6NN .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uP5ewVi6NN .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uP5ewVi6NN .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uP5ewVi6NN .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uP5ewVi6NN .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-uP5ewVi6NN nav.navbar {
  position: fixed;
}
.cid-uP5ewVi6NN .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uP5ewVi6NN .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uP5ewVi6NN .nav-item {
    border: 0;
  }
}
.cid-uP5ewVi6NN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uP5ewVi6NN .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uP5ewVi6NN .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uP5ewVi6NN .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uP5ewVi6NN .title-wrap:hover span {
  color: white;
}
.cid-uP5ewVi6NN .title-wrap:hover:before {
  height: 100%;
}
.cid-uP5ewVi6NN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP5ewVi6NN .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-uP5ewVi6NN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP5ewVi6NN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP5ewVi6NN .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uP5ewVi6NN .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uP5ewVi6NN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP5ewVi6NN .nav-link {
  position: relative;
}
.cid-uP5ewVi6NN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP5ewVi6NN .container {
    flex-wrap: nowrap;
  }
}
.cid-uP5ewVi6NN .dropdown-menu,
.cid-uP5ewVi6NN .navbar.opened {
  background: #000000 !important;
}
.cid-uP5ewVi6NN .nav-item:focus,
.cid-uP5ewVi6NN .nav-link:focus {
  outline: none;
}
.cid-uP5ewVi6NN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP5ewVi6NN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP5ewVi6NN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP5ewVi6NN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP5ewVi6NN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP5ewVi6NN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP5ewVi6NN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-uP5ewVi6NN .navbar.opened {
  transition: all 0.3s;
}
.cid-uP5ewVi6NN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP5ewVi6NN .navbar .navbar-logo img {
  width: auto;
}
.cid-uP5ewVi6NN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP5ewVi6NN .navbar.collapsed {
  justify-content: center;
}
.cid-uP5ewVi6NN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP5ewVi6NN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP5ewVi6NN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-uP5ewVi6NN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP5ewVi6NN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP5ewVi6NN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uP5ewVi6NN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP5ewVi6NN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP5ewVi6NN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP5ewVi6NN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP5ewVi6NN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP5ewVi6NN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP5ewVi6NN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP5ewVi6NN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uP5ewVi6NN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP5ewVi6NN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP5ewVi6NN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP5ewVi6NN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP5ewVi6NN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP5ewVi6NN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP5ewVi6NN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP5ewVi6NN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP5ewVi6NN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP5ewVi6NN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP5ewVi6NN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP5ewVi6NN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP5ewVi6NN .dropdown-item.active,
.cid-uP5ewVi6NN .dropdown-item:active {
  background-color: transparent;
}
.cid-uP5ewVi6NN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP5ewVi6NN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP5ewVi6NN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP5ewVi6NN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uP5ewVi6NN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP5ewVi6NN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP5ewVi6NN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP5ewVi6NN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP5ewVi6NN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP5ewVi6NN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP5ewVi6NN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP5ewVi6NN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP5ewVi6NN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP5ewVi6NN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP5ewVi6NN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP5ewVi6NN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP5ewVi6NN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP5ewVi6NN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP5ewVi6NN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP5ewVi6NN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP5ewVi6NN .navbar {
    height: 70px;
  }
  .cid-uP5ewVi6NN .navbar.opened {
    height: auto;
  }
  .cid-uP5ewVi6NN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP5ewVi6NN .navbar-caption-wrap,
.cid-uP5ewVi6NN .title-wrap {
  color: #272727;
}
.cid-uP5ewVZWCk {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/decoracao-de-sala-com-piso-de-madeira-1.webp");
  position: relative;
}
.cid-uP5ewVZWCk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#101112 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-uP5ewVZWCk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP5ewVZWCk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP5ewVZWCk .row {
  justify-content: center;
}
.cid-uP5ewVZWCk .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uP5ewVZWCk .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #ffffff, #f7df67 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uP5ewVZWCk .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP5ewVZWCk .mbr-section-title {
  color: #ffffff;
}
.cid-uP5ewVZWCk .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uP5ewVZWCk .mbr-section-title,
.cid-uP5ewVZWCk .mbr-section-btn {
  text-align: center;
}
.cid-uP5g3YnuAB {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uP5g3YnuAB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP5g3YnuAB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP5g3YnuAB .card-box__top {
  display: flex;
  justify-content: space-between;
  align-items: top;
}
@media (max-width: 1600px) {
  .cid-uP5g3YnuAB .card-box__top {
    flex-direction: column-reverse;
  }
}
.cid-uP5g3YnuAB .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uP5g3YnuAB .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uP5g3YnuAB .card-text {
  padding-top: 10rem;
}
@media (max-width: 992px) {
  .cid-uP5g3YnuAB .card-text {
    padding-top: 5rem;
  }
}
.cid-uP5g3YnuAB .item-wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #f7df67;
  transition: all ease-in-out 0.3s;
}
.cid-uP5g3YnuAB .item-wrapper:hover {
  background-color: #f7df67;
  transition: all ease-in-out 0.3s;
}
.cid-uP5g3YnuAB .item-wrapper:hover .card-title,
.cid-uP5g3YnuAB .item-wrapper:hover .card-text,
.cid-uP5g3YnuAB .item-wrapper:hover .mbr-iconfont {
  color: #000000 !important;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uP5g3YnuAB .item-wrapper {
    padding: 1rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uP5g3YnuAB .item-wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-uP5g3YnuAB .mbr-iconfont {
  display: inline-flex;
  font-size: 4rem;
  color: #221b35;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 1700px) {
  .cid-uP5g3YnuAB .mbr-iconfont {
    font-size: 3rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-uP5g3YnuAB .mbr-section-title {
  color: #221b35;
}
.cid-uP5g3YnuAB .mbr-section-subtitle {
  color: #221b35;
}
.cid-uP5g3YnuAB .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uP5g3YnuAB .card-box .item-footer {
  margin-top: auto;
}
.cid-uP5g3YnuAB .content-head {
  max-width: 800px;
}
.cid-uP5g3YnuAB .card-title,
.cid-uP5g3YnuAB .iconfont-wrapper {
  color: #221b35;
}
.cid-uP5g3YnuAB .card-text,
.cid-uP5g3YnuAB .item .mbr-section-btn {
  color: #221b35;
}
.cid-uP5i8CECL3 {
  padding-top: 15px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uP5i8CECL3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uP5i8CECL3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP5i8CECL3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP5i8CECL3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uP5i8CECL3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #febc04;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uP5i8CECL3 .icon-focus,
.cid-uP5i8CECL3 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uP5i8CECL3 .icon-focus:before,
.cid-uP5i8CECL3 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP5i8CECL3 .icon-video {
  font-size: 1.5rem !important;
}
.cid-uP5i8CECL3 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uP5i8CECL3 ul {
  font-size: 0;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-uP5i8CECL3 .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li:first-child,
.cid-uP5i8CECL3 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uP5i8CECL3 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uP5i8CECL3 .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-uP5i8CECL3 .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-uP5i8CECL3 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-uP5i8CECL3 .mbr-section-title b:last-child,
.cid-uP5i8CECL3 .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-uP5i8CECL3 .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-uP5i8CECL3 .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-uP5ewXH5t8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #373f46;
}
.cid-uP5ewXH5t8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP5ewXH5t8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP5ewXH5t8 .mbr-section-title {
  color: #ffffff;
}
.cid-uP5ewXH5t8 .mbr-text,
.cid-uP5ewXH5t8 .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uP5ewY7iC0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uP5ewY7iC0 .showAlerts {
  display: block !important;
}
.cid-uP5ewY7iC0 .rowflexrev {
  display: -webkit-flex;
}
.cid-uP5ewY7iC0 .title {
  margin-bottom: 2rem;
}
.cid-uP5ewY7iC0 .mbr-section-subtitle {
  color: #767676;
}
.cid-uP5ewY7iC0 textarea.form-control {
  min-height: 188px;
}
.cid-uP5ewY7iC0 LABEL {
  color: #232323;
  display: initial;
}
.cid-uP5ewY7iC0 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP5ewY7iC0 .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uP5ewY7iC0 .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP5ewY7iC0 .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP5ewY7iC0 .alert {
  margin-bottom: 0;
}
.cid-uP5ewY7iC0 .alert-success {
  background-color: #70c770;
}
.cid-uP5ewY7iC0 .alert-danger {
  background-color: #ff4a52;
}
.cid-uP5ewY7iC0 .btn {
  display: inline-flex;
}
.cid-uP5ewY7iC0 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uP5ewY7iC0 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uP5ewY7iC0 .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uP5ewY7iC0 input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP5ewY7iC0 input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP5ewY7iC0 input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP5ewY7iC0 input,
.cid-uP5ewY7iC0 option,
.cid-uP5ewY7iC0 textarea {
  color: #000000;
}
.cid-uP5ewYOcVJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uP5ewYOcVJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP5ewYOcVJ .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uP5ewYOcVJ img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP5ewYOcVJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uP5ewYOcVJ .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uP5ewYOcVJ .mbr-section-title {
  color: #ffffff;
}
.cid-uP5ewYOcVJ .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-uP5jaKBSIQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uP5jaKBSIQ .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uP5jaKBSIQ .iconfont-wrapper {
  overflow: hidden;
  color: #22a5e5 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uP5jaKBSIQ .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uP5jaKBSIQ .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uP5jaKBSIQ .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #f7df67;
  z-index: -1;
}
.cid-uP5jaKBSIQ nav.navbar {
  position: fixed;
}
.cid-uP5jaKBSIQ .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uP5jaKBSIQ .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uP5jaKBSIQ .nav-item {
    border: 0;
  }
}
.cid-uP5jaKBSIQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uP5jaKBSIQ .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uP5jaKBSIQ .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uP5jaKBSIQ .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uP5jaKBSIQ .title-wrap:hover span {
  color: white;
}
.cid-uP5jaKBSIQ .title-wrap:hover:before {
  height: 100%;
}
.cid-uP5jaKBSIQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP5jaKBSIQ .dropdown-menu {
  padding: 0;
  border-top: 4px solid #f7df67;
}
.cid-uP5jaKBSIQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uP5jaKBSIQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uP5jaKBSIQ .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uP5jaKBSIQ .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uP5jaKBSIQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP5jaKBSIQ .nav-link {
  position: relative;
}
.cid-uP5jaKBSIQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP5jaKBSIQ .container {
    flex-wrap: nowrap;
  }
}
.cid-uP5jaKBSIQ .dropdown-menu,
.cid-uP5jaKBSIQ .navbar.opened {
  background: #000000 !important;
}
.cid-uP5jaKBSIQ .nav-item:focus,
.cid-uP5jaKBSIQ .nav-link:focus {
  outline: none;
}
.cid-uP5jaKBSIQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP5jaKBSIQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP5jaKBSIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP5jaKBSIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP5jaKBSIQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP5jaKBSIQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP5jaKBSIQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #000000;
}
.cid-uP5jaKBSIQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uP5jaKBSIQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP5jaKBSIQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uP5jaKBSIQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP5jaKBSIQ .navbar.collapsed {
  justify-content: center;
}
.cid-uP5jaKBSIQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP5jaKBSIQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP5jaKBSIQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-uP5jaKBSIQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP5jaKBSIQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP5jaKBSIQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uP5jaKBSIQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP5jaKBSIQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP5jaKBSIQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP5jaKBSIQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP5jaKBSIQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP5jaKBSIQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP5jaKBSIQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP5jaKBSIQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uP5jaKBSIQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP5jaKBSIQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP5jaKBSIQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP5jaKBSIQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP5jaKBSIQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP5jaKBSIQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP5jaKBSIQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP5jaKBSIQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP5jaKBSIQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP5jaKBSIQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP5jaKBSIQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP5jaKBSIQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP5jaKBSIQ .dropdown-item.active,
.cid-uP5jaKBSIQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uP5jaKBSIQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP5jaKBSIQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP5jaKBSIQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP5jaKBSIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uP5jaKBSIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP5jaKBSIQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP5jaKBSIQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uP5jaKBSIQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP5jaKBSIQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uP5jaKBSIQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uP5jaKBSIQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP5jaKBSIQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP5jaKBSIQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP5jaKBSIQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP5jaKBSIQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP5jaKBSIQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP5jaKBSIQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP5jaKBSIQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP5jaKBSIQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uP5jaKBSIQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP5jaKBSIQ .navbar {
    height: 70px;
  }
  .cid-uP5jaKBSIQ .navbar.opened {
    height: auto;
  }
  .cid-uP5jaKBSIQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP5jaKBSIQ .navbar-caption-wrap,
.cid-uP5jaKBSIQ .title-wrap {
  color: #272727;
}
.cid-uP5jaM1oxa {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/polimento-1.webp");
  position: relative;
}
.cid-uP5jaM1oxa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#101112 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-uP5jaM1oxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP5jaM1oxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP5jaM1oxa .row {
  justify-content: center;
}
.cid-uP5jaM1oxa .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uP5jaM1oxa .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #ffffff, #f7df67 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uP5jaM1oxa .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP5jaM1oxa .mbr-section-title {
  color: #ffffff;
}
.cid-uP5jaM1oxa .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uP5jaM1oxa .mbr-section-title,
.cid-uP5jaM1oxa .mbr-section-btn {
  text-align: center;
}
.cid-uP5kpIDjAi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd00;
}
.cid-uP5kpIDjAi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP5kpIDjAi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP5kpIDjAi .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uP5kpIDjAi .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 62px;
  color: #000c3f;
}
.cid-uP5kpIDjAi .mbr-text {
  margin-bottom: 32px;
  color: #000c3f;
}
.cid-uP5kpIDjAi .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP5kpIDjAi .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-uP5kpIDjAi .mbr-desc,
.cid-uP5kpIDjAi .desc-wrapper {
  color: #000c3f;
  text-align: center;
}
.cid-uP5kpIDjAi .mbr-text,
.cid-uP5kpIDjAi .icon-wrapper {
  text-align: left;
}
.cid-uP5jaO2pEC {
  padding-top: 15px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uP5jaO2pEC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uP5jaO2pEC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP5jaO2pEC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP5jaO2pEC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uP5jaO2pEC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #febc04;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uP5jaO2pEC .icon-focus,
.cid-uP5jaO2pEC .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uP5jaO2pEC .icon-focus:before,
.cid-uP5jaO2pEC .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP5jaO2pEC .icon-video {
  font-size: 1.5rem !important;
}
.cid-uP5jaO2pEC .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uP5jaO2pEC ul {
  font-size: 0;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-uP5jaO2pEC .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li:first-child,
.cid-uP5jaO2pEC .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uP5jaO2pEC .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uP5jaO2pEC .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-uP5jaO2pEC .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-uP5jaO2pEC .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-uP5jaO2pEC .mbr-section-title b:last-child,
.cid-uP5jaO2pEC .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-uP5jaO2pEC .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-uP5jaO2pEC .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-uP5jaONZH8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #373f46;
}
.cid-uP5jaONZH8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP5jaONZH8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP5jaONZH8 .mbr-section-title {
  color: #ffffff;
}
.cid-uP5jaONZH8 .mbr-text,
.cid-uP5jaONZH8 .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uP5jaPxlJR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/emocionante-mundo-de-bona-964x503.jpg");
}
.cid-uP5jaPxlJR .showAlerts {
  display: block !important;
}
.cid-uP5jaPxlJR .rowflexrev {
  display: -webkit-flex;
}
.cid-uP5jaPxlJR .title {
  margin-bottom: 2rem;
}
.cid-uP5jaPxlJR .mbr-section-subtitle {
  color: #767676;
}
.cid-uP5jaPxlJR textarea.form-control {
  min-height: 188px;
}
.cid-uP5jaPxlJR LABEL {
  color: #232323;
  display: initial;
}
.cid-uP5jaPxlJR .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP5jaPxlJR .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uP5jaPxlJR .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP5jaPxlJR .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uP5jaPxlJR .alert {
  margin-bottom: 0;
}
.cid-uP5jaPxlJR .alert-success {
  background-color: #70c770;
}
.cid-uP5jaPxlJR .alert-danger {
  background-color: #ff4a52;
}
.cid-uP5jaPxlJR .btn {
  display: inline-flex;
}
.cid-uP5jaPxlJR .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uP5jaPxlJR .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uP5jaPxlJR .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uP5jaPxlJR input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP5jaPxlJR input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP5jaPxlJR input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uP5jaPxlJR input,
.cid-uP5jaPxlJR option,
.cid-uP5jaPxlJR textarea {
  color: #000000;
}
.cid-uP5jaQtxWT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #272727;
}
@media (max-width: 991px) {
  .cid-uP5jaQtxWT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP5jaQtxWT .text-wrapper {
  padding: 2rem 1rem;
}
.cid-uP5jaQtxWT img {
  width: 80%;
  padding: 2rem 0;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uP5jaQtxWT .text-wrapper {
    padding: 2rem;
  }
}
.cid-uP5jaQtxWT .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uP5jaQtxWT .mbr-section-title {
  color: #ffffff;
}
.cid-uP5jaQtxWT .row {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
