body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.4375rem;
}
/* ---- 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: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.92rem;
    font-size: calc( 1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #00246f !important;
}
.bg-success {
  background-color: #32be36 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #fafafa !important;
}
.bg-danger {
  background-color: #4479d9 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00246f !important;
  border-color: #00246f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000818 !important;
  border-color: #000818 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000818 !important;
  border-color: #000818 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #32be36 !important;
  border-color: #32be36 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #207922 !important;
  border-color: #207922 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #207922 !important;
  border-color: #207922 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00246f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000818 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00246f !important;
  border-color: #00246f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !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: #32be36;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #207922 !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: #32be36 !important;
  border-color: #32be36 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #2150a5 !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: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.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: #232323 !important;
  border-color: #232323 !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: #00246f !important;
}
.text-secondary {
  color: #232323 !important;
}
.text-success {
  color: #32be36 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #fafafa !important;
}
.text-danger {
  color: #4479d9 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000309 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1d6d1f !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: #c7c7c7 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1f4a98 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #00246f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #fafafa;
}
.alert-danger {
  background-color: #4479d9;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00246f;
  border-color: #00246f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #00246f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #004def;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8ee191;
}
.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: #eef2fb;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #00246f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #00246f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00246f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00246f;
}
.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: #00246f;
  border-bottom-color: #00246f;
}
.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: #ffffff !important;
  background-color: #00246f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #232323 !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='%2300246f' %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-sUdkQ2UaPm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sUdkQ2UaPm nav.navbar {
  position: fixed;
}
.cid-sUdkQ2UaPm .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-sUdkQ2UaPm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sUdkQ2UaPm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sUdkQ2UaPm .dropdown-item:hover,
.cid-sUdkQ2UaPm .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-sUdkQ2UaPm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sUdkQ2UaPm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sUdkQ2UaPm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sUdkQ2UaPm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sUdkQ2UaPm .nav-link {
  position: relative;
}
.cid-sUdkQ2UaPm .container {
  display: flex;
  margin: auto;
}
.cid-sUdkQ2UaPm .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUdkQ2UaPm .dropdown-menu,
.cid-sUdkQ2UaPm .navbar.opened {
  background: #ffffff !important;
}
.cid-sUdkQ2UaPm .nav-item:focus,
.cid-sUdkQ2UaPm .nav-link:focus {
  outline: none;
}
.cid-sUdkQ2UaPm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sUdkQ2UaPm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUdkQ2UaPm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sUdkQ2UaPm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUdkQ2UaPm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUdkQ2UaPm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUdkQ2UaPm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sUdkQ2UaPm .navbar.opened {
  transition: all 0.3s;
}
.cid-sUdkQ2UaPm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sUdkQ2UaPm .navbar .navbar-logo img {
  width: auto;
}
.cid-sUdkQ2UaPm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUdkQ2UaPm .navbar.collapsed {
  justify-content: center;
}
.cid-sUdkQ2UaPm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUdkQ2UaPm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sUdkQ2UaPm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-sUdkQ2UaPm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUdkQ2UaPm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUdkQ2UaPm .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-sUdkQ2UaPm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUdkQ2UaPm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUdkQ2UaPm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUdkQ2UaPm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUdkQ2UaPm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUdkQ2UaPm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUdkQ2UaPm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUdkQ2UaPm .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-sUdkQ2UaPm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sUdkQ2UaPm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUdkQ2UaPm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUdkQ2UaPm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sUdkQ2UaPm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sUdkQ2UaPm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUdkQ2UaPm .navbar.navbar-short {
  min-height: 60px;
}
.cid-sUdkQ2UaPm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sUdkQ2UaPm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sUdkQ2UaPm .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-sUdkQ2UaPm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUdkQ2UaPm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUdkQ2UaPm .dropdown-item.active,
.cid-sUdkQ2UaPm .dropdown-item:active {
  background-color: transparent;
}
.cid-sUdkQ2UaPm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUdkQ2UaPm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUdkQ2UaPm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUdkQ2UaPm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sUdkQ2UaPm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUdkQ2UaPm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUdkQ2UaPm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sUdkQ2UaPm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sUdkQ2UaPm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sUdkQ2UaPm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-sUdkQ2UaPm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUdkQ2UaPm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUdkQ2UaPm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUdkQ2UaPm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUdkQ2UaPm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUdkQ2UaPm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUdkQ2UaPm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUdkQ2UaPm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUdkQ2UaPm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sUdkQ2UaPm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sUdkQ2UaPm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUdkQ2UaPm .navbar {
    height: 70px;
  }
  .cid-sUdkQ2UaPm .navbar.opened {
    height: auto;
  }
  .cid-sUdkQ2UaPm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sV5AlvWLI2 {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-sV5AlvWLI2 .row {
  flex-direction: row-reverse;
}
.cid-sV5AlvWLI2 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sV5AlvWLI2 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sV5AlvWLI2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sV5AlvWLI2 .mbr-section-title {
  color: #ffffff;
}
.cid-sV5AlvWLI2 .mbr-text,
.cid-sV5AlvWLI2 .mbr-section-btn {
  color: #fafafa;
}
.cid-sUeq0lBR8C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-sUeq0lBR8C .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sUeq0lBR8C .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sUeq0lBR8C .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sUeq0lBR8C .card-wrapper {
    padding: 4rem;
  }
}
.cid-sUeq0lBR8C .card-title {
  color: #00246f;
}
.cid-tCIUeggYUA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-tCIUeggYUA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCIUeggYUA .row {
  flex-direction: row-reverse;
}
.cid-tCIUeggYUA img {
  width: 100%;
}
.cid-tCIUeggYUA .mbr-description {
  color: #00246f;
}
.cid-tFWWGXQmm4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tFWWGXQmm4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFWWGXQmm4 .row {
  flex-direction: row-reverse;
}
.cid-tFWWGXQmm4 img {
  width: 100%;
}
.cid-tFWWGXQmm4 .mbr-description {
  color: #00246f;
}
.cid-tFFwPBC25T {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-tFFwPBC25T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFFwPBC25T .row {
  flex-direction: row-reverse;
}
.cid-tFFwPBC25T img {
  width: 100%;
}
.cid-tFFwPBC25T .mbr-description {
  color: #00246f;
}
.cid-tFFwQrV7Ck {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tFFwQrV7Ck .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFFwQrV7Ck .row {
  flex-direction: row-reverse;
}
.cid-tFFwQrV7Ck img {
  width: 100%;
}
.cid-tFFwQrV7Ck .mbr-description {
  color: #00246f;
}
.cid-txlAJ57NT0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-txlAJ57NT0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txlAJ57NT0 .row {
  flex-direction: row-reverse;
}
.cid-txlAJ57NT0 img {
  width: 100%;
}
.cid-txlAJ57NT0 .mbr-description {
  color: #00246f;
}
.cid-sUkEMWm1ny {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-sUkEMWm1ny img,
.cid-sUkEMWm1ny .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sUkEMWm1ny .item:focus,
.cid-sUkEMWm1ny span:focus {
  outline: none;
}
.cid-sUkEMWm1ny .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sUkEMWm1ny .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sUkEMWm1ny .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sUkEMWm1ny .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sUkEMWm1ny .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sUkEMWm1ny .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sUkEMWm1ny .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sUkEMWm1ny .mbr-section-title {
  color: #00246f;
}
.cid-sUkEMWm1ny .mbr-text,
.cid-sUkEMWm1ny .mbr-section-btn {
  text-align: left;
}
.cid-sUkEMWm1ny .item-title {
  text-align: left;
  color: #00246f;
}
.cid-sUkEMWm1ny .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sVxTLqzQO5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-sVxTLqzQO5 .container {
    max-width: 1400px;
  }
}
.cid-sVxTLqzQO5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-sVxTLqzQO5 .card-wrapper {
  margin-top: 3rem;
}
.cid-sVxTLqzQO5 .row {
  justify-content: center;
}
.cid-sVxTLqzQO5 .mbr-section-title {
  color: #00246f;
}
.cid-uiBpRQDhDS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiBpRQDhDS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiBpRQDhDS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiBpRQDhDS .item {
  padding-bottom: 2rem;
}
.cid-uiBpRQDhDS .item-wrapper {
  position: relative;
}
.cid-uiBpRQDhDS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uiBpRQDhDS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uiBpRQDhDS .carousel-control,
.cid-uiBpRQDhDS .close {
  background: #1b1b1b;
}
.cid-uiBpRQDhDS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uiBpRQDhDS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uiBpRQDhDS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uiBpRQDhDS .carousel-control-next span {
  margin-left: 5px;
}
.cid-uiBpRQDhDS .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-uiBpRQDhDS .close::before {
  content: '\e91a';
}
.cid-uiBpRQDhDS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uiBpRQDhDS .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-uiBpRQDhDS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uiBpRQDhDS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uiBpRQDhDS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uiBpRQDhDS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uiBpRQDhDS .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-uiBpRQDhDS .carousel-indicators li.active,
.cid-uiBpRQDhDS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uiBpRQDhDS .carousel-indicators li::after,
.cid-uiBpRQDhDS .carousel-indicators li::before {
  content: none;
}
.cid-uiBpRQDhDS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uiBpRQDhDS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uiBpRQDhDS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uiBpRQDhDS .carousel-indicators {
    display: none;
  }
}
.cid-uiBpRQDhDS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uiBpRQDhDS .carousel-inner > .active {
  display: block;
}
.cid-uiBpRQDhDS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uiBpRQDhDS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uiBpRQDhDS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uiBpRQDhDS .carousel-control,
  .cid-uiBpRQDhDS .carousel-indicators,
  .cid-uiBpRQDhDS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uiBpRQDhDS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uiBpRQDhDS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uiBpRQDhDS .carousel-indicators .active,
.cid-uiBpRQDhDS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uiBpRQDhDS .carousel-indicators .active {
  background: #fff;
}
.cid-uiBpRQDhDS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uiBpRQDhDS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uiBpRQDhDS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uiBpRQDhDS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uiBpRQDhDS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uiBpRQDhDS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uiBpRQDhDS .carousel {
  width: 100%;
}
.cid-uiBpRQDhDS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uiBpRQDhDS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uiBpRQDhDS .modal.fade .modal-dialog,
.cid-uiBpRQDhDS .modal.in .modal-dialog {
  transform: none;
}
.cid-uiBpRQDhDS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uiBpRQDhDS H6 {
  text-align: center;
}
.cid-sVxZOg1zKR {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sUprf78x2y {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-sUprf78x2y .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sUprf78x2y .container {
    max-width: 1400px;
  }
}
.cid-sUprf78x2y .card {
  margin: auto;
}
.cid-sUprf78x2y .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-sUprf78x2y .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sUprf78x2y .row {
  justify-content: center;
}
.cid-sUprf78x2y H3 {
  color: #ffffff;
}
.cid-sUprf78x2y .card-title,
.cid-sUprf78x2y .card-box {
  color: #ffffff;
}
.cid-sUkVqg2IYB {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sUkVqg2IYB .google-map {
  height: 30rem;
  position: relative;
}
.cid-sUkVqg2IYB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sUkVqg2IYB .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sUkVqg2IYB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sUkVqg2IYB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sUkVqg2IYB .mbr-section-title {
  color: #00246f;
}
.cid-sUpdvLsbIb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-sUpdvLsbIb .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-sUpdvLsbIb form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sUpdvLsbIb form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sUpdvLsbIb form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sUpdvLsbIb .mbr-section-title {
  color: #fafafa;
}
.cid-sUpdvLsbIb .mbr-section-subtitle {
  color: #fafafa;
}
.cid-sUkEDSAsdV {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sUkEDSAsdV .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-sUkExcBHUt {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-sUkExcBHUt .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sUkExcBHUt .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sUkExcBHUt .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-sUkExcBHUt .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sUkExcBHUt .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-sUkExcBHUt .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sUkExcBHUt .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sUkExcBHUt .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sUkExcBHUt .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sUkExcBHUt .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sUkExcBHUt .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPd9XBBInv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPd9XBBInv nav.navbar {
  position: fixed;
}
.cid-uPd9XBBInv .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-uPd9XBBInv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPd9XBBInv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPd9XBBInv .dropdown-item:hover,
.cid-uPd9XBBInv .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPd9XBBInv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPd9XBBInv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPd9XBBInv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPd9XBBInv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPd9XBBInv .nav-link {
  position: relative;
}
.cid-uPd9XBBInv .container {
  display: flex;
  margin: auto;
}
.cid-uPd9XBBInv .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPd9XBBInv .dropdown-menu,
.cid-uPd9XBBInv .navbar.opened {
  background: #ffffff !important;
}
.cid-uPd9XBBInv .nav-item:focus,
.cid-uPd9XBBInv .nav-link:focus {
  outline: none;
}
.cid-uPd9XBBInv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPd9XBBInv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPd9XBBInv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPd9XBBInv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPd9XBBInv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPd9XBBInv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPd9XBBInv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPd9XBBInv .navbar.opened {
  transition: all 0.3s;
}
.cid-uPd9XBBInv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPd9XBBInv .navbar .navbar-logo img {
  width: auto;
}
.cid-uPd9XBBInv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPd9XBBInv .navbar.collapsed {
  justify-content: center;
}
.cid-uPd9XBBInv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPd9XBBInv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPd9XBBInv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPd9XBBInv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPd9XBBInv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPd9XBBInv .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-uPd9XBBInv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPd9XBBInv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPd9XBBInv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPd9XBBInv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPd9XBBInv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPd9XBBInv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPd9XBBInv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPd9XBBInv .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-uPd9XBBInv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPd9XBBInv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPd9XBBInv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPd9XBBInv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPd9XBBInv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPd9XBBInv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPd9XBBInv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPd9XBBInv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPd9XBBInv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPd9XBBInv .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-uPd9XBBInv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPd9XBBInv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPd9XBBInv .dropdown-item.active,
.cid-uPd9XBBInv .dropdown-item:active {
  background-color: transparent;
}
.cid-uPd9XBBInv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPd9XBBInv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPd9XBBInv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPd9XBBInv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPd9XBBInv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPd9XBBInv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPd9XBBInv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPd9XBBInv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPd9XBBInv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPd9XBBInv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPd9XBBInv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPd9XBBInv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPd9XBBInv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPd9XBBInv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPd9XBBInv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPd9XBBInv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPd9XBBInv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPd9XBBInv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPd9XBBInv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPd9XBBInv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPd9XBBInv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPd9XBBInv .navbar {
    height: 70px;
  }
  .cid-uPd9XBBInv .navbar.opened {
    height: auto;
  }
  .cid-uPd9XBBInv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPd9XBQupi {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPd9XBQupi .row {
  flex-direction: row-reverse;
}
.cid-uPd9XBQupi .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPd9XBQupi .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPd9XBQupi .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPd9XBQupi .mbr-section-title {
  color: #ffffff;
}
.cid-uPd9XBQupi .mbr-text,
.cid-uPd9XBQupi .mbr-section-btn {
  color: #fafafa;
}
.cid-uPd9XC0cs8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPd9XC0cs8 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPd9XC0cs8 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPd9XC0cs8 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPd9XC0cs8 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPd9XC0cs8 .card-title {
  color: #00246f;
}
.cid-uPd9XC9YNU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPd9XC9YNU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPd9XC9YNU .row {
  flex-direction: row-reverse;
}
.cid-uPd9XC9YNU img {
  width: 100%;
}
.cid-uPd9XC9YNU .mbr-description {
  color: #00246f;
}
.cid-uPd9XCg91T {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPd9XCg91T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPd9XCg91T .row {
  flex-direction: row-reverse;
}
.cid-uPd9XCg91T img {
  width: 100%;
}
.cid-uPd9XCg91T .mbr-description {
  color: #00246f;
}
.cid-uPd9XCoxai {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPd9XCoxai .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPd9XCoxai .row {
  flex-direction: row-reverse;
}
.cid-uPd9XCoxai img {
  width: 100%;
}
.cid-uPd9XCoxai .mbr-description {
  color: #00246f;
}
.cid-uPd9XCvhyn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPd9XCvhyn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPd9XCvhyn .row {
  flex-direction: row-reverse;
}
.cid-uPd9XCvhyn img {
  width: 100%;
}
.cid-uPd9XCvhyn .mbr-description {
  color: #00246f;
}
.cid-uPd9XCDTl8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPd9XCDTl8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPd9XCDTl8 .row {
  flex-direction: row-reverse;
}
.cid-uPd9XCDTl8 img {
  width: 100%;
}
.cid-uPd9XCDTl8 .mbr-description {
  color: #00246f;
}
.cid-uPd9XCK7ov {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPd9XCK7ov img,
.cid-uPd9XCK7ov .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPd9XCK7ov .item:focus,
.cid-uPd9XCK7ov span:focus {
  outline: none;
}
.cid-uPd9XCK7ov .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPd9XCK7ov .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPd9XCK7ov .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPd9XCK7ov .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPd9XCK7ov .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPd9XCK7ov .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPd9XCK7ov .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPd9XCK7ov .mbr-section-title {
  color: #00246f;
}
.cid-uPd9XCK7ov .mbr-text,
.cid-uPd9XCK7ov .mbr-section-btn {
  text-align: left;
}
.cid-uPd9XCK7ov .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPd9XCK7ov .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPd9XD0WsU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPd9XD0WsU .container {
    max-width: 1400px;
  }
}
.cid-uPd9XD0WsU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPd9XD0WsU .card-wrapper {
  margin-top: 3rem;
}
.cid-uPd9XD0WsU .row {
  justify-content: center;
}
.cid-uPd9XD0WsU .mbr-section-title {
  color: #00246f;
}
.cid-uPd9XDdkjv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPd9XDdkjv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPd9XDdkjv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPd9XDdkjv .item {
  padding-bottom: 2rem;
}
.cid-uPd9XDdkjv .item-wrapper {
  position: relative;
}
.cid-uPd9XDdkjv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPd9XDdkjv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPd9XDdkjv .carousel-control,
.cid-uPd9XDdkjv .close {
  background: #1b1b1b;
}
.cid-uPd9XDdkjv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPd9XDdkjv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPd9XDdkjv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPd9XDdkjv .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPd9XDdkjv .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-uPd9XDdkjv .close::before {
  content: '\e91a';
}
.cid-uPd9XDdkjv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPd9XDdkjv .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-uPd9XDdkjv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPd9XDdkjv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPd9XDdkjv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPd9XDdkjv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPd9XDdkjv .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-uPd9XDdkjv .carousel-indicators li.active,
.cid-uPd9XDdkjv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPd9XDdkjv .carousel-indicators li::after,
.cid-uPd9XDdkjv .carousel-indicators li::before {
  content: none;
}
.cid-uPd9XDdkjv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPd9XDdkjv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPd9XDdkjv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPd9XDdkjv .carousel-indicators {
    display: none;
  }
}
.cid-uPd9XDdkjv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPd9XDdkjv .carousel-inner > .active {
  display: block;
}
.cid-uPd9XDdkjv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPd9XDdkjv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPd9XDdkjv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPd9XDdkjv .carousel-control,
  .cid-uPd9XDdkjv .carousel-indicators,
  .cid-uPd9XDdkjv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPd9XDdkjv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPd9XDdkjv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPd9XDdkjv .carousel-indicators .active,
.cid-uPd9XDdkjv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPd9XDdkjv .carousel-indicators .active {
  background: #fff;
}
.cid-uPd9XDdkjv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPd9XDdkjv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPd9XDdkjv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPd9XDdkjv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPd9XDdkjv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPd9XDdkjv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPd9XDdkjv .carousel {
  width: 100%;
}
.cid-uPd9XDdkjv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPd9XDdkjv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPd9XDdkjv .modal.fade .modal-dialog,
.cid-uPd9XDdkjv .modal.in .modal-dialog {
  transform: none;
}
.cid-uPd9XDdkjv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPd9XDdkjv H6 {
  text-align: center;
}
.cid-uPd9XEgCBa {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPd9XEnMMS {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPd9XEnMMS .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPd9XEnMMS .container {
    max-width: 1400px;
  }
}
.cid-uPd9XEnMMS .card {
  margin: auto;
}
.cid-uPd9XEnMMS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPd9XEnMMS .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPd9XEnMMS .row {
  justify-content: center;
}
.cid-uPd9XEnMMS H3 {
  color: #ffffff;
}
.cid-uPd9XEnMMS .card-title,
.cid-uPd9XEnMMS .card-box {
  color: #ffffff;
}
.cid-uPd9XEBI21 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPd9XEBI21 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPd9XEBI21 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPd9XEBI21 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPd9XEBI21 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPd9XEBI21 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPd9XEBI21 .mbr-section-title {
  color: #00246f;
}
.cid-uPd9XERK4H {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPd9XERK4H .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPd9XERK4H form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPd9XERK4H form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPd9XERK4H form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPd9XERK4H .mbr-section-title {
  color: #fafafa;
}
.cid-uPd9XERK4H .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPd9XF5dOH {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPd9XF5dOH .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPd9XFhsuS {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPd9XFhsuS .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPd9XFhsuS .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPd9XFhsuS .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPd9XFhsuS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPd9XFhsuS .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPd9XFhsuS .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPd9XFhsuS .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPd9XFhsuS .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPd9XFhsuS .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPd9XFhsuS .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPd9XFhsuS .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdaChvnFg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdaChvnFg nav.navbar {
  position: fixed;
}
.cid-uPdaChvnFg .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-uPdaChvnFg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdaChvnFg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdaChvnFg .dropdown-item:hover,
.cid-uPdaChvnFg .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdaChvnFg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdaChvnFg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdaChvnFg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdaChvnFg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdaChvnFg .nav-link {
  position: relative;
}
.cid-uPdaChvnFg .container {
  display: flex;
  margin: auto;
}
.cid-uPdaChvnFg .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdaChvnFg .dropdown-menu,
.cid-uPdaChvnFg .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdaChvnFg .nav-item:focus,
.cid-uPdaChvnFg .nav-link:focus {
  outline: none;
}
.cid-uPdaChvnFg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdaChvnFg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdaChvnFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdaChvnFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdaChvnFg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdaChvnFg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdaChvnFg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdaChvnFg .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdaChvnFg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdaChvnFg .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdaChvnFg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdaChvnFg .navbar.collapsed {
  justify-content: center;
}
.cid-uPdaChvnFg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdaChvnFg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdaChvnFg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdaChvnFg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdaChvnFg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdaChvnFg .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-uPdaChvnFg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdaChvnFg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdaChvnFg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdaChvnFg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdaChvnFg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdaChvnFg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdaChvnFg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdaChvnFg .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-uPdaChvnFg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdaChvnFg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdaChvnFg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdaChvnFg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdaChvnFg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdaChvnFg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdaChvnFg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdaChvnFg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdaChvnFg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdaChvnFg .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-uPdaChvnFg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdaChvnFg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdaChvnFg .dropdown-item.active,
.cid-uPdaChvnFg .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdaChvnFg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdaChvnFg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdaChvnFg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdaChvnFg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdaChvnFg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdaChvnFg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdaChvnFg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdaChvnFg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdaChvnFg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdaChvnFg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdaChvnFg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdaChvnFg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdaChvnFg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdaChvnFg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdaChvnFg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdaChvnFg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdaChvnFg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdaChvnFg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdaChvnFg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdaChvnFg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdaChvnFg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdaChvnFg .navbar {
    height: 70px;
  }
  .cid-uPdaChvnFg .navbar.opened {
    height: auto;
  }
  .cid-uPdaChvnFg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdaChJECe {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdaChJECe .row {
  flex-direction: row-reverse;
}
.cid-uPdaChJECe .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdaChJECe .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdaChJECe .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdaChJECe .mbr-section-title {
  color: #ffffff;
}
.cid-uPdaChJECe .mbr-text,
.cid-uPdaChJECe .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdaChRhw0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdaChRhw0 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdaChRhw0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdaChRhw0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdaChRhw0 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdaChRhw0 .card-title {
  color: #00246f;
}
.cid-uPdaChZ2Xr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdaChZ2Xr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaChZ2Xr .row {
  flex-direction: row-reverse;
}
.cid-uPdaChZ2Xr img {
  width: 100%;
}
.cid-uPdaChZ2Xr .mbr-description {
  color: #00246f;
}
.cid-uPdaCi6gaS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdaCi6gaS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaCi6gaS .row {
  flex-direction: row-reverse;
}
.cid-uPdaCi6gaS img {
  width: 100%;
}
.cid-uPdaCi6gaS .mbr-description {
  color: #00246f;
}
.cid-uPdaCidB6f {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdaCidB6f .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaCidB6f .row {
  flex-direction: row-reverse;
}
.cid-uPdaCidB6f img {
  width: 100%;
}
.cid-uPdaCidB6f .mbr-description {
  color: #00246f;
}
.cid-uPdaCij14i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdaCij14i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaCij14i .row {
  flex-direction: row-reverse;
}
.cid-uPdaCij14i img {
  width: 100%;
}
.cid-uPdaCij14i .mbr-description {
  color: #00246f;
}
.cid-uPdaCiqrkq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdaCiqrkq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaCiqrkq .row {
  flex-direction: row-reverse;
}
.cid-uPdaCiqrkq img {
  width: 100%;
}
.cid-uPdaCiqrkq .mbr-description {
  color: #00246f;
}
.cid-uPdaCixOSV {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdaCixOSV img,
.cid-uPdaCixOSV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdaCixOSV .item:focus,
.cid-uPdaCixOSV span:focus {
  outline: none;
}
.cid-uPdaCixOSV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdaCixOSV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdaCixOSV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdaCixOSV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdaCixOSV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdaCixOSV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdaCixOSV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdaCixOSV .mbr-section-title {
  color: #00246f;
}
.cid-uPdaCixOSV .mbr-text,
.cid-uPdaCixOSV .mbr-section-btn {
  text-align: left;
}
.cid-uPdaCixOSV .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdaCixOSV .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdaCiM5y0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdaCiM5y0 .container {
    max-width: 1400px;
  }
}
.cid-uPdaCiM5y0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdaCiM5y0 .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdaCiM5y0 .row {
  justify-content: center;
}
.cid-uPdaCiM5y0 .mbr-section-title {
  color: #00246f;
}
.cid-uPdaCiXVe2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdaCiXVe2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdaCiXVe2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdaCiXVe2 .item {
  padding-bottom: 2rem;
}
.cid-uPdaCiXVe2 .item-wrapper {
  position: relative;
}
.cid-uPdaCiXVe2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdaCiXVe2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdaCiXVe2 .carousel-control,
.cid-uPdaCiXVe2 .close {
  background: #1b1b1b;
}
.cid-uPdaCiXVe2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdaCiXVe2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdaCiXVe2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdaCiXVe2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdaCiXVe2 .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-uPdaCiXVe2 .close::before {
  content: '\e91a';
}
.cid-uPdaCiXVe2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdaCiXVe2 .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-uPdaCiXVe2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdaCiXVe2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdaCiXVe2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdaCiXVe2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdaCiXVe2 .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-uPdaCiXVe2 .carousel-indicators li.active,
.cid-uPdaCiXVe2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdaCiXVe2 .carousel-indicators li::after,
.cid-uPdaCiXVe2 .carousel-indicators li::before {
  content: none;
}
.cid-uPdaCiXVe2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdaCiXVe2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdaCiXVe2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdaCiXVe2 .carousel-indicators {
    display: none;
  }
}
.cid-uPdaCiXVe2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdaCiXVe2 .carousel-inner > .active {
  display: block;
}
.cid-uPdaCiXVe2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdaCiXVe2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdaCiXVe2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdaCiXVe2 .carousel-control,
  .cid-uPdaCiXVe2 .carousel-indicators,
  .cid-uPdaCiXVe2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdaCiXVe2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdaCiXVe2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdaCiXVe2 .carousel-indicators .active,
.cid-uPdaCiXVe2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdaCiXVe2 .carousel-indicators .active {
  background: #fff;
}
.cid-uPdaCiXVe2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdaCiXVe2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdaCiXVe2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdaCiXVe2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdaCiXVe2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdaCiXVe2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdaCiXVe2 .carousel {
  width: 100%;
}
.cid-uPdaCiXVe2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdaCiXVe2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdaCiXVe2 .modal.fade .modal-dialog,
.cid-uPdaCiXVe2 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdaCiXVe2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdaCiXVe2 H6 {
  text-align: center;
}
.cid-uPdaCjGxFN {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdaCjNs1R {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdaCjNs1R .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdaCjNs1R .container {
    max-width: 1400px;
  }
}
.cid-uPdaCjNs1R .card {
  margin: auto;
}
.cid-uPdaCjNs1R .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdaCjNs1R .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdaCjNs1R .row {
  justify-content: center;
}
.cid-uPdaCjNs1R H3 {
  color: #ffffff;
}
.cid-uPdaCjNs1R .card-title,
.cid-uPdaCjNs1R .card-box {
  color: #ffffff;
}
.cid-uPdaCk0jN0 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdaCk0jN0 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdaCk0jN0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdaCk0jN0 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdaCk0jN0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdaCk0jN0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdaCk0jN0 .mbr-section-title {
  color: #00246f;
}
.cid-uPdaCka1Md {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdaCka1Md .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdaCka1Md form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdaCka1Md form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdaCka1Md form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdaCka1Md .mbr-section-title {
  color: #fafafa;
}
.cid-uPdaCka1Md .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdaCkmeBH {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdaCkmeBH .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdaCkuyyp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdaCkuyyp .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdaCkuyyp .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdaCkuyyp .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdaCkuyyp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdaCkuyyp .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdaCkuyyp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdaCkuyyp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdaCkuyyp .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdaCkuyyp .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdaCkuyyp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdaCkuyyp .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdaXhELZp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdaXhELZp nav.navbar {
  position: fixed;
}
.cid-uPdaXhELZp .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-uPdaXhELZp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdaXhELZp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdaXhELZp .dropdown-item:hover,
.cid-uPdaXhELZp .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdaXhELZp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdaXhELZp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdaXhELZp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdaXhELZp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdaXhELZp .nav-link {
  position: relative;
}
.cid-uPdaXhELZp .container {
  display: flex;
  margin: auto;
}
.cid-uPdaXhELZp .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdaXhELZp .dropdown-menu,
.cid-uPdaXhELZp .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdaXhELZp .nav-item:focus,
.cid-uPdaXhELZp .nav-link:focus {
  outline: none;
}
.cid-uPdaXhELZp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdaXhELZp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdaXhELZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdaXhELZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdaXhELZp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdaXhELZp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdaXhELZp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdaXhELZp .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdaXhELZp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdaXhELZp .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdaXhELZp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdaXhELZp .navbar.collapsed {
  justify-content: center;
}
.cid-uPdaXhELZp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdaXhELZp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdaXhELZp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdaXhELZp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdaXhELZp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdaXhELZp .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-uPdaXhELZp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdaXhELZp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdaXhELZp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdaXhELZp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdaXhELZp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdaXhELZp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdaXhELZp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdaXhELZp .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-uPdaXhELZp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdaXhELZp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdaXhELZp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdaXhELZp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdaXhELZp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdaXhELZp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdaXhELZp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdaXhELZp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdaXhELZp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdaXhELZp .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-uPdaXhELZp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdaXhELZp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdaXhELZp .dropdown-item.active,
.cid-uPdaXhELZp .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdaXhELZp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdaXhELZp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdaXhELZp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdaXhELZp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdaXhELZp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdaXhELZp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdaXhELZp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdaXhELZp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdaXhELZp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdaXhELZp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdaXhELZp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdaXhELZp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdaXhELZp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdaXhELZp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdaXhELZp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdaXhELZp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdaXhELZp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdaXhELZp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdaXhELZp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdaXhELZp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdaXhELZp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdaXhELZp .navbar {
    height: 70px;
  }
  .cid-uPdaXhELZp .navbar.opened {
    height: auto;
  }
  .cid-uPdaXhELZp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdaXhUKIU {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdaXhUKIU .row {
  flex-direction: row-reverse;
}
.cid-uPdaXhUKIU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdaXhUKIU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdaXhUKIU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdaXhUKIU .mbr-section-title {
  color: #ffffff;
}
.cid-uPdaXhUKIU .mbr-text,
.cid-uPdaXhUKIU .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdaXi3h6u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdaXi3h6u .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdaXi3h6u .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdaXi3h6u .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdaXi3h6u .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdaXi3h6u .card-title {
  color: #00246f;
}
.cid-uPdaXibmvK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdaXibmvK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaXibmvK .row {
  flex-direction: row-reverse;
}
.cid-uPdaXibmvK img {
  width: 100%;
}
.cid-uPdaXibmvK .mbr-description {
  color: #00246f;
}
.cid-uPdaXijcI7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdaXijcI7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaXijcI7 .row {
  flex-direction: row-reverse;
}
.cid-uPdaXijcI7 img {
  width: 100%;
}
.cid-uPdaXijcI7 .mbr-description {
  color: #00246f;
}
.cid-uPdaXiqZFy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdaXiqZFy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaXiqZFy .row {
  flex-direction: row-reverse;
}
.cid-uPdaXiqZFy img {
  width: 100%;
}
.cid-uPdaXiqZFy .mbr-description {
  color: #00246f;
}
.cid-uPdaXixf2y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdaXixf2y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaXixf2y .row {
  flex-direction: row-reverse;
}
.cid-uPdaXixf2y img {
  width: 100%;
}
.cid-uPdaXixf2y .mbr-description {
  color: #00246f;
}
.cid-uPdaXiH1ty {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdaXiH1ty .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdaXiH1ty .row {
  flex-direction: row-reverse;
}
.cid-uPdaXiH1ty img {
  width: 100%;
}
.cid-uPdaXiH1ty .mbr-description {
  color: #00246f;
}
.cid-uPdaXiPLND {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdaXiPLND img,
.cid-uPdaXiPLND .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdaXiPLND .item:focus,
.cid-uPdaXiPLND span:focus {
  outline: none;
}
.cid-uPdaXiPLND .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdaXiPLND .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdaXiPLND .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdaXiPLND .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdaXiPLND .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdaXiPLND .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdaXiPLND .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdaXiPLND .mbr-section-title {
  color: #00246f;
}
.cid-uPdaXiPLND .mbr-text,
.cid-uPdaXiPLND .mbr-section-btn {
  text-align: left;
}
.cid-uPdaXiPLND .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdaXiPLND .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdaXj5LxC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdaXj5LxC .container {
    max-width: 1400px;
  }
}
.cid-uPdaXj5LxC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdaXj5LxC .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdaXj5LxC .row {
  justify-content: center;
}
.cid-uPdaXj5LxC .mbr-section-title {
  color: #00246f;
}
.cid-uPdaXjhEk4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdaXjhEk4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdaXjhEk4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdaXjhEk4 .item {
  padding-bottom: 2rem;
}
.cid-uPdaXjhEk4 .item-wrapper {
  position: relative;
}
.cid-uPdaXjhEk4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdaXjhEk4 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdaXjhEk4 .carousel-control,
.cid-uPdaXjhEk4 .close {
  background: #1b1b1b;
}
.cid-uPdaXjhEk4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdaXjhEk4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdaXjhEk4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdaXjhEk4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdaXjhEk4 .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-uPdaXjhEk4 .close::before {
  content: '\e91a';
}
.cid-uPdaXjhEk4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdaXjhEk4 .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-uPdaXjhEk4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdaXjhEk4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdaXjhEk4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdaXjhEk4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdaXjhEk4 .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-uPdaXjhEk4 .carousel-indicators li.active,
.cid-uPdaXjhEk4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdaXjhEk4 .carousel-indicators li::after,
.cid-uPdaXjhEk4 .carousel-indicators li::before {
  content: none;
}
.cid-uPdaXjhEk4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdaXjhEk4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdaXjhEk4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdaXjhEk4 .carousel-indicators {
    display: none;
  }
}
.cid-uPdaXjhEk4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdaXjhEk4 .carousel-inner > .active {
  display: block;
}
.cid-uPdaXjhEk4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdaXjhEk4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdaXjhEk4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdaXjhEk4 .carousel-control,
  .cid-uPdaXjhEk4 .carousel-indicators,
  .cid-uPdaXjhEk4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdaXjhEk4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdaXjhEk4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdaXjhEk4 .carousel-indicators .active,
.cid-uPdaXjhEk4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdaXjhEk4 .carousel-indicators .active {
  background: #fff;
}
.cid-uPdaXjhEk4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdaXjhEk4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdaXjhEk4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdaXjhEk4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdaXjhEk4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdaXjhEk4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdaXjhEk4 .carousel {
  width: 100%;
}
.cid-uPdaXjhEk4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdaXjhEk4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdaXjhEk4 .modal.fade .modal-dialog,
.cid-uPdaXjhEk4 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdaXjhEk4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdaXjhEk4 H6 {
  text-align: center;
}
.cid-uPdaXk0eW2 {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdaXk9XIH {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdaXk9XIH .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdaXk9XIH .container {
    max-width: 1400px;
  }
}
.cid-uPdaXk9XIH .card {
  margin: auto;
}
.cid-uPdaXk9XIH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdaXk9XIH .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdaXk9XIH .row {
  justify-content: center;
}
.cid-uPdaXk9XIH H3 {
  color: #ffffff;
}
.cid-uPdaXk9XIH .card-title,
.cid-uPdaXk9XIH .card-box {
  color: #ffffff;
}
.cid-uPdaXknhd3 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdaXknhd3 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdaXknhd3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdaXknhd3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdaXknhd3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdaXknhd3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdaXknhd3 .mbr-section-title {
  color: #00246f;
}
.cid-uPdaXkAgVA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdaXkAgVA .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdaXkAgVA form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdaXkAgVA form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdaXkAgVA form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdaXkAgVA .mbr-section-title {
  color: #fafafa;
}
.cid-uPdaXkAgVA .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdaXkKvga {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdaXkKvga .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdaXkTpj8 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdaXkTpj8 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdaXkTpj8 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdaXkTpj8 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdaXkTpj8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdaXkTpj8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdaXkTpj8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdaXkTpj8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdaXkTpj8 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdaXkTpj8 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdaXkTpj8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdaXkTpj8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdbpZO5so {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdbpZO5so nav.navbar {
  position: fixed;
}
.cid-uPdbpZO5so .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-uPdbpZO5so .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdbpZO5so .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdbpZO5so .dropdown-item:hover,
.cid-uPdbpZO5so .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdbpZO5so .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdbpZO5so .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdbpZO5so .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdbpZO5so .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdbpZO5so .nav-link {
  position: relative;
}
.cid-uPdbpZO5so .container {
  display: flex;
  margin: auto;
}
.cid-uPdbpZO5so .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdbpZO5so .dropdown-menu,
.cid-uPdbpZO5so .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdbpZO5so .nav-item:focus,
.cid-uPdbpZO5so .nav-link:focus {
  outline: none;
}
.cid-uPdbpZO5so .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdbpZO5so .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdbpZO5so .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdbpZO5so .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdbpZO5so .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdbpZO5so .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdbpZO5so .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdbpZO5so .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdbpZO5so .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdbpZO5so .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdbpZO5so .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdbpZO5so .navbar.collapsed {
  justify-content: center;
}
.cid-uPdbpZO5so .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdbpZO5so .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdbpZO5so .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdbpZO5so .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdbpZO5so .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdbpZO5so .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-uPdbpZO5so .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdbpZO5so .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdbpZO5so .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdbpZO5so .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdbpZO5so .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdbpZO5so .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdbpZO5so .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdbpZO5so .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-uPdbpZO5so .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdbpZO5so .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdbpZO5so .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdbpZO5so .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdbpZO5so .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdbpZO5so .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdbpZO5so .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdbpZO5so .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdbpZO5so .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdbpZO5so .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-uPdbpZO5so .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdbpZO5so .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdbpZO5so .dropdown-item.active,
.cid-uPdbpZO5so .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdbpZO5so .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdbpZO5so .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdbpZO5so .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdbpZO5so .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdbpZO5so .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdbpZO5so .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdbpZO5so ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdbpZO5so .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdbpZO5so button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdbpZO5so button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdbpZO5so button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdbpZO5so button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdbpZO5so button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdbpZO5so button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdbpZO5so nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdbpZO5so nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdbpZO5so nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdbpZO5so nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdbpZO5so .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdbpZO5so a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdbpZO5so .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdbpZO5so .navbar {
    height: 70px;
  }
  .cid-uPdbpZO5so .navbar.opened {
    height: auto;
  }
  .cid-uPdbpZO5so .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdbq0435t {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdbq0435t .row {
  flex-direction: row-reverse;
}
.cid-uPdbq0435t .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdbq0435t .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdbq0435t .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdbq0435t .mbr-section-title {
  color: #ffffff;
}
.cid-uPdbq0435t .mbr-text,
.cid-uPdbq0435t .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdbq0czYK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdbq0czYK .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdbq0czYK .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdbq0czYK .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdbq0czYK .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdbq0czYK .card-title {
  color: #00246f;
}
.cid-uPdbq0keEz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdbq0keEz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdbq0keEz .row {
  flex-direction: row-reverse;
}
.cid-uPdbq0keEz img {
  width: 100%;
}
.cid-uPdbq0keEz .mbr-description {
  color: #00246f;
}
.cid-uPdbq0qpAK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdbq0qpAK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdbq0qpAK .row {
  flex-direction: row-reverse;
}
.cid-uPdbq0qpAK img {
  width: 100%;
}
.cid-uPdbq0qpAK .mbr-description {
  color: #00246f;
}
.cid-uPdbq0xqZj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdbq0xqZj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdbq0xqZj .row {
  flex-direction: row-reverse;
}
.cid-uPdbq0xqZj img {
  width: 100%;
}
.cid-uPdbq0xqZj .mbr-description {
  color: #00246f;
}
.cid-uPdbq0DQXj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdbq0DQXj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdbq0DQXj .row {
  flex-direction: row-reverse;
}
.cid-uPdbq0DQXj img {
  width: 100%;
}
.cid-uPdbq0DQXj .mbr-description {
  color: #00246f;
}
.cid-uPdbq0K9Hm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdbq0K9Hm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdbq0K9Hm .row {
  flex-direction: row-reverse;
}
.cid-uPdbq0K9Hm img {
  width: 100%;
}
.cid-uPdbq0K9Hm .mbr-description {
  color: #00246f;
}
.cid-uPdbq0ULBL {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdbq0ULBL img,
.cid-uPdbq0ULBL .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdbq0ULBL .item:focus,
.cid-uPdbq0ULBL span:focus {
  outline: none;
}
.cid-uPdbq0ULBL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdbq0ULBL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdbq0ULBL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdbq0ULBL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdbq0ULBL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdbq0ULBL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdbq0ULBL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdbq0ULBL .mbr-section-title {
  color: #00246f;
}
.cid-uPdbq0ULBL .mbr-text,
.cid-uPdbq0ULBL .mbr-section-btn {
  text-align: left;
}
.cid-uPdbq0ULBL .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdbq0ULBL .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdbq1ds0N {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdbq1ds0N .container {
    max-width: 1400px;
  }
}
.cid-uPdbq1ds0N .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdbq1ds0N .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdbq1ds0N .row {
  justify-content: center;
}
.cid-uPdbq1ds0N .mbr-section-title {
  color: #00246f;
}
.cid-uPdbq1rSvw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdbq1rSvw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdbq1rSvw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdbq1rSvw .item {
  padding-bottom: 2rem;
}
.cid-uPdbq1rSvw .item-wrapper {
  position: relative;
}
.cid-uPdbq1rSvw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdbq1rSvw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdbq1rSvw .carousel-control,
.cid-uPdbq1rSvw .close {
  background: #1b1b1b;
}
.cid-uPdbq1rSvw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdbq1rSvw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdbq1rSvw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdbq1rSvw .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdbq1rSvw .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-uPdbq1rSvw .close::before {
  content: '\e91a';
}
.cid-uPdbq1rSvw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdbq1rSvw .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-uPdbq1rSvw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdbq1rSvw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdbq1rSvw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdbq1rSvw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdbq1rSvw .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-uPdbq1rSvw .carousel-indicators li.active,
.cid-uPdbq1rSvw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdbq1rSvw .carousel-indicators li::after,
.cid-uPdbq1rSvw .carousel-indicators li::before {
  content: none;
}
.cid-uPdbq1rSvw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdbq1rSvw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdbq1rSvw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdbq1rSvw .carousel-indicators {
    display: none;
  }
}
.cid-uPdbq1rSvw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdbq1rSvw .carousel-inner > .active {
  display: block;
}
.cid-uPdbq1rSvw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdbq1rSvw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdbq1rSvw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdbq1rSvw .carousel-control,
  .cid-uPdbq1rSvw .carousel-indicators,
  .cid-uPdbq1rSvw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdbq1rSvw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdbq1rSvw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdbq1rSvw .carousel-indicators .active,
.cid-uPdbq1rSvw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdbq1rSvw .carousel-indicators .active {
  background: #fff;
}
.cid-uPdbq1rSvw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdbq1rSvw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdbq1rSvw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdbq1rSvw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdbq1rSvw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdbq1rSvw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdbq1rSvw .carousel {
  width: 100%;
}
.cid-uPdbq1rSvw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdbq1rSvw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdbq1rSvw .modal.fade .modal-dialog,
.cid-uPdbq1rSvw .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdbq1rSvw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdbq1rSvw H6 {
  text-align: center;
}
.cid-uPdbq2e8tv {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdbq2nIxm {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdbq2nIxm .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdbq2nIxm .container {
    max-width: 1400px;
  }
}
.cid-uPdbq2nIxm .card {
  margin: auto;
}
.cid-uPdbq2nIxm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdbq2nIxm .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdbq2nIxm .row {
  justify-content: center;
}
.cid-uPdbq2nIxm H3 {
  color: #ffffff;
}
.cid-uPdbq2nIxm .card-title,
.cid-uPdbq2nIxm .card-box {
  color: #ffffff;
}
.cid-uPdbq2A6un {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdbq2A6un .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdbq2A6un .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdbq2A6un .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdbq2A6un .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdbq2A6un .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdbq2A6un .mbr-section-title {
  color: #00246f;
}
.cid-uPdbq2Oc1i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdbq2Oc1i .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdbq2Oc1i form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdbq2Oc1i form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdbq2Oc1i form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdbq2Oc1i .mbr-section-title {
  color: #fafafa;
}
.cid-uPdbq2Oc1i .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdbq2YneB {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdbq2YneB .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdbq36lB1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdbq36lB1 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdbq36lB1 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdbq36lB1 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdbq36lB1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdbq36lB1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdbq36lB1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdbq36lB1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdbq36lB1 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdbq36lB1 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdbq36lB1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdbq36lB1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdceGq7Mr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdceGq7Mr nav.navbar {
  position: fixed;
}
.cid-uPdceGq7Mr .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-uPdceGq7Mr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdceGq7Mr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdceGq7Mr .dropdown-item:hover,
.cid-uPdceGq7Mr .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdceGq7Mr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdceGq7Mr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdceGq7Mr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdceGq7Mr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdceGq7Mr .nav-link {
  position: relative;
}
.cid-uPdceGq7Mr .container {
  display: flex;
  margin: auto;
}
.cid-uPdceGq7Mr .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdceGq7Mr .dropdown-menu,
.cid-uPdceGq7Mr .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdceGq7Mr .nav-item:focus,
.cid-uPdceGq7Mr .nav-link:focus {
  outline: none;
}
.cid-uPdceGq7Mr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdceGq7Mr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdceGq7Mr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdceGq7Mr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdceGq7Mr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdceGq7Mr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdceGq7Mr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdceGq7Mr .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdceGq7Mr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdceGq7Mr .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdceGq7Mr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdceGq7Mr .navbar.collapsed {
  justify-content: center;
}
.cid-uPdceGq7Mr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdceGq7Mr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdceGq7Mr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdceGq7Mr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdceGq7Mr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdceGq7Mr .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-uPdceGq7Mr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdceGq7Mr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdceGq7Mr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdceGq7Mr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdceGq7Mr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdceGq7Mr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdceGq7Mr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdceGq7Mr .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-uPdceGq7Mr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdceGq7Mr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdceGq7Mr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdceGq7Mr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdceGq7Mr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdceGq7Mr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdceGq7Mr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdceGq7Mr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdceGq7Mr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdceGq7Mr .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-uPdceGq7Mr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdceGq7Mr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdceGq7Mr .dropdown-item.active,
.cid-uPdceGq7Mr .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdceGq7Mr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdceGq7Mr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdceGq7Mr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdceGq7Mr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdceGq7Mr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdceGq7Mr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdceGq7Mr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdceGq7Mr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdceGq7Mr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdceGq7Mr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdceGq7Mr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdceGq7Mr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdceGq7Mr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdceGq7Mr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdceGq7Mr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdceGq7Mr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdceGq7Mr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdceGq7Mr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdceGq7Mr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdceGq7Mr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdceGq7Mr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdceGq7Mr .navbar {
    height: 70px;
  }
  .cid-uPdceGq7Mr .navbar.opened {
    height: auto;
  }
  .cid-uPdceGq7Mr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdceGFJBf {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdceGFJBf .row {
  flex-direction: row-reverse;
}
.cid-uPdceGFJBf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdceGFJBf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdceGFJBf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdceGFJBf .mbr-section-title {
  color: #ffffff;
}
.cid-uPdceGFJBf .mbr-text,
.cid-uPdceGFJBf .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdceGQC8X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdceGQC8X .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdceGQC8X .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdceGQC8X .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdceGQC8X .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdceGQC8X .card-title {
  color: #00246f;
}
.cid-uPdceGYriP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdceGYriP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdceGYriP .row {
  flex-direction: row-reverse;
}
.cid-uPdceGYriP img {
  width: 100%;
}
.cid-uPdceGYriP .mbr-description {
  color: #00246f;
}
.cid-uPdceH6kWw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdceH6kWw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdceH6kWw .row {
  flex-direction: row-reverse;
}
.cid-uPdceH6kWw img {
  width: 100%;
}
.cid-uPdceH6kWw .mbr-description {
  color: #00246f;
}
.cid-uPdceHdKCE {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdceHdKCE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdceHdKCE .row {
  flex-direction: row-reverse;
}
.cid-uPdceHdKCE img {
  width: 100%;
}
.cid-uPdceHdKCE .mbr-description {
  color: #00246f;
}
.cid-uPdceHj1h5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdceHj1h5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdceHj1h5 .row {
  flex-direction: row-reverse;
}
.cid-uPdceHj1h5 img {
  width: 100%;
}
.cid-uPdceHj1h5 .mbr-description {
  color: #00246f;
}
.cid-uPdceHqsqE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdceHqsqE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdceHqsqE .row {
  flex-direction: row-reverse;
}
.cid-uPdceHqsqE img {
  width: 100%;
}
.cid-uPdceHqsqE .mbr-description {
  color: #00246f;
}
.cid-uPdceHwBMu {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdceHwBMu img,
.cid-uPdceHwBMu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdceHwBMu .item:focus,
.cid-uPdceHwBMu span:focus {
  outline: none;
}
.cid-uPdceHwBMu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdceHwBMu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdceHwBMu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdceHwBMu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdceHwBMu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdceHwBMu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdceHwBMu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdceHwBMu .mbr-section-title {
  color: #00246f;
}
.cid-uPdceHwBMu .mbr-text,
.cid-uPdceHwBMu .mbr-section-btn {
  text-align: left;
}
.cid-uPdceHwBMu .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdceHwBMu .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdceHK8Aq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdceHK8Aq .container {
    max-width: 1400px;
  }
}
.cid-uPdceHK8Aq .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdceHK8Aq .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdceHK8Aq .row {
  justify-content: center;
}
.cid-uPdceHK8Aq .mbr-section-title {
  color: #00246f;
}
.cid-uPdceHXNER {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdceHXNER .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdceHXNER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdceHXNER .item {
  padding-bottom: 2rem;
}
.cid-uPdceHXNER .item-wrapper {
  position: relative;
}
.cid-uPdceHXNER .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdceHXNER .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdceHXNER .carousel-control,
.cid-uPdceHXNER .close {
  background: #1b1b1b;
}
.cid-uPdceHXNER .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdceHXNER .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdceHXNER .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdceHXNER .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdceHXNER .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-uPdceHXNER .close::before {
  content: '\e91a';
}
.cid-uPdceHXNER .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdceHXNER .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-uPdceHXNER .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdceHXNER .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdceHXNER .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdceHXNER .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdceHXNER .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-uPdceHXNER .carousel-indicators li.active,
.cid-uPdceHXNER .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdceHXNER .carousel-indicators li::after,
.cid-uPdceHXNER .carousel-indicators li::before {
  content: none;
}
.cid-uPdceHXNER .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdceHXNER .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdceHXNER .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdceHXNER .carousel-indicators {
    display: none;
  }
}
.cid-uPdceHXNER .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdceHXNER .carousel-inner > .active {
  display: block;
}
.cid-uPdceHXNER .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdceHXNER .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdceHXNER .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdceHXNER .carousel-control,
  .cid-uPdceHXNER .carousel-indicators,
  .cid-uPdceHXNER .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdceHXNER .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdceHXNER .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdceHXNER .carousel-indicators .active,
.cid-uPdceHXNER .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdceHXNER .carousel-indicators .active {
  background: #fff;
}
.cid-uPdceHXNER .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdceHXNER .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdceHXNER .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdceHXNER .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdceHXNER .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdceHXNER .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdceHXNER .carousel {
  width: 100%;
}
.cid-uPdceHXNER .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdceHXNER .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdceHXNER .modal.fade .modal-dialog,
.cid-uPdceHXNER .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdceHXNER .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdceHXNER H6 {
  text-align: center;
}
.cid-uPdceICsDS {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdceIJR8J {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdceIJR8J .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdceIJR8J .container {
    max-width: 1400px;
  }
}
.cid-uPdceIJR8J .card {
  margin: auto;
}
.cid-uPdceIJR8J .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdceIJR8J .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdceIJR8J .row {
  justify-content: center;
}
.cid-uPdceIJR8J H3 {
  color: #ffffff;
}
.cid-uPdceIJR8J .card-title,
.cid-uPdceIJR8J .card-box {
  color: #ffffff;
}
.cid-uPdceIWSrR {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdceIWSrR .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdceIWSrR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdceIWSrR .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdceIWSrR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdceIWSrR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdceIWSrR .mbr-section-title {
  color: #00246f;
}
.cid-uPdceJ9ndf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdceJ9ndf .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdceJ9ndf form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdceJ9ndf form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdceJ9ndf form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdceJ9ndf .mbr-section-title {
  color: #fafafa;
}
.cid-uPdceJ9ndf .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdceJjkDB {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdceJjkDB .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdceJscW0 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdceJscW0 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdceJscW0 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdceJscW0 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdceJscW0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdceJscW0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdceJscW0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdceJscW0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdceJscW0 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdceJscW0 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdceJscW0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdceJscW0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdczFlaVF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdczFlaVF nav.navbar {
  position: fixed;
}
.cid-uPdczFlaVF .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-uPdczFlaVF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdczFlaVF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdczFlaVF .dropdown-item:hover,
.cid-uPdczFlaVF .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdczFlaVF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdczFlaVF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdczFlaVF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdczFlaVF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdczFlaVF .nav-link {
  position: relative;
}
.cid-uPdczFlaVF .container {
  display: flex;
  margin: auto;
}
.cid-uPdczFlaVF .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdczFlaVF .dropdown-menu,
.cid-uPdczFlaVF .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdczFlaVF .nav-item:focus,
.cid-uPdczFlaVF .nav-link:focus {
  outline: none;
}
.cid-uPdczFlaVF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdczFlaVF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdczFlaVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdczFlaVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdczFlaVF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdczFlaVF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdczFlaVF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdczFlaVF .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdczFlaVF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdczFlaVF .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdczFlaVF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdczFlaVF .navbar.collapsed {
  justify-content: center;
}
.cid-uPdczFlaVF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdczFlaVF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdczFlaVF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdczFlaVF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdczFlaVF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdczFlaVF .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-uPdczFlaVF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdczFlaVF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdczFlaVF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdczFlaVF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdczFlaVF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdczFlaVF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdczFlaVF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdczFlaVF .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-uPdczFlaVF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdczFlaVF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdczFlaVF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdczFlaVF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdczFlaVF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdczFlaVF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdczFlaVF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdczFlaVF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdczFlaVF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdczFlaVF .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-uPdczFlaVF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdczFlaVF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdczFlaVF .dropdown-item.active,
.cid-uPdczFlaVF .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdczFlaVF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdczFlaVF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdczFlaVF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdczFlaVF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdczFlaVF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdczFlaVF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdczFlaVF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdczFlaVF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdczFlaVF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdczFlaVF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdczFlaVF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdczFlaVF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdczFlaVF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdczFlaVF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdczFlaVF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdczFlaVF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdczFlaVF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdczFlaVF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdczFlaVF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdczFlaVF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdczFlaVF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdczFlaVF .navbar {
    height: 70px;
  }
  .cid-uPdczFlaVF .navbar.opened {
    height: auto;
  }
  .cid-uPdczFlaVF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdczFAO4z {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdczFAO4z .row {
  flex-direction: row-reverse;
}
.cid-uPdczFAO4z .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdczFAO4z .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdczFAO4z .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdczFAO4z .mbr-section-title {
  color: #ffffff;
}
.cid-uPdczFAO4z .mbr-text,
.cid-uPdczFAO4z .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdczFIwZT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdczFIwZT .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdczFIwZT .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdczFIwZT .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdczFIwZT .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdczFIwZT .card-title {
  color: #00246f;
}
.cid-uPdczFQoFh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdczFQoFh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdczFQoFh .row {
  flex-direction: row-reverse;
}
.cid-uPdczFQoFh img {
  width: 100%;
}
.cid-uPdczFQoFh .mbr-description {
  color: #00246f;
}
.cid-uPdczFZHu5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdczFZHu5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdczFZHu5 .row {
  flex-direction: row-reverse;
}
.cid-uPdczFZHu5 img {
  width: 100%;
}
.cid-uPdczFZHu5 .mbr-description {
  color: #00246f;
}
.cid-uPdczG5oJC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdczG5oJC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdczG5oJC .row {
  flex-direction: row-reverse;
}
.cid-uPdczG5oJC img {
  width: 100%;
}
.cid-uPdczG5oJC .mbr-description {
  color: #00246f;
}
.cid-uPdczGc13f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdczGc13f .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdczGc13f .row {
  flex-direction: row-reverse;
}
.cid-uPdczGc13f img {
  width: 100%;
}
.cid-uPdczGc13f .mbr-description {
  color: #00246f;
}
.cid-uPdczGjPlW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdczGjPlW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdczGjPlW .row {
  flex-direction: row-reverse;
}
.cid-uPdczGjPlW img {
  width: 100%;
}
.cid-uPdczGjPlW .mbr-description {
  color: #00246f;
}
.cid-uPdczGp5sz {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdczGp5sz img,
.cid-uPdczGp5sz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdczGp5sz .item:focus,
.cid-uPdczGp5sz span:focus {
  outline: none;
}
.cid-uPdczGp5sz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdczGp5sz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdczGp5sz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdczGp5sz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdczGp5sz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdczGp5sz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdczGp5sz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdczGp5sz .mbr-section-title {
  color: #00246f;
}
.cid-uPdczGp5sz .mbr-text,
.cid-uPdczGp5sz .mbr-section-btn {
  text-align: left;
}
.cid-uPdczGp5sz .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdczGp5sz .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdczGDUn2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdczGDUn2 .container {
    max-width: 1400px;
  }
}
.cid-uPdczGDUn2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdczGDUn2 .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdczGDUn2 .row {
  justify-content: center;
}
.cid-uPdczGDUn2 .mbr-section-title {
  color: #00246f;
}
.cid-uPdczGQLsd {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdczGQLsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdczGQLsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdczGQLsd .item {
  padding-bottom: 2rem;
}
.cid-uPdczGQLsd .item-wrapper {
  position: relative;
}
.cid-uPdczGQLsd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdczGQLsd .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdczGQLsd .carousel-control,
.cid-uPdczGQLsd .close {
  background: #1b1b1b;
}
.cid-uPdczGQLsd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdczGQLsd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdczGQLsd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdczGQLsd .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdczGQLsd .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-uPdczGQLsd .close::before {
  content: '\e91a';
}
.cid-uPdczGQLsd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdczGQLsd .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-uPdczGQLsd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdczGQLsd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdczGQLsd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdczGQLsd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdczGQLsd .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-uPdczGQLsd .carousel-indicators li.active,
.cid-uPdczGQLsd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdczGQLsd .carousel-indicators li::after,
.cid-uPdczGQLsd .carousel-indicators li::before {
  content: none;
}
.cid-uPdczGQLsd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdczGQLsd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdczGQLsd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdczGQLsd .carousel-indicators {
    display: none;
  }
}
.cid-uPdczGQLsd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdczGQLsd .carousel-inner > .active {
  display: block;
}
.cid-uPdczGQLsd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdczGQLsd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdczGQLsd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdczGQLsd .carousel-control,
  .cid-uPdczGQLsd .carousel-indicators,
  .cid-uPdczGQLsd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdczGQLsd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdczGQLsd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdczGQLsd .carousel-indicators .active,
.cid-uPdczGQLsd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdczGQLsd .carousel-indicators .active {
  background: #fff;
}
.cid-uPdczGQLsd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdczGQLsd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdczGQLsd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdczGQLsd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdczGQLsd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdczGQLsd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdczGQLsd .carousel {
  width: 100%;
}
.cid-uPdczGQLsd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdczGQLsd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdczGQLsd .modal.fade .modal-dialog,
.cid-uPdczGQLsd .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdczGQLsd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdczGQLsd H6 {
  text-align: center;
}
.cid-uPdczHvaHC {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdczHDzan {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdczHDzan .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdczHDzan .container {
    max-width: 1400px;
  }
}
.cid-uPdczHDzan .card {
  margin: auto;
}
.cid-uPdczHDzan .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdczHDzan .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdczHDzan .row {
  justify-content: center;
}
.cid-uPdczHDzan H3 {
  color: #ffffff;
}
.cid-uPdczHDzan .card-title,
.cid-uPdczHDzan .card-box {
  color: #ffffff;
}
.cid-uPdczHQazT {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdczHQazT .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdczHQazT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdczHQazT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdczHQazT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdczHQazT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdczHQazT .mbr-section-title {
  color: #00246f;
}
.cid-uPdczI1aW6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdczI1aW6 .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdczI1aW6 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdczI1aW6 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdczI1aW6 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdczI1aW6 .mbr-section-title {
  color: #fafafa;
}
.cid-uPdczI1aW6 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdczIafhO {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdczIafhO .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdczIhzHx {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdczIhzHx .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdczIhzHx .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdczIhzHx .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdczIhzHx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdczIhzHx .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdczIhzHx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdczIhzHx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdczIhzHx .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdczIhzHx .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdczIhzHx .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdczIhzHx .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdcXYAQ16 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdcXYAQ16 nav.navbar {
  position: fixed;
}
.cid-uPdcXYAQ16 .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-uPdcXYAQ16 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdcXYAQ16 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdcXYAQ16 .dropdown-item:hover,
.cid-uPdcXYAQ16 .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdcXYAQ16 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdcXYAQ16 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdcXYAQ16 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdcXYAQ16 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdcXYAQ16 .nav-link {
  position: relative;
}
.cid-uPdcXYAQ16 .container {
  display: flex;
  margin: auto;
}
.cid-uPdcXYAQ16 .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdcXYAQ16 .dropdown-menu,
.cid-uPdcXYAQ16 .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdcXYAQ16 .nav-item:focus,
.cid-uPdcXYAQ16 .nav-link:focus {
  outline: none;
}
.cid-uPdcXYAQ16 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdcXYAQ16 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdcXYAQ16 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdcXYAQ16 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdcXYAQ16 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdcXYAQ16 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdcXYAQ16 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdcXYAQ16 .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdcXYAQ16 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdcXYAQ16 .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdcXYAQ16 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdcXYAQ16 .navbar.collapsed {
  justify-content: center;
}
.cid-uPdcXYAQ16 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdcXYAQ16 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdcXYAQ16 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdcXYAQ16 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdcXYAQ16 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdcXYAQ16 .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-uPdcXYAQ16 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdcXYAQ16 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdcXYAQ16 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdcXYAQ16 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdcXYAQ16 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdcXYAQ16 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdcXYAQ16 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdcXYAQ16 .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-uPdcXYAQ16 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdcXYAQ16 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdcXYAQ16 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdcXYAQ16 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdcXYAQ16 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdcXYAQ16 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdcXYAQ16 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdcXYAQ16 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdcXYAQ16 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdcXYAQ16 .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-uPdcXYAQ16 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdcXYAQ16 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdcXYAQ16 .dropdown-item.active,
.cid-uPdcXYAQ16 .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdcXYAQ16 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdcXYAQ16 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdcXYAQ16 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdcXYAQ16 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdcXYAQ16 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdcXYAQ16 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdcXYAQ16 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdcXYAQ16 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdcXYAQ16 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdcXYAQ16 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdcXYAQ16 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdcXYAQ16 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdcXYAQ16 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdcXYAQ16 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdcXYAQ16 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdcXYAQ16 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdcXYAQ16 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdcXYAQ16 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdcXYAQ16 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdcXYAQ16 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdcXYAQ16 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdcXYAQ16 .navbar {
    height: 70px;
  }
  .cid-uPdcXYAQ16 .navbar.opened {
    height: auto;
  }
  .cid-uPdcXYAQ16 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdcXYPOJ1 {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdcXYPOJ1 .row {
  flex-direction: row-reverse;
}
.cid-uPdcXYPOJ1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdcXYPOJ1 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdcXYPOJ1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdcXYPOJ1 .mbr-section-title {
  color: #ffffff;
}
.cid-uPdcXYPOJ1 .mbr-text,
.cid-uPdcXYPOJ1 .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdcXYYarA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdcXYYarA .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdcXYYarA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdcXYYarA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdcXYYarA .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdcXYYarA .card-title {
  color: #00246f;
}
.cid-uPdcXZ6xSs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdcXZ6xSs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdcXZ6xSs .row {
  flex-direction: row-reverse;
}
.cid-uPdcXZ6xSs img {
  width: 100%;
}
.cid-uPdcXZ6xSs .mbr-description {
  color: #00246f;
}
.cid-uPdcXZdzyW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdcXZdzyW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdcXZdzyW .row {
  flex-direction: row-reverse;
}
.cid-uPdcXZdzyW img {
  width: 100%;
}
.cid-uPdcXZdzyW .mbr-description {
  color: #00246f;
}
.cid-uPdcXZkwbm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdcXZkwbm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdcXZkwbm .row {
  flex-direction: row-reverse;
}
.cid-uPdcXZkwbm img {
  width: 100%;
}
.cid-uPdcXZkwbm .mbr-description {
  color: #00246f;
}
.cid-uPdcXZqi4K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdcXZqi4K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdcXZqi4K .row {
  flex-direction: row-reverse;
}
.cid-uPdcXZqi4K img {
  width: 100%;
}
.cid-uPdcXZqi4K .mbr-description {
  color: #00246f;
}
.cid-uPdcXZBY4A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdcXZBY4A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdcXZBY4A .row {
  flex-direction: row-reverse;
}
.cid-uPdcXZBY4A img {
  width: 100%;
}
.cid-uPdcXZBY4A .mbr-description {
  color: #00246f;
}
.cid-uPdcXZIpv1 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdcXZIpv1 img,
.cid-uPdcXZIpv1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdcXZIpv1 .item:focus,
.cid-uPdcXZIpv1 span:focus {
  outline: none;
}
.cid-uPdcXZIpv1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdcXZIpv1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdcXZIpv1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdcXZIpv1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdcXZIpv1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdcXZIpv1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdcXZIpv1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdcXZIpv1 .mbr-section-title {
  color: #00246f;
}
.cid-uPdcXZIpv1 .mbr-text,
.cid-uPdcXZIpv1 .mbr-section-btn {
  text-align: left;
}
.cid-uPdcXZIpv1 .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdcXZIpv1 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdcXZWjoj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdcXZWjoj .container {
    max-width: 1400px;
  }
}
.cid-uPdcXZWjoj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdcXZWjoj .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdcXZWjoj .row {
  justify-content: center;
}
.cid-uPdcXZWjoj .mbr-section-title {
  color: #00246f;
}
.cid-uPdcY07gzU {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdcY07gzU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdcY07gzU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdcY07gzU .item {
  padding-bottom: 2rem;
}
.cid-uPdcY07gzU .item-wrapper {
  position: relative;
}
.cid-uPdcY07gzU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdcY07gzU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdcY07gzU .carousel-control,
.cid-uPdcY07gzU .close {
  background: #1b1b1b;
}
.cid-uPdcY07gzU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdcY07gzU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdcY07gzU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdcY07gzU .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdcY07gzU .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-uPdcY07gzU .close::before {
  content: '\e91a';
}
.cid-uPdcY07gzU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdcY07gzU .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-uPdcY07gzU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdcY07gzU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdcY07gzU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdcY07gzU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdcY07gzU .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-uPdcY07gzU .carousel-indicators li.active,
.cid-uPdcY07gzU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdcY07gzU .carousel-indicators li::after,
.cid-uPdcY07gzU .carousel-indicators li::before {
  content: none;
}
.cid-uPdcY07gzU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdcY07gzU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdcY07gzU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdcY07gzU .carousel-indicators {
    display: none;
  }
}
.cid-uPdcY07gzU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdcY07gzU .carousel-inner > .active {
  display: block;
}
.cid-uPdcY07gzU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdcY07gzU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdcY07gzU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdcY07gzU .carousel-control,
  .cid-uPdcY07gzU .carousel-indicators,
  .cid-uPdcY07gzU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdcY07gzU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdcY07gzU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdcY07gzU .carousel-indicators .active,
.cid-uPdcY07gzU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdcY07gzU .carousel-indicators .active {
  background: #fff;
}
.cid-uPdcY07gzU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdcY07gzU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdcY07gzU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdcY07gzU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdcY07gzU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdcY07gzU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdcY07gzU .carousel {
  width: 100%;
}
.cid-uPdcY07gzU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdcY07gzU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdcY07gzU .modal.fade .modal-dialog,
.cid-uPdcY07gzU .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdcY07gzU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdcY07gzU H6 {
  text-align: center;
}
.cid-uPdcY0NCaV {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdcY0Ud28 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdcY0Ud28 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdcY0Ud28 .container {
    max-width: 1400px;
  }
}
.cid-uPdcY0Ud28 .card {
  margin: auto;
}
.cid-uPdcY0Ud28 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdcY0Ud28 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdcY0Ud28 .row {
  justify-content: center;
}
.cid-uPdcY0Ud28 H3 {
  color: #ffffff;
}
.cid-uPdcY0Ud28 .card-title,
.cid-uPdcY0Ud28 .card-box {
  color: #ffffff;
}
.cid-uPdcY19aHf {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdcY19aHf .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdcY19aHf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdcY19aHf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdcY19aHf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdcY19aHf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdcY19aHf .mbr-section-title {
  color: #00246f;
}
.cid-uPdcY1lGeT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdcY1lGeT .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdcY1lGeT form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdcY1lGeT form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdcY1lGeT form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdcY1lGeT .mbr-section-title {
  color: #fafafa;
}
.cid-uPdcY1lGeT .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdcY1vu8A {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdcY1vu8A .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdcY1Dexm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdcY1Dexm .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdcY1Dexm .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdcY1Dexm .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdcY1Dexm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdcY1Dexm .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdcY1Dexm .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdcY1Dexm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdcY1Dexm .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdcY1Dexm .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdcY1Dexm .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdcY1Dexm .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPddhHailz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPddhHailz nav.navbar {
  position: fixed;
}
.cid-uPddhHailz .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-uPddhHailz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPddhHailz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPddhHailz .dropdown-item:hover,
.cid-uPddhHailz .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPddhHailz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPddhHailz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPddhHailz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPddhHailz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPddhHailz .nav-link {
  position: relative;
}
.cid-uPddhHailz .container {
  display: flex;
  margin: auto;
}
.cid-uPddhHailz .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPddhHailz .dropdown-menu,
.cid-uPddhHailz .navbar.opened {
  background: #ffffff !important;
}
.cid-uPddhHailz .nav-item:focus,
.cid-uPddhHailz .nav-link:focus {
  outline: none;
}
.cid-uPddhHailz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPddhHailz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPddhHailz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPddhHailz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPddhHailz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPddhHailz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPddhHailz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPddhHailz .navbar.opened {
  transition: all 0.3s;
}
.cid-uPddhHailz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPddhHailz .navbar .navbar-logo img {
  width: auto;
}
.cid-uPddhHailz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPddhHailz .navbar.collapsed {
  justify-content: center;
}
.cid-uPddhHailz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPddhHailz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPddhHailz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPddhHailz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPddhHailz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPddhHailz .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-uPddhHailz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPddhHailz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPddhHailz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPddhHailz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPddhHailz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPddhHailz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPddhHailz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPddhHailz .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-uPddhHailz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPddhHailz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPddhHailz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPddhHailz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPddhHailz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPddhHailz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPddhHailz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPddhHailz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPddhHailz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPddhHailz .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-uPddhHailz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPddhHailz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPddhHailz .dropdown-item.active,
.cid-uPddhHailz .dropdown-item:active {
  background-color: transparent;
}
.cid-uPddhHailz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPddhHailz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPddhHailz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPddhHailz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPddhHailz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPddhHailz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPddhHailz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPddhHailz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPddhHailz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPddhHailz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPddhHailz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPddhHailz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPddhHailz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPddhHailz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPddhHailz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPddhHailz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPddhHailz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPddhHailz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPddhHailz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPddhHailz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPddhHailz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPddhHailz .navbar {
    height: 70px;
  }
  .cid-uPddhHailz .navbar.opened {
    height: auto;
  }
  .cid-uPddhHailz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPddhHpR54 {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPddhHpR54 .row {
  flex-direction: row-reverse;
}
.cid-uPddhHpR54 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPddhHpR54 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPddhHpR54 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPddhHpR54 .mbr-section-title {
  color: #ffffff;
}
.cid-uPddhHpR54 .mbr-text,
.cid-uPddhHpR54 .mbr-section-btn {
  color: #fafafa;
}
.cid-uPddhHxzwL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPddhHxzwL .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPddhHxzwL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPddhHxzwL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPddhHxzwL .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPddhHxzwL .card-title {
  color: #00246f;
}
.cid-uPddhHHbAh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPddhHHbAh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddhHHbAh .row {
  flex-direction: row-reverse;
}
.cid-uPddhHHbAh img {
  width: 100%;
}
.cid-uPddhHHbAh .mbr-description {
  color: #00246f;
}
.cid-uPddhHN9HM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPddhHN9HM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddhHN9HM .row {
  flex-direction: row-reverse;
}
.cid-uPddhHN9HM img {
  width: 100%;
}
.cid-uPddhHN9HM .mbr-description {
  color: #00246f;
}
.cid-uPddhHT67A {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPddhHT67A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddhHT67A .row {
  flex-direction: row-reverse;
}
.cid-uPddhHT67A img {
  width: 100%;
}
.cid-uPddhHT67A .mbr-description {
  color: #00246f;
}
.cid-uPddhI0WkT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPddhI0WkT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddhI0WkT .row {
  flex-direction: row-reverse;
}
.cid-uPddhI0WkT img {
  width: 100%;
}
.cid-uPddhI0WkT .mbr-description {
  color: #00246f;
}
.cid-uPddhI6ERo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPddhI6ERo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddhI6ERo .row {
  flex-direction: row-reverse;
}
.cid-uPddhI6ERo img {
  width: 100%;
}
.cid-uPddhI6ERo .mbr-description {
  color: #00246f;
}
.cid-uPddhIdnOO {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPddhIdnOO img,
.cid-uPddhIdnOO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPddhIdnOO .item:focus,
.cid-uPddhIdnOO span:focus {
  outline: none;
}
.cid-uPddhIdnOO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPddhIdnOO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPddhIdnOO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPddhIdnOO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPddhIdnOO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPddhIdnOO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPddhIdnOO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPddhIdnOO .mbr-section-title {
  color: #00246f;
}
.cid-uPddhIdnOO .mbr-text,
.cid-uPddhIdnOO .mbr-section-btn {
  text-align: left;
}
.cid-uPddhIdnOO .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPddhIdnOO .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPddhIsleb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPddhIsleb .container {
    max-width: 1400px;
  }
}
.cid-uPddhIsleb .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPddhIsleb .card-wrapper {
  margin-top: 3rem;
}
.cid-uPddhIsleb .row {
  justify-content: center;
}
.cid-uPddhIsleb .mbr-section-title {
  color: #00246f;
}
.cid-uPddhID0R8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPddhID0R8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPddhID0R8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPddhID0R8 .item {
  padding-bottom: 2rem;
}
.cid-uPddhID0R8 .item-wrapper {
  position: relative;
}
.cid-uPddhID0R8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPddhID0R8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPddhID0R8 .carousel-control,
.cid-uPddhID0R8 .close {
  background: #1b1b1b;
}
.cid-uPddhID0R8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPddhID0R8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPddhID0R8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPddhID0R8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPddhID0R8 .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-uPddhID0R8 .close::before {
  content: '\e91a';
}
.cid-uPddhID0R8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPddhID0R8 .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-uPddhID0R8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPddhID0R8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPddhID0R8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPddhID0R8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPddhID0R8 .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-uPddhID0R8 .carousel-indicators li.active,
.cid-uPddhID0R8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPddhID0R8 .carousel-indicators li::after,
.cid-uPddhID0R8 .carousel-indicators li::before {
  content: none;
}
.cid-uPddhID0R8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPddhID0R8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPddhID0R8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPddhID0R8 .carousel-indicators {
    display: none;
  }
}
.cid-uPddhID0R8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPddhID0R8 .carousel-inner > .active {
  display: block;
}
.cid-uPddhID0R8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPddhID0R8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPddhID0R8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPddhID0R8 .carousel-control,
  .cid-uPddhID0R8 .carousel-indicators,
  .cid-uPddhID0R8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPddhID0R8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPddhID0R8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPddhID0R8 .carousel-indicators .active,
.cid-uPddhID0R8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPddhID0R8 .carousel-indicators .active {
  background: #fff;
}
.cid-uPddhID0R8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPddhID0R8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPddhID0R8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPddhID0R8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPddhID0R8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPddhID0R8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPddhID0R8 .carousel {
  width: 100%;
}
.cid-uPddhID0R8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPddhID0R8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPddhID0R8 .modal.fade .modal-dialog,
.cid-uPddhID0R8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPddhID0R8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPddhID0R8 H6 {
  text-align: center;
}
.cid-uPddhJi1kI {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPddhJpOb6 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPddhJpOb6 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPddhJpOb6 .container {
    max-width: 1400px;
  }
}
.cid-uPddhJpOb6 .card {
  margin: auto;
}
.cid-uPddhJpOb6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPddhJpOb6 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPddhJpOb6 .row {
  justify-content: center;
}
.cid-uPddhJpOb6 H3 {
  color: #ffffff;
}
.cid-uPddhJpOb6 .card-title,
.cid-uPddhJpOb6 .card-box {
  color: #ffffff;
}
.cid-uPddhJC1Kf {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPddhJC1Kf .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPddhJC1Kf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPddhJC1Kf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPddhJC1Kf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPddhJC1Kf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPddhJC1Kf .mbr-section-title {
  color: #00246f;
}
.cid-uPddhJN53q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPddhJN53q .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPddhJN53q form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPddhJN53q form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPddhJN53q form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPddhJN53q .mbr-section-title {
  color: #fafafa;
}
.cid-uPddhJN53q .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPddhJXFR6 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPddhJXFR6 .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPddhK7L8q {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPddhK7L8q .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPddhK7L8q .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPddhK7L8q .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPddhK7L8q .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPddhK7L8q .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPddhK7L8q .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPddhK7L8q .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPddhK7L8q .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPddhK7L8q .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPddhK7L8q .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPddhK7L8q .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPddGh5GiH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPddGh5GiH nav.navbar {
  position: fixed;
}
.cid-uPddGh5GiH .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-uPddGh5GiH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPddGh5GiH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPddGh5GiH .dropdown-item:hover,
.cid-uPddGh5GiH .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPddGh5GiH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPddGh5GiH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPddGh5GiH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPddGh5GiH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPddGh5GiH .nav-link {
  position: relative;
}
.cid-uPddGh5GiH .container {
  display: flex;
  margin: auto;
}
.cid-uPddGh5GiH .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPddGh5GiH .dropdown-menu,
.cid-uPddGh5GiH .navbar.opened {
  background: #ffffff !important;
}
.cid-uPddGh5GiH .nav-item:focus,
.cid-uPddGh5GiH .nav-link:focus {
  outline: none;
}
.cid-uPddGh5GiH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPddGh5GiH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPddGh5GiH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPddGh5GiH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPddGh5GiH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPddGh5GiH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPddGh5GiH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPddGh5GiH .navbar.opened {
  transition: all 0.3s;
}
.cid-uPddGh5GiH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPddGh5GiH .navbar .navbar-logo img {
  width: auto;
}
.cid-uPddGh5GiH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPddGh5GiH .navbar.collapsed {
  justify-content: center;
}
.cid-uPddGh5GiH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPddGh5GiH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPddGh5GiH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPddGh5GiH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPddGh5GiH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPddGh5GiH .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-uPddGh5GiH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPddGh5GiH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPddGh5GiH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPddGh5GiH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPddGh5GiH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPddGh5GiH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPddGh5GiH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPddGh5GiH .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-uPddGh5GiH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPddGh5GiH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPddGh5GiH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPddGh5GiH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPddGh5GiH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPddGh5GiH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPddGh5GiH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPddGh5GiH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPddGh5GiH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPddGh5GiH .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-uPddGh5GiH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPddGh5GiH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPddGh5GiH .dropdown-item.active,
.cid-uPddGh5GiH .dropdown-item:active {
  background-color: transparent;
}
.cid-uPddGh5GiH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPddGh5GiH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPddGh5GiH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPddGh5GiH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPddGh5GiH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPddGh5GiH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPddGh5GiH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPddGh5GiH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPddGh5GiH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPddGh5GiH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPddGh5GiH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPddGh5GiH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPddGh5GiH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPddGh5GiH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPddGh5GiH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPddGh5GiH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPddGh5GiH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPddGh5GiH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPddGh5GiH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPddGh5GiH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPddGh5GiH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPddGh5GiH .navbar {
    height: 70px;
  }
  .cid-uPddGh5GiH .navbar.opened {
    height: auto;
  }
  .cid-uPddGh5GiH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPddGhkLYx {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPddGhkLYx .row {
  flex-direction: row-reverse;
}
.cid-uPddGhkLYx .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPddGhkLYx .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPddGhkLYx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPddGhkLYx .mbr-section-title {
  color: #ffffff;
}
.cid-uPddGhkLYx .mbr-text,
.cid-uPddGhkLYx .mbr-section-btn {
  color: #fafafa;
}
.cid-uPddGhuISt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPddGhuISt .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPddGhuISt .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPddGhuISt .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPddGhuISt .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPddGhuISt .card-title {
  color: #00246f;
}
.cid-uPddGhENJv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPddGhENJv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddGhENJv .row {
  flex-direction: row-reverse;
}
.cid-uPddGhENJv img {
  width: 100%;
}
.cid-uPddGhENJv .mbr-description {
  color: #00246f;
}
.cid-uPddGhMMzH {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPddGhMMzH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddGhMMzH .row {
  flex-direction: row-reverse;
}
.cid-uPddGhMMzH img {
  width: 100%;
}
.cid-uPddGhMMzH .mbr-description {
  color: #00246f;
}
.cid-uPddGhTa8c {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPddGhTa8c .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddGhTa8c .row {
  flex-direction: row-reverse;
}
.cid-uPddGhTa8c img {
  width: 100%;
}
.cid-uPddGhTa8c .mbr-description {
  color: #00246f;
}
.cid-uPddGhZWMy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPddGhZWMy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddGhZWMy .row {
  flex-direction: row-reverse;
}
.cid-uPddGhZWMy img {
  width: 100%;
}
.cid-uPddGhZWMy .mbr-description {
  color: #00246f;
}
.cid-uPddGi6xIA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPddGi6xIA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPddGi6xIA .row {
  flex-direction: row-reverse;
}
.cid-uPddGi6xIA img {
  width: 100%;
}
.cid-uPddGi6xIA .mbr-description {
  color: #00246f;
}
.cid-uPddGid2MG {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPddGid2MG img,
.cid-uPddGid2MG .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPddGid2MG .item:focus,
.cid-uPddGid2MG span:focus {
  outline: none;
}
.cid-uPddGid2MG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPddGid2MG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPddGid2MG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPddGid2MG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPddGid2MG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPddGid2MG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPddGid2MG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPddGid2MG .mbr-section-title {
  color: #00246f;
}
.cid-uPddGid2MG .mbr-text,
.cid-uPddGid2MG .mbr-section-btn {
  text-align: left;
}
.cid-uPddGid2MG .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPddGid2MG .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPddGisJ19 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPddGisJ19 .container {
    max-width: 1400px;
  }
}
.cid-uPddGisJ19 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPddGisJ19 .card-wrapper {
  margin-top: 3rem;
}
.cid-uPddGisJ19 .row {
  justify-content: center;
}
.cid-uPddGisJ19 .mbr-section-title {
  color: #00246f;
}
.cid-uPddGiGBC8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPddGiGBC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPddGiGBC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPddGiGBC8 .item {
  padding-bottom: 2rem;
}
.cid-uPddGiGBC8 .item-wrapper {
  position: relative;
}
.cid-uPddGiGBC8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPddGiGBC8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPddGiGBC8 .carousel-control,
.cid-uPddGiGBC8 .close {
  background: #1b1b1b;
}
.cid-uPddGiGBC8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPddGiGBC8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPddGiGBC8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPddGiGBC8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPddGiGBC8 .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-uPddGiGBC8 .close::before {
  content: '\e91a';
}
.cid-uPddGiGBC8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPddGiGBC8 .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-uPddGiGBC8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPddGiGBC8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPddGiGBC8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPddGiGBC8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPddGiGBC8 .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-uPddGiGBC8 .carousel-indicators li.active,
.cid-uPddGiGBC8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPddGiGBC8 .carousel-indicators li::after,
.cid-uPddGiGBC8 .carousel-indicators li::before {
  content: none;
}
.cid-uPddGiGBC8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPddGiGBC8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPddGiGBC8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPddGiGBC8 .carousel-indicators {
    display: none;
  }
}
.cid-uPddGiGBC8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPddGiGBC8 .carousel-inner > .active {
  display: block;
}
.cid-uPddGiGBC8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPddGiGBC8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPddGiGBC8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPddGiGBC8 .carousel-control,
  .cid-uPddGiGBC8 .carousel-indicators,
  .cid-uPddGiGBC8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPddGiGBC8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPddGiGBC8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPddGiGBC8 .carousel-indicators .active,
.cid-uPddGiGBC8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPddGiGBC8 .carousel-indicators .active {
  background: #fff;
}
.cid-uPddGiGBC8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPddGiGBC8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPddGiGBC8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPddGiGBC8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPddGiGBC8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPddGiGBC8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPddGiGBC8 .carousel {
  width: 100%;
}
.cid-uPddGiGBC8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPddGiGBC8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPddGiGBC8 .modal.fade .modal-dialog,
.cid-uPddGiGBC8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPddGiGBC8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPddGiGBC8 H6 {
  text-align: center;
}
.cid-uPddGjmv2d {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPddGjsJZE {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPddGjsJZE .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPddGjsJZE .container {
    max-width: 1400px;
  }
}
.cid-uPddGjsJZE .card {
  margin: auto;
}
.cid-uPddGjsJZE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPddGjsJZE .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPddGjsJZE .row {
  justify-content: center;
}
.cid-uPddGjsJZE H3 {
  color: #ffffff;
}
.cid-uPddGjsJZE .card-title,
.cid-uPddGjsJZE .card-box {
  color: #ffffff;
}
.cid-uPddGjGpjA {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPddGjGpjA .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPddGjGpjA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPddGjGpjA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPddGjGpjA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPddGjGpjA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPddGjGpjA .mbr-section-title {
  color: #00246f;
}
.cid-uPddGjS2BN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPddGjS2BN .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPddGjS2BN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPddGjS2BN form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPddGjS2BN form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPddGjS2BN .mbr-section-title {
  color: #fafafa;
}
.cid-uPddGjS2BN .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPddGk2hZE {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPddGk2hZE .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPddGkbYDX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPddGkbYDX .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPddGkbYDX .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPddGkbYDX .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPddGkbYDX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPddGkbYDX .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPddGkbYDX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPddGkbYDX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPddGkbYDX .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPddGkbYDX .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPddGkbYDX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPddGkbYDX .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPde7aKxzu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPde7aKxzu nav.navbar {
  position: fixed;
}
.cid-uPde7aKxzu .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-uPde7aKxzu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPde7aKxzu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPde7aKxzu .dropdown-item:hover,
.cid-uPde7aKxzu .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPde7aKxzu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPde7aKxzu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPde7aKxzu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPde7aKxzu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPde7aKxzu .nav-link {
  position: relative;
}
.cid-uPde7aKxzu .container {
  display: flex;
  margin: auto;
}
.cid-uPde7aKxzu .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPde7aKxzu .dropdown-menu,
.cid-uPde7aKxzu .navbar.opened {
  background: #ffffff !important;
}
.cid-uPde7aKxzu .nav-item:focus,
.cid-uPde7aKxzu .nav-link:focus {
  outline: none;
}
.cid-uPde7aKxzu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPde7aKxzu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPde7aKxzu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPde7aKxzu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPde7aKxzu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPde7aKxzu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPde7aKxzu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPde7aKxzu .navbar.opened {
  transition: all 0.3s;
}
.cid-uPde7aKxzu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPde7aKxzu .navbar .navbar-logo img {
  width: auto;
}
.cid-uPde7aKxzu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPde7aKxzu .navbar.collapsed {
  justify-content: center;
}
.cid-uPde7aKxzu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPde7aKxzu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPde7aKxzu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPde7aKxzu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPde7aKxzu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPde7aKxzu .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-uPde7aKxzu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPde7aKxzu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPde7aKxzu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPde7aKxzu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPde7aKxzu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPde7aKxzu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPde7aKxzu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPde7aKxzu .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-uPde7aKxzu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPde7aKxzu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPde7aKxzu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPde7aKxzu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPde7aKxzu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPde7aKxzu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPde7aKxzu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPde7aKxzu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPde7aKxzu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPde7aKxzu .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-uPde7aKxzu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPde7aKxzu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPde7aKxzu .dropdown-item.active,
.cid-uPde7aKxzu .dropdown-item:active {
  background-color: transparent;
}
.cid-uPde7aKxzu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPde7aKxzu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPde7aKxzu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPde7aKxzu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPde7aKxzu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPde7aKxzu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPde7aKxzu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPde7aKxzu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPde7aKxzu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPde7aKxzu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPde7aKxzu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPde7aKxzu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPde7aKxzu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPde7aKxzu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPde7aKxzu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPde7aKxzu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPde7aKxzu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPde7aKxzu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPde7aKxzu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPde7aKxzu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPde7aKxzu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPde7aKxzu .navbar {
    height: 70px;
  }
  .cid-uPde7aKxzu .navbar.opened {
    height: auto;
  }
  .cid-uPde7aKxzu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPde7aZtEb {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPde7aZtEb .row {
  flex-direction: row-reverse;
}
.cid-uPde7aZtEb .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPde7aZtEb .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPde7aZtEb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPde7aZtEb .mbr-section-title {
  color: #ffffff;
}
.cid-uPde7aZtEb .mbr-text,
.cid-uPde7aZtEb .mbr-section-btn {
  color: #fafafa;
}
.cid-uPde7b8YSa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPde7b8YSa .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPde7b8YSa .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPde7b8YSa .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPde7b8YSa .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPde7b8YSa .card-title {
  color: #00246f;
}
.cid-uPde7bf3I7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPde7bf3I7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPde7bf3I7 .row {
  flex-direction: row-reverse;
}
.cid-uPde7bf3I7 img {
  width: 100%;
}
.cid-uPde7bf3I7 .mbr-description {
  color: #00246f;
}
.cid-uPde7blAfe {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPde7blAfe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPde7blAfe .row {
  flex-direction: row-reverse;
}
.cid-uPde7blAfe img {
  width: 100%;
}
.cid-uPde7blAfe .mbr-description {
  color: #00246f;
}
.cid-uPde7bsDDA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPde7bsDDA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPde7bsDDA .row {
  flex-direction: row-reverse;
}
.cid-uPde7bsDDA img {
  width: 100%;
}
.cid-uPde7bsDDA .mbr-description {
  color: #00246f;
}
.cid-uPde7bzVog {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPde7bzVog .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPde7bzVog .row {
  flex-direction: row-reverse;
}
.cid-uPde7bzVog img {
  width: 100%;
}
.cid-uPde7bzVog .mbr-description {
  color: #00246f;
}
.cid-uPde7bI26e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPde7bI26e .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPde7bI26e .row {
  flex-direction: row-reverse;
}
.cid-uPde7bI26e img {
  width: 100%;
}
.cid-uPde7bI26e .mbr-description {
  color: #00246f;
}
.cid-uPde7bQiUK {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPde7bQiUK img,
.cid-uPde7bQiUK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPde7bQiUK .item:focus,
.cid-uPde7bQiUK span:focus {
  outline: none;
}
.cid-uPde7bQiUK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPde7bQiUK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPde7bQiUK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPde7bQiUK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPde7bQiUK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPde7bQiUK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPde7bQiUK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPde7bQiUK .mbr-section-title {
  color: #00246f;
}
.cid-uPde7bQiUK .mbr-text,
.cid-uPde7bQiUK .mbr-section-btn {
  text-align: left;
}
.cid-uPde7bQiUK .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPde7bQiUK .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPde7c4s6S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPde7c4s6S .container {
    max-width: 1400px;
  }
}
.cid-uPde7c4s6S .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPde7c4s6S .card-wrapper {
  margin-top: 3rem;
}
.cid-uPde7c4s6S .row {
  justify-content: center;
}
.cid-uPde7c4s6S .mbr-section-title {
  color: #00246f;
}
.cid-uPde7cfKpn {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPde7cfKpn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPde7cfKpn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPde7cfKpn .item {
  padding-bottom: 2rem;
}
.cid-uPde7cfKpn .item-wrapper {
  position: relative;
}
.cid-uPde7cfKpn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPde7cfKpn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPde7cfKpn .carousel-control,
.cid-uPde7cfKpn .close {
  background: #1b1b1b;
}
.cid-uPde7cfKpn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPde7cfKpn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPde7cfKpn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPde7cfKpn .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPde7cfKpn .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-uPde7cfKpn .close::before {
  content: '\e91a';
}
.cid-uPde7cfKpn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPde7cfKpn .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-uPde7cfKpn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPde7cfKpn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPde7cfKpn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPde7cfKpn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPde7cfKpn .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-uPde7cfKpn .carousel-indicators li.active,
.cid-uPde7cfKpn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPde7cfKpn .carousel-indicators li::after,
.cid-uPde7cfKpn .carousel-indicators li::before {
  content: none;
}
.cid-uPde7cfKpn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPde7cfKpn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPde7cfKpn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPde7cfKpn .carousel-indicators {
    display: none;
  }
}
.cid-uPde7cfKpn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPde7cfKpn .carousel-inner > .active {
  display: block;
}
.cid-uPde7cfKpn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPde7cfKpn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPde7cfKpn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPde7cfKpn .carousel-control,
  .cid-uPde7cfKpn .carousel-indicators,
  .cid-uPde7cfKpn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPde7cfKpn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPde7cfKpn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPde7cfKpn .carousel-indicators .active,
.cid-uPde7cfKpn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPde7cfKpn .carousel-indicators .active {
  background: #fff;
}
.cid-uPde7cfKpn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPde7cfKpn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPde7cfKpn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPde7cfKpn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPde7cfKpn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPde7cfKpn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPde7cfKpn .carousel {
  width: 100%;
}
.cid-uPde7cfKpn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPde7cfKpn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPde7cfKpn .modal.fade .modal-dialog,
.cid-uPde7cfKpn .modal.in .modal-dialog {
  transform: none;
}
.cid-uPde7cfKpn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPde7cfKpn H6 {
  text-align: center;
}
.cid-uPde7cV5lm {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPde7d3ShP {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPde7d3ShP .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPde7d3ShP .container {
    max-width: 1400px;
  }
}
.cid-uPde7d3ShP .card {
  margin: auto;
}
.cid-uPde7d3ShP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPde7d3ShP .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPde7d3ShP .row {
  justify-content: center;
}
.cid-uPde7d3ShP H3 {
  color: #ffffff;
}
.cid-uPde7d3ShP .card-title,
.cid-uPde7d3ShP .card-box {
  color: #ffffff;
}
.cid-uPde7djF7D {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPde7djF7D .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPde7djF7D .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPde7djF7D .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPde7djF7D .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPde7djF7D .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPde7djF7D .mbr-section-title {
  color: #00246f;
}
.cid-uPde7duFpu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPde7duFpu .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPde7duFpu form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPde7duFpu form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPde7duFpu form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPde7duFpu .mbr-section-title {
  color: #fafafa;
}
.cid-uPde7duFpu .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPde7dErtX {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPde7dErtX .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPde7dMSEQ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPde7dMSEQ .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPde7dMSEQ .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPde7dMSEQ .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPde7dMSEQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPde7dMSEQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPde7dMSEQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPde7dMSEQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPde7dMSEQ .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPde7dMSEQ .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPde7dMSEQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPde7dMSEQ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdexXUAwY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdexXUAwY nav.navbar {
  position: fixed;
}
.cid-uPdexXUAwY .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-uPdexXUAwY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdexXUAwY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdexXUAwY .dropdown-item:hover,
.cid-uPdexXUAwY .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdexXUAwY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdexXUAwY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdexXUAwY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdexXUAwY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdexXUAwY .nav-link {
  position: relative;
}
.cid-uPdexXUAwY .container {
  display: flex;
  margin: auto;
}
.cid-uPdexXUAwY .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdexXUAwY .dropdown-menu,
.cid-uPdexXUAwY .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdexXUAwY .nav-item:focus,
.cid-uPdexXUAwY .nav-link:focus {
  outline: none;
}
.cid-uPdexXUAwY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdexXUAwY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdexXUAwY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdexXUAwY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdexXUAwY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdexXUAwY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdexXUAwY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdexXUAwY .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdexXUAwY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdexXUAwY .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdexXUAwY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdexXUAwY .navbar.collapsed {
  justify-content: center;
}
.cid-uPdexXUAwY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdexXUAwY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdexXUAwY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdexXUAwY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdexXUAwY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdexXUAwY .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-uPdexXUAwY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdexXUAwY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdexXUAwY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdexXUAwY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdexXUAwY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdexXUAwY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdexXUAwY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdexXUAwY .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-uPdexXUAwY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdexXUAwY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdexXUAwY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdexXUAwY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdexXUAwY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdexXUAwY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdexXUAwY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdexXUAwY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdexXUAwY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdexXUAwY .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-uPdexXUAwY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdexXUAwY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdexXUAwY .dropdown-item.active,
.cid-uPdexXUAwY .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdexXUAwY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdexXUAwY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdexXUAwY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdexXUAwY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdexXUAwY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdexXUAwY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdexXUAwY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdexXUAwY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdexXUAwY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdexXUAwY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdexXUAwY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdexXUAwY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdexXUAwY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdexXUAwY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdexXUAwY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdexXUAwY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdexXUAwY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdexXUAwY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdexXUAwY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdexXUAwY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdexXUAwY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdexXUAwY .navbar {
    height: 70px;
  }
  .cid-uPdexXUAwY .navbar.opened {
    height: auto;
  }
  .cid-uPdexXUAwY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdexYahE1 {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdexYahE1 .row {
  flex-direction: row-reverse;
}
.cid-uPdexYahE1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdexYahE1 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdexYahE1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdexYahE1 .mbr-section-title {
  color: #ffffff;
}
.cid-uPdexYahE1 .mbr-text,
.cid-uPdexYahE1 .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdexYjA7p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdexYjA7p .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdexYjA7p .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdexYjA7p .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdexYjA7p .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdexYjA7p .card-title {
  color: #00246f;
}
.cid-uPdexYqEqr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdexYqEqr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdexYqEqr .row {
  flex-direction: row-reverse;
}
.cid-uPdexYqEqr img {
  width: 100%;
}
.cid-uPdexYqEqr .mbr-description {
  color: #00246f;
}
.cid-uPdexYxP3n {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdexYxP3n .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdexYxP3n .row {
  flex-direction: row-reverse;
}
.cid-uPdexYxP3n img {
  width: 100%;
}
.cid-uPdexYxP3n .mbr-description {
  color: #00246f;
}
.cid-uPdexYEFh4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdexYEFh4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdexYEFh4 .row {
  flex-direction: row-reverse;
}
.cid-uPdexYEFh4 img {
  width: 100%;
}
.cid-uPdexYEFh4 .mbr-description {
  color: #00246f;
}
.cid-uPdexYM1vF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdexYM1vF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdexYM1vF .row {
  flex-direction: row-reverse;
}
.cid-uPdexYM1vF img {
  width: 100%;
}
.cid-uPdexYM1vF .mbr-description {
  color: #00246f;
}
.cid-uPdexYVCa4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdexYVCa4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdexYVCa4 .row {
  flex-direction: row-reverse;
}
.cid-uPdexYVCa4 img {
  width: 100%;
}
.cid-uPdexYVCa4 .mbr-description {
  color: #00246f;
}
.cid-uPdexZ3CBE {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdexZ3CBE img,
.cid-uPdexZ3CBE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdexZ3CBE .item:focus,
.cid-uPdexZ3CBE span:focus {
  outline: none;
}
.cid-uPdexZ3CBE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdexZ3CBE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdexZ3CBE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdexZ3CBE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdexZ3CBE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdexZ3CBE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdexZ3CBE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdexZ3CBE .mbr-section-title {
  color: #00246f;
}
.cid-uPdexZ3CBE .mbr-text,
.cid-uPdexZ3CBE .mbr-section-btn {
  text-align: left;
}
.cid-uPdexZ3CBE .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdexZ3CBE .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdexZiRkb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdexZiRkb .container {
    max-width: 1400px;
  }
}
.cid-uPdexZiRkb .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdexZiRkb .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdexZiRkb .row {
  justify-content: center;
}
.cid-uPdexZiRkb .mbr-section-title {
  color: #00246f;
}
.cid-uPdexZuKjJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdexZuKjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdexZuKjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdexZuKjJ .item {
  padding-bottom: 2rem;
}
.cid-uPdexZuKjJ .item-wrapper {
  position: relative;
}
.cid-uPdexZuKjJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdexZuKjJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdexZuKjJ .carousel-control,
.cid-uPdexZuKjJ .close {
  background: #1b1b1b;
}
.cid-uPdexZuKjJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdexZuKjJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdexZuKjJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdexZuKjJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdexZuKjJ .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-uPdexZuKjJ .close::before {
  content: '\e91a';
}
.cid-uPdexZuKjJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdexZuKjJ .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-uPdexZuKjJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdexZuKjJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdexZuKjJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdexZuKjJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdexZuKjJ .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-uPdexZuKjJ .carousel-indicators li.active,
.cid-uPdexZuKjJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdexZuKjJ .carousel-indicators li::after,
.cid-uPdexZuKjJ .carousel-indicators li::before {
  content: none;
}
.cid-uPdexZuKjJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdexZuKjJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdexZuKjJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdexZuKjJ .carousel-indicators {
    display: none;
  }
}
.cid-uPdexZuKjJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdexZuKjJ .carousel-inner > .active {
  display: block;
}
.cid-uPdexZuKjJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdexZuKjJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdexZuKjJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdexZuKjJ .carousel-control,
  .cid-uPdexZuKjJ .carousel-indicators,
  .cid-uPdexZuKjJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdexZuKjJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdexZuKjJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdexZuKjJ .carousel-indicators .active,
.cid-uPdexZuKjJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdexZuKjJ .carousel-indicators .active {
  background: #fff;
}
.cid-uPdexZuKjJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdexZuKjJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdexZuKjJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdexZuKjJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdexZuKjJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdexZuKjJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdexZuKjJ .carousel {
  width: 100%;
}
.cid-uPdexZuKjJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdexZuKjJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdexZuKjJ .modal.fade .modal-dialog,
.cid-uPdexZuKjJ .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdexZuKjJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdexZuKjJ H6 {
  text-align: center;
}
.cid-uPdey0bu6M {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdey0jjOO {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdey0jjOO .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdey0jjOO .container {
    max-width: 1400px;
  }
}
.cid-uPdey0jjOO .card {
  margin: auto;
}
.cid-uPdey0jjOO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdey0jjOO .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdey0jjOO .row {
  justify-content: center;
}
.cid-uPdey0jjOO H3 {
  color: #ffffff;
}
.cid-uPdey0jjOO .card-title,
.cid-uPdey0jjOO .card-box {
  color: #ffffff;
}
.cid-uPdey0ALiD {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdey0ALiD .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdey0ALiD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdey0ALiD .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdey0ALiD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdey0ALiD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdey0ALiD .mbr-section-title {
  color: #00246f;
}
.cid-uPdey0NFsh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdey0NFsh .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdey0NFsh form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdey0NFsh form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdey0NFsh form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdey0NFsh .mbr-section-title {
  color: #fafafa;
}
.cid-uPdey0NFsh .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdey0XSkJ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdey0XSkJ .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdey15DHw {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdey15DHw .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdey15DHw .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdey15DHw .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdey15DHw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdey15DHw .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdey15DHw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdey15DHw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdey15DHw .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdey15DHw .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdey15DHw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdey15DHw .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdeT1WJPr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdeT1WJPr nav.navbar {
  position: fixed;
}
.cid-uPdeT1WJPr .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-uPdeT1WJPr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdeT1WJPr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdeT1WJPr .dropdown-item:hover,
.cid-uPdeT1WJPr .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdeT1WJPr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdeT1WJPr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdeT1WJPr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdeT1WJPr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdeT1WJPr .nav-link {
  position: relative;
}
.cid-uPdeT1WJPr .container {
  display: flex;
  margin: auto;
}
.cid-uPdeT1WJPr .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdeT1WJPr .dropdown-menu,
.cid-uPdeT1WJPr .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdeT1WJPr .nav-item:focus,
.cid-uPdeT1WJPr .nav-link:focus {
  outline: none;
}
.cid-uPdeT1WJPr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdeT1WJPr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdeT1WJPr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdeT1WJPr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdeT1WJPr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdeT1WJPr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdeT1WJPr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdeT1WJPr .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdeT1WJPr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdeT1WJPr .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdeT1WJPr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdeT1WJPr .navbar.collapsed {
  justify-content: center;
}
.cid-uPdeT1WJPr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdeT1WJPr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdeT1WJPr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdeT1WJPr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdeT1WJPr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdeT1WJPr .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-uPdeT1WJPr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdeT1WJPr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdeT1WJPr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdeT1WJPr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdeT1WJPr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdeT1WJPr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdeT1WJPr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdeT1WJPr .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-uPdeT1WJPr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdeT1WJPr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdeT1WJPr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdeT1WJPr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdeT1WJPr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdeT1WJPr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdeT1WJPr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdeT1WJPr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdeT1WJPr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdeT1WJPr .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-uPdeT1WJPr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdeT1WJPr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdeT1WJPr .dropdown-item.active,
.cid-uPdeT1WJPr .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdeT1WJPr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdeT1WJPr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdeT1WJPr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdeT1WJPr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdeT1WJPr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdeT1WJPr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdeT1WJPr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdeT1WJPr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdeT1WJPr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdeT1WJPr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdeT1WJPr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdeT1WJPr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdeT1WJPr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdeT1WJPr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdeT1WJPr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdeT1WJPr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdeT1WJPr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdeT1WJPr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdeT1WJPr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdeT1WJPr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdeT1WJPr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdeT1WJPr .navbar {
    height: 70px;
  }
  .cid-uPdeT1WJPr .navbar.opened {
    height: auto;
  }
  .cid-uPdeT1WJPr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdeT2conP {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdeT2conP .row {
  flex-direction: row-reverse;
}
.cid-uPdeT2conP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdeT2conP .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdeT2conP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdeT2conP .mbr-section-title {
  color: #ffffff;
}
.cid-uPdeT2conP .mbr-text,
.cid-uPdeT2conP .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdeT2l9N5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdeT2l9N5 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdeT2l9N5 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdeT2l9N5 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdeT2l9N5 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdeT2l9N5 .card-title {
  color: #00246f;
}
.cid-uPdeT2u8bB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdeT2u8bB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdeT2u8bB .row {
  flex-direction: row-reverse;
}
.cid-uPdeT2u8bB img {
  width: 100%;
}
.cid-uPdeT2u8bB .mbr-description {
  color: #00246f;
}
.cid-uPdeT2ANhX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdeT2ANhX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdeT2ANhX .row {
  flex-direction: row-reverse;
}
.cid-uPdeT2ANhX img {
  width: 100%;
}
.cid-uPdeT2ANhX .mbr-description {
  color: #00246f;
}
.cid-uPdeT2Gy2B {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdeT2Gy2B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdeT2Gy2B .row {
  flex-direction: row-reverse;
}
.cid-uPdeT2Gy2B img {
  width: 100%;
}
.cid-uPdeT2Gy2B .mbr-description {
  color: #00246f;
}
.cid-uPdeT2N23K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdeT2N23K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdeT2N23K .row {
  flex-direction: row-reverse;
}
.cid-uPdeT2N23K img {
  width: 100%;
}
.cid-uPdeT2N23K .mbr-description {
  color: #00246f;
}
.cid-uPdeT2Ungy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdeT2Ungy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdeT2Ungy .row {
  flex-direction: row-reverse;
}
.cid-uPdeT2Ungy img {
  width: 100%;
}
.cid-uPdeT2Ungy .mbr-description {
  color: #00246f;
}
.cid-uPdeT306rV {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdeT306rV img,
.cid-uPdeT306rV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdeT306rV .item:focus,
.cid-uPdeT306rV span:focus {
  outline: none;
}
.cid-uPdeT306rV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdeT306rV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdeT306rV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdeT306rV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdeT306rV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdeT306rV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdeT306rV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdeT306rV .mbr-section-title {
  color: #00246f;
}
.cid-uPdeT306rV .mbr-text,
.cid-uPdeT306rV .mbr-section-btn {
  text-align: left;
}
.cid-uPdeT306rV .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdeT306rV .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdeT3iLUQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdeT3iLUQ .container {
    max-width: 1400px;
  }
}
.cid-uPdeT3iLUQ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdeT3iLUQ .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdeT3iLUQ .row {
  justify-content: center;
}
.cid-uPdeT3iLUQ .mbr-section-title {
  color: #00246f;
}
.cid-uPdeT3valJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdeT3valJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdeT3valJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdeT3valJ .item {
  padding-bottom: 2rem;
}
.cid-uPdeT3valJ .item-wrapper {
  position: relative;
}
.cid-uPdeT3valJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdeT3valJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdeT3valJ .carousel-control,
.cid-uPdeT3valJ .close {
  background: #1b1b1b;
}
.cid-uPdeT3valJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdeT3valJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdeT3valJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdeT3valJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdeT3valJ .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-uPdeT3valJ .close::before {
  content: '\e91a';
}
.cid-uPdeT3valJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdeT3valJ .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-uPdeT3valJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdeT3valJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdeT3valJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdeT3valJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdeT3valJ .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-uPdeT3valJ .carousel-indicators li.active,
.cid-uPdeT3valJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdeT3valJ .carousel-indicators li::after,
.cid-uPdeT3valJ .carousel-indicators li::before {
  content: none;
}
.cid-uPdeT3valJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdeT3valJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdeT3valJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdeT3valJ .carousel-indicators {
    display: none;
  }
}
.cid-uPdeT3valJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdeT3valJ .carousel-inner > .active {
  display: block;
}
.cid-uPdeT3valJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdeT3valJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdeT3valJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdeT3valJ .carousel-control,
  .cid-uPdeT3valJ .carousel-indicators,
  .cid-uPdeT3valJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdeT3valJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdeT3valJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdeT3valJ .carousel-indicators .active,
.cid-uPdeT3valJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdeT3valJ .carousel-indicators .active {
  background: #fff;
}
.cid-uPdeT3valJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdeT3valJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdeT3valJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdeT3valJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdeT3valJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdeT3valJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdeT3valJ .carousel {
  width: 100%;
}
.cid-uPdeT3valJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdeT3valJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdeT3valJ .modal.fade .modal-dialog,
.cid-uPdeT3valJ .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdeT3valJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdeT3valJ H6 {
  text-align: center;
}
.cid-uPdeT48eB1 {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdeT4fqkc {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdeT4fqkc .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdeT4fqkc .container {
    max-width: 1400px;
  }
}
.cid-uPdeT4fqkc .card {
  margin: auto;
}
.cid-uPdeT4fqkc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdeT4fqkc .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdeT4fqkc .row {
  justify-content: center;
}
.cid-uPdeT4fqkc H3 {
  color: #ffffff;
}
.cid-uPdeT4fqkc .card-title,
.cid-uPdeT4fqkc .card-box {
  color: #ffffff;
}
.cid-uPdeT4t2on {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdeT4t2on .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdeT4t2on .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdeT4t2on .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdeT4t2on .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdeT4t2on .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdeT4t2on .mbr-section-title {
  color: #00246f;
}
.cid-uPdeT4FakK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdeT4FakK .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdeT4FakK form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdeT4FakK form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdeT4FakK form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdeT4FakK .mbr-section-title {
  color: #fafafa;
}
.cid-uPdeT4FakK .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdeT4PF5B {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdeT4PF5B .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdeT4YGLW {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdeT4YGLW .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdeT4YGLW .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdeT4YGLW .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdeT4YGLW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdeT4YGLW .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdeT4YGLW .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdeT4YGLW .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdeT4YGLW .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdeT4YGLW .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdeT4YGLW .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdeT4YGLW .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPdfhO8Gev {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPdfhO8Gev nav.navbar {
  position: fixed;
}
.cid-uPdfhO8Gev .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-uPdfhO8Gev .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPdfhO8Gev .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPdfhO8Gev .dropdown-item:hover,
.cid-uPdfhO8Gev .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPdfhO8Gev .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPdfhO8Gev .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPdfhO8Gev .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPdfhO8Gev .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdfhO8Gev .nav-link {
  position: relative;
}
.cid-uPdfhO8Gev .container {
  display: flex;
  margin: auto;
}
.cid-uPdfhO8Gev .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdfhO8Gev .dropdown-menu,
.cid-uPdfhO8Gev .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdfhO8Gev .nav-item:focus,
.cid-uPdfhO8Gev .nav-link:focus {
  outline: none;
}
.cid-uPdfhO8Gev .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPdfhO8Gev .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdfhO8Gev .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPdfhO8Gev .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPdfhO8Gev .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdfhO8Gev .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdfhO8Gev .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPdfhO8Gev .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdfhO8Gev .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdfhO8Gev .navbar .navbar-logo img {
  width: auto;
}
.cid-uPdfhO8Gev .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPdfhO8Gev .navbar.collapsed {
  justify-content: center;
}
.cid-uPdfhO8Gev .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdfhO8Gev .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdfhO8Gev .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPdfhO8Gev .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdfhO8Gev .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdfhO8Gev .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-uPdfhO8Gev .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdfhO8Gev .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdfhO8Gev .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdfhO8Gev .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdfhO8Gev .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdfhO8Gev .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdfhO8Gev .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdfhO8Gev .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-uPdfhO8Gev .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPdfhO8Gev .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdfhO8Gev .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdfhO8Gev .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdfhO8Gev .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPdfhO8Gev .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdfhO8Gev .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPdfhO8Gev .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPdfhO8Gev .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPdfhO8Gev .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-uPdfhO8Gev .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdfhO8Gev .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdfhO8Gev .dropdown-item.active,
.cid-uPdfhO8Gev .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdfhO8Gev .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdfhO8Gev .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdfhO8Gev .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdfhO8Gev .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdfhO8Gev .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdfhO8Gev .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdfhO8Gev ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPdfhO8Gev .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdfhO8Gev button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPdfhO8Gev button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPdfhO8Gev button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdfhO8Gev button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdfhO8Gev button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdfhO8Gev button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdfhO8Gev nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdfhO8Gev nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdfhO8Gev nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdfhO8Gev nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdfhO8Gev .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPdfhO8Gev a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdfhO8Gev .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdfhO8Gev .navbar {
    height: 70px;
  }
  .cid-uPdfhO8Gev .navbar.opened {
    height: auto;
  }
  .cid-uPdfhO8Gev .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdfhOnBmP {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPdfhOnBmP .row {
  flex-direction: row-reverse;
}
.cid-uPdfhOnBmP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPdfhOnBmP .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdfhOnBmP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdfhOnBmP .mbr-section-title {
  color: #ffffff;
}
.cid-uPdfhOnBmP .mbr-text,
.cid-uPdfhOnBmP .mbr-section-btn {
  color: #fafafa;
}
.cid-uPdfhOvD8q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPdfhOvD8q .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPdfhOvD8q .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPdfhOvD8q .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPdfhOvD8q .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPdfhOvD8q .card-title {
  color: #00246f;
}
.cid-uPdfhODHtz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdfhODHtz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdfhODHtz .row {
  flex-direction: row-reverse;
}
.cid-uPdfhODHtz img {
  width: 100%;
}
.cid-uPdfhODHtz .mbr-description {
  color: #00246f;
}
.cid-uPdfhOJqlR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdfhOJqlR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdfhOJqlR .row {
  flex-direction: row-reverse;
}
.cid-uPdfhOJqlR img {
  width: 100%;
}
.cid-uPdfhOJqlR .mbr-description {
  color: #00246f;
}
.cid-uPdfhOSpV0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdfhOSpV0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdfhOSpV0 .row {
  flex-direction: row-reverse;
}
.cid-uPdfhOSpV0 img {
  width: 100%;
}
.cid-uPdfhOSpV0 .mbr-description {
  color: #00246f;
}
.cid-uPdfhOZRGZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPdfhOZRGZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdfhOZRGZ .row {
  flex-direction: row-reverse;
}
.cid-uPdfhOZRGZ img {
  width: 100%;
}
.cid-uPdfhOZRGZ .mbr-description {
  color: #00246f;
}
.cid-uPdfhP5f5m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPdfhP5f5m .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdfhP5f5m .row {
  flex-direction: row-reverse;
}
.cid-uPdfhP5f5m img {
  width: 100%;
}
.cid-uPdfhP5f5m .mbr-description {
  color: #00246f;
}
.cid-uPdfhPcM7q {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPdfhPcM7q img,
.cid-uPdfhPcM7q .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPdfhPcM7q .item:focus,
.cid-uPdfhPcM7q span:focus {
  outline: none;
}
.cid-uPdfhPcM7q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdfhPcM7q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdfhPcM7q .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPdfhPcM7q .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdfhPcM7q .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPdfhPcM7q .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPdfhPcM7q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdfhPcM7q .mbr-section-title {
  color: #00246f;
}
.cid-uPdfhPcM7q .mbr-text,
.cid-uPdfhPcM7q .mbr-section-btn {
  text-align: left;
}
.cid-uPdfhPcM7q .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPdfhPcM7q .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPdfhPsauv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPdfhPsauv .container {
    max-width: 1400px;
  }
}
.cid-uPdfhPsauv .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPdfhPsauv .card-wrapper {
  margin-top: 3rem;
}
.cid-uPdfhPsauv .row {
  justify-content: center;
}
.cid-uPdfhPsauv .mbr-section-title {
  color: #00246f;
}
.cid-uPdfhPGXle {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdfhPGXle .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdfhPGXle .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdfhPGXle .item {
  padding-bottom: 2rem;
}
.cid-uPdfhPGXle .item-wrapper {
  position: relative;
}
.cid-uPdfhPGXle .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPdfhPGXle .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPdfhPGXle .carousel-control,
.cid-uPdfhPGXle .close {
  background: #1b1b1b;
}
.cid-uPdfhPGXle .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPdfhPGXle .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPdfhPGXle .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPdfhPGXle .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPdfhPGXle .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-uPdfhPGXle .close::before {
  content: '\e91a';
}
.cid-uPdfhPGXle .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPdfhPGXle .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-uPdfhPGXle .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdfhPGXle .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPdfhPGXle .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPdfhPGXle .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPdfhPGXle .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-uPdfhPGXle .carousel-indicators li.active,
.cid-uPdfhPGXle .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPdfhPGXle .carousel-indicators li::after,
.cid-uPdfhPGXle .carousel-indicators li::before {
  content: none;
}
.cid-uPdfhPGXle .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPdfhPGXle .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPdfhPGXle .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdfhPGXle .carousel-indicators {
    display: none;
  }
}
.cid-uPdfhPGXle .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPdfhPGXle .carousel-inner > .active {
  display: block;
}
.cid-uPdfhPGXle .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPdfhPGXle .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPdfhPGXle .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPdfhPGXle .carousel-control,
  .cid-uPdfhPGXle .carousel-indicators,
  .cid-uPdfhPGXle .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPdfhPGXle .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPdfhPGXle .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPdfhPGXle .carousel-indicators .active,
.cid-uPdfhPGXle .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPdfhPGXle .carousel-indicators .active {
  background: #fff;
}
.cid-uPdfhPGXle .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPdfhPGXle .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPdfhPGXle .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPdfhPGXle .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPdfhPGXle .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPdfhPGXle .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPdfhPGXle .carousel {
  width: 100%;
}
.cid-uPdfhPGXle .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPdfhPGXle .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPdfhPGXle .modal.fade .modal-dialog,
.cid-uPdfhPGXle .modal.in .modal-dialog {
  transform: none;
}
.cid-uPdfhPGXle .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPdfhPGXle H6 {
  text-align: center;
}
.cid-uPdfhQkUsL {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPdfhQr91Y {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPdfhQr91Y .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPdfhQr91Y .container {
    max-width: 1400px;
  }
}
.cid-uPdfhQr91Y .card {
  margin: auto;
}
.cid-uPdfhQr91Y .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPdfhQr91Y .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPdfhQr91Y .row {
  justify-content: center;
}
.cid-uPdfhQr91Y H3 {
  color: #ffffff;
}
.cid-uPdfhQr91Y .card-title,
.cid-uPdfhQr91Y .card-box {
  color: #ffffff;
}
.cid-uPdfhQFbnN {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPdfhQFbnN .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPdfhQFbnN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPdfhQFbnN .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPdfhQFbnN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPdfhQFbnN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPdfhQFbnN .mbr-section-title {
  color: #00246f;
}
.cid-uPdfhQRL0Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPdfhQRL0Z .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPdfhQRL0Z form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPdfhQRL0Z form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPdfhQRL0Z form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPdfhQRL0Z .mbr-section-title {
  color: #fafafa;
}
.cid-uPdfhQRL0Z .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPdfhR1Gsd {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdfhR1Gsd .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPdfhR8KFN {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPdfhR8KFN .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdfhR8KFN .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPdfhR8KFN .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdfhR8KFN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPdfhR8KFN .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPdfhR8KFN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPdfhR8KFN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPdfhR8KFN .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPdfhR8KFN .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPdfhR8KFN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPdfhR8KFN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj4nbtBtb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj4nbtBtb nav.navbar {
  position: fixed;
}
.cid-uPj4nbtBtb .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-uPj4nbtBtb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj4nbtBtb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj4nbtBtb .dropdown-item:hover,
.cid-uPj4nbtBtb .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj4nbtBtb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj4nbtBtb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj4nbtBtb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj4nbtBtb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj4nbtBtb .nav-link {
  position: relative;
}
.cid-uPj4nbtBtb .container {
  display: flex;
  margin: auto;
}
.cid-uPj4nbtBtb .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj4nbtBtb .dropdown-menu,
.cid-uPj4nbtBtb .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj4nbtBtb .nav-item:focus,
.cid-uPj4nbtBtb .nav-link:focus {
  outline: none;
}
.cid-uPj4nbtBtb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj4nbtBtb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj4nbtBtb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj4nbtBtb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj4nbtBtb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj4nbtBtb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj4nbtBtb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj4nbtBtb .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj4nbtBtb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj4nbtBtb .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj4nbtBtb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj4nbtBtb .navbar.collapsed {
  justify-content: center;
}
.cid-uPj4nbtBtb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj4nbtBtb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj4nbtBtb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj4nbtBtb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj4nbtBtb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj4nbtBtb .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-uPj4nbtBtb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj4nbtBtb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj4nbtBtb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj4nbtBtb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj4nbtBtb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj4nbtBtb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj4nbtBtb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj4nbtBtb .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-uPj4nbtBtb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj4nbtBtb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj4nbtBtb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj4nbtBtb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj4nbtBtb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj4nbtBtb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj4nbtBtb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj4nbtBtb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj4nbtBtb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj4nbtBtb .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-uPj4nbtBtb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj4nbtBtb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj4nbtBtb .dropdown-item.active,
.cid-uPj4nbtBtb .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj4nbtBtb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj4nbtBtb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj4nbtBtb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj4nbtBtb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj4nbtBtb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj4nbtBtb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj4nbtBtb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj4nbtBtb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj4nbtBtb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj4nbtBtb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj4nbtBtb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj4nbtBtb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj4nbtBtb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj4nbtBtb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj4nbtBtb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj4nbtBtb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj4nbtBtb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj4nbtBtb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj4nbtBtb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj4nbtBtb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj4nbtBtb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj4nbtBtb .navbar {
    height: 70px;
  }
  .cid-uPj4nbtBtb .navbar.opened {
    height: auto;
  }
  .cid-uPj4nbtBtb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj4nbHkSY {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj4nbHkSY .row {
  flex-direction: row-reverse;
}
.cid-uPj4nbHkSY .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj4nbHkSY .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj4nbHkSY .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj4nbHkSY .mbr-section-title {
  color: #ffffff;
}
.cid-uPj4nbHkSY .mbr-text,
.cid-uPj4nbHkSY .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj4nbOER5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj4nbOER5 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj4nbOER5 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj4nbOER5 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj4nbOER5 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj4nbOER5 .card-title {
  color: #00246f;
}
.cid-uPj4nbWNBz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj4nbWNBz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj4nbWNBz .row {
  flex-direction: row-reverse;
}
.cid-uPj4nbWNBz img {
  width: 100%;
}
.cid-uPj4nbWNBz .mbr-description {
  color: #00246f;
}
.cid-uPj4nc3uin {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj4nc3uin .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj4nc3uin .row {
  flex-direction: row-reverse;
}
.cid-uPj4nc3uin img {
  width: 100%;
}
.cid-uPj4nc3uin .mbr-description {
  color: #00246f;
}
.cid-uPj4ncazbc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj4ncazbc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj4ncazbc .row {
  flex-direction: row-reverse;
}
.cid-uPj4ncazbc img {
  width: 100%;
}
.cid-uPj4ncazbc .mbr-description {
  color: #00246f;
}
.cid-uPj4nch6Jf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj4nch6Jf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj4nch6Jf .row {
  flex-direction: row-reverse;
}
.cid-uPj4nch6Jf img {
  width: 100%;
}
.cid-uPj4nch6Jf .mbr-description {
  color: #00246f;
}
.cid-uPj4ncoBXb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj4ncoBXb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj4ncoBXb .row {
  flex-direction: row-reverse;
}
.cid-uPj4ncoBXb img {
  width: 100%;
}
.cid-uPj4ncoBXb .mbr-description {
  color: #00246f;
}
.cid-uPj4ncue6D {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj4ncue6D img,
.cid-uPj4ncue6D .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj4ncue6D .item:focus,
.cid-uPj4ncue6D span:focus {
  outline: none;
}
.cid-uPj4ncue6D .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj4ncue6D .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj4ncue6D .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj4ncue6D .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj4ncue6D .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj4ncue6D .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj4ncue6D .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj4ncue6D .mbr-section-title {
  color: #00246f;
}
.cid-uPj4ncue6D .mbr-text,
.cid-uPj4ncue6D .mbr-section-btn {
  text-align: left;
}
.cid-uPj4ncue6D .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj4ncue6D .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj4ncHIZC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj4ncHIZC .container {
    max-width: 1400px;
  }
}
.cid-uPj4ncHIZC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj4ncHIZC .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj4ncHIZC .row {
  justify-content: center;
}
.cid-uPj4ncHIZC .mbr-section-title {
  color: #00246f;
}
.cid-uPj4ncU03M {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj4ncU03M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj4ncU03M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj4ncU03M .item {
  padding-bottom: 2rem;
}
.cid-uPj4ncU03M .item-wrapper {
  position: relative;
}
.cid-uPj4ncU03M .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj4ncU03M .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj4ncU03M .carousel-control,
.cid-uPj4ncU03M .close {
  background: #1b1b1b;
}
.cid-uPj4ncU03M .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj4ncU03M .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj4ncU03M .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj4ncU03M .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj4ncU03M .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-uPj4ncU03M .close::before {
  content: '\e91a';
}
.cid-uPj4ncU03M .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj4ncU03M .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-uPj4ncU03M .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj4ncU03M .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj4ncU03M .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj4ncU03M .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj4ncU03M .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-uPj4ncU03M .carousel-indicators li.active,
.cid-uPj4ncU03M .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj4ncU03M .carousel-indicators li::after,
.cid-uPj4ncU03M .carousel-indicators li::before {
  content: none;
}
.cid-uPj4ncU03M .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj4ncU03M .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj4ncU03M .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj4ncU03M .carousel-indicators {
    display: none;
  }
}
.cid-uPj4ncU03M .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj4ncU03M .carousel-inner > .active {
  display: block;
}
.cid-uPj4ncU03M .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj4ncU03M .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj4ncU03M .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj4ncU03M .carousel-control,
  .cid-uPj4ncU03M .carousel-indicators,
  .cid-uPj4ncU03M .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj4ncU03M .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj4ncU03M .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj4ncU03M .carousel-indicators .active,
.cid-uPj4ncU03M .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj4ncU03M .carousel-indicators .active {
  background: #fff;
}
.cid-uPj4ncU03M .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj4ncU03M .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj4ncU03M .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj4ncU03M .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj4ncU03M .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj4ncU03M .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj4ncU03M .carousel {
  width: 100%;
}
.cid-uPj4ncU03M .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj4ncU03M .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj4ncU03M .modal.fade .modal-dialog,
.cid-uPj4ncU03M .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj4ncU03M .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj4ncU03M H6 {
  text-align: center;
}
.cid-uPj4ndCBmi {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj4ndJQR5 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj4ndJQR5 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj4ndJQR5 .container {
    max-width: 1400px;
  }
}
.cid-uPj4ndJQR5 .card {
  margin: auto;
}
.cid-uPj4ndJQR5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj4ndJQR5 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj4ndJQR5 .row {
  justify-content: center;
}
.cid-uPj4ndJQR5 H3 {
  color: #ffffff;
}
.cid-uPj4ndJQR5 .card-title,
.cid-uPj4ndJQR5 .card-box {
  color: #ffffff;
}
.cid-uPj4ndWBwf {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj4ndWBwf .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj4ndWBwf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj4ndWBwf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj4ndWBwf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj4ndWBwf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj4ndWBwf .mbr-section-title {
  color: #00246f;
}
.cid-uPj4ne7QIV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj4ne7QIV .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj4ne7QIV form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj4ne7QIV form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj4ne7QIV form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj4ne7QIV .mbr-section-title {
  color: #fafafa;
}
.cid-uPj4ne7QIV .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj4negHUh {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj4negHUh .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj4neodVB {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj4neodVB .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj4neodVB .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj4neodVB .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj4neodVB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj4neodVB .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj4neodVB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj4neodVB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj4neodVB .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj4neodVB .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj4neodVB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj4neodVB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj8gndEJF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj8gndEJF nav.navbar {
  position: fixed;
}
.cid-uPj8gndEJF .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-uPj8gndEJF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj8gndEJF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj8gndEJF .dropdown-item:hover,
.cid-uPj8gndEJF .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj8gndEJF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj8gndEJF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj8gndEJF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj8gndEJF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj8gndEJF .nav-link {
  position: relative;
}
.cid-uPj8gndEJF .container {
  display: flex;
  margin: auto;
}
.cid-uPj8gndEJF .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj8gndEJF .dropdown-menu,
.cid-uPj8gndEJF .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj8gndEJF .nav-item:focus,
.cid-uPj8gndEJF .nav-link:focus {
  outline: none;
}
.cid-uPj8gndEJF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj8gndEJF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj8gndEJF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj8gndEJF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj8gndEJF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj8gndEJF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj8gndEJF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj8gndEJF .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj8gndEJF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj8gndEJF .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj8gndEJF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj8gndEJF .navbar.collapsed {
  justify-content: center;
}
.cid-uPj8gndEJF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj8gndEJF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj8gndEJF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj8gndEJF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj8gndEJF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj8gndEJF .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-uPj8gndEJF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj8gndEJF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj8gndEJF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj8gndEJF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj8gndEJF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj8gndEJF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj8gndEJF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj8gndEJF .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-uPj8gndEJF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj8gndEJF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj8gndEJF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj8gndEJF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj8gndEJF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj8gndEJF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj8gndEJF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj8gndEJF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj8gndEJF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj8gndEJF .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-uPj8gndEJF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj8gndEJF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj8gndEJF .dropdown-item.active,
.cid-uPj8gndEJF .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj8gndEJF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj8gndEJF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj8gndEJF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj8gndEJF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj8gndEJF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj8gndEJF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj8gndEJF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj8gndEJF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj8gndEJF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj8gndEJF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj8gndEJF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj8gndEJF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj8gndEJF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj8gndEJF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj8gndEJF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj8gndEJF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj8gndEJF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj8gndEJF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj8gndEJF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj8gndEJF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj8gndEJF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj8gndEJF .navbar {
    height: 70px;
  }
  .cid-uPj8gndEJF .navbar.opened {
    height: auto;
  }
  .cid-uPj8gndEJF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj8gnsRGZ {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj8gnsRGZ .row {
  flex-direction: row-reverse;
}
.cid-uPj8gnsRGZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj8gnsRGZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj8gnsRGZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj8gnsRGZ .mbr-section-title {
  color: #ffffff;
}
.cid-uPj8gnsRGZ .mbr-text,
.cid-uPj8gnsRGZ .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj8gnCSqt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj8gnCSqt .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj8gnCSqt .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj8gnCSqt .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj8gnCSqt .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj8gnCSqt .card-title {
  color: #00246f;
}
.cid-uPj8gnLXtB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8gnLXtB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8gnLXtB .row {
  flex-direction: row-reverse;
}
.cid-uPj8gnLXtB img {
  width: 100%;
}
.cid-uPj8gnLXtB .mbr-description {
  color: #00246f;
}
.cid-uPj8gnSvRE {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj8gnSvRE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8gnSvRE .row {
  flex-direction: row-reverse;
}
.cid-uPj8gnSvRE img {
  width: 100%;
}
.cid-uPj8gnSvRE .mbr-description {
  color: #00246f;
}
.cid-uPj8gnZyUy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8gnZyUy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8gnZyUy .row {
  flex-direction: row-reverse;
}
.cid-uPj8gnZyUy img {
  width: 100%;
}
.cid-uPj8gnZyUy .mbr-description {
  color: #00246f;
}
.cid-uPj8go5jm8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj8go5jm8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8go5jm8 .row {
  flex-direction: row-reverse;
}
.cid-uPj8go5jm8 img {
  width: 100%;
}
.cid-uPj8go5jm8 .mbr-description {
  color: #00246f;
}
.cid-uPj8gocqmx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8gocqmx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8gocqmx .row {
  flex-direction: row-reverse;
}
.cid-uPj8gocqmx img {
  width: 100%;
}
.cid-uPj8gocqmx .mbr-description {
  color: #00246f;
}
.cid-uPj8gojdpg {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj8gojdpg img,
.cid-uPj8gojdpg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj8gojdpg .item:focus,
.cid-uPj8gojdpg span:focus {
  outline: none;
}
.cid-uPj8gojdpg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj8gojdpg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj8gojdpg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj8gojdpg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj8gojdpg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj8gojdpg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj8gojdpg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj8gojdpg .mbr-section-title {
  color: #00246f;
}
.cid-uPj8gojdpg .mbr-text,
.cid-uPj8gojdpg .mbr-section-btn {
  text-align: left;
}
.cid-uPj8gojdpg .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj8gojdpg .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj8goycve {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj8goycve .container {
    max-width: 1400px;
  }
}
.cid-uPj8goycve .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj8goycve .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj8goycve .row {
  justify-content: center;
}
.cid-uPj8goycve .mbr-section-title {
  color: #00246f;
}
.cid-uPj8goMiX3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj8goMiX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj8goMiX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj8goMiX3 .item {
  padding-bottom: 2rem;
}
.cid-uPj8goMiX3 .item-wrapper {
  position: relative;
}
.cid-uPj8goMiX3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj8goMiX3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj8goMiX3 .carousel-control,
.cid-uPj8goMiX3 .close {
  background: #1b1b1b;
}
.cid-uPj8goMiX3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj8goMiX3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj8goMiX3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj8goMiX3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj8goMiX3 .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-uPj8goMiX3 .close::before {
  content: '\e91a';
}
.cid-uPj8goMiX3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj8goMiX3 .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-uPj8goMiX3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj8goMiX3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj8goMiX3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj8goMiX3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj8goMiX3 .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-uPj8goMiX3 .carousel-indicators li.active,
.cid-uPj8goMiX3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj8goMiX3 .carousel-indicators li::after,
.cid-uPj8goMiX3 .carousel-indicators li::before {
  content: none;
}
.cid-uPj8goMiX3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj8goMiX3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj8goMiX3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj8goMiX3 .carousel-indicators {
    display: none;
  }
}
.cid-uPj8goMiX3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj8goMiX3 .carousel-inner > .active {
  display: block;
}
.cid-uPj8goMiX3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj8goMiX3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj8goMiX3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj8goMiX3 .carousel-control,
  .cid-uPj8goMiX3 .carousel-indicators,
  .cid-uPj8goMiX3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj8goMiX3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj8goMiX3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj8goMiX3 .carousel-indicators .active,
.cid-uPj8goMiX3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj8goMiX3 .carousel-indicators .active {
  background: #fff;
}
.cid-uPj8goMiX3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj8goMiX3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj8goMiX3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj8goMiX3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj8goMiX3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj8goMiX3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj8goMiX3 .carousel {
  width: 100%;
}
.cid-uPj8goMiX3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj8goMiX3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj8goMiX3 .modal.fade .modal-dialog,
.cid-uPj8goMiX3 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj8goMiX3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj8goMiX3 H6 {
  text-align: center;
}
.cid-uPj8gptLB3 {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj8gpA1n1 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj8gpA1n1 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj8gpA1n1 .container {
    max-width: 1400px;
  }
}
.cid-uPj8gpA1n1 .card {
  margin: auto;
}
.cid-uPj8gpA1n1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj8gpA1n1 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj8gpA1n1 .row {
  justify-content: center;
}
.cid-uPj8gpA1n1 H3 {
  color: #ffffff;
}
.cid-uPj8gpA1n1 .card-title,
.cid-uPj8gpA1n1 .card-box {
  color: #ffffff;
}
.cid-uPj8gpPeyL {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj8gpPeyL .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj8gpPeyL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj8gpPeyL .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj8gpPeyL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj8gpPeyL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj8gpPeyL .mbr-section-title {
  color: #00246f;
}
.cid-uPj8gq2VuI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj8gq2VuI .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj8gq2VuI form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj8gq2VuI form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj8gq2VuI form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj8gq2VuI .mbr-section-title {
  color: #fafafa;
}
.cid-uPj8gq2VuI .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj8gqcg1K {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj8gqcg1K .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj8gqkKPH {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj8gqkKPH .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj8gqkKPH .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj8gqkKPH .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj8gqkKPH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj8gqkKPH .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj8gqkKPH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj8gqkKPH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj8gqkKPH .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj8gqkKPH .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj8gqkKPH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj8gqkKPH .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj8yQV6dz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj8yQV6dz nav.navbar {
  position: fixed;
}
.cid-uPj8yQV6dz .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-uPj8yQV6dz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj8yQV6dz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj8yQV6dz .dropdown-item:hover,
.cid-uPj8yQV6dz .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj8yQV6dz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj8yQV6dz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj8yQV6dz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj8yQV6dz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj8yQV6dz .nav-link {
  position: relative;
}
.cid-uPj8yQV6dz .container {
  display: flex;
  margin: auto;
}
.cid-uPj8yQV6dz .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj8yQV6dz .dropdown-menu,
.cid-uPj8yQV6dz .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj8yQV6dz .nav-item:focus,
.cid-uPj8yQV6dz .nav-link:focus {
  outline: none;
}
.cid-uPj8yQV6dz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj8yQV6dz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj8yQV6dz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj8yQV6dz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj8yQV6dz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj8yQV6dz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj8yQV6dz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj8yQV6dz .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj8yQV6dz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj8yQV6dz .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj8yQV6dz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj8yQV6dz .navbar.collapsed {
  justify-content: center;
}
.cid-uPj8yQV6dz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj8yQV6dz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj8yQV6dz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj8yQV6dz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj8yQV6dz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj8yQV6dz .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-uPj8yQV6dz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj8yQV6dz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj8yQV6dz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj8yQV6dz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj8yQV6dz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj8yQV6dz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj8yQV6dz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj8yQV6dz .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-uPj8yQV6dz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj8yQV6dz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj8yQV6dz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj8yQV6dz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj8yQV6dz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj8yQV6dz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj8yQV6dz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj8yQV6dz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj8yQV6dz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj8yQV6dz .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-uPj8yQV6dz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj8yQV6dz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj8yQV6dz .dropdown-item.active,
.cid-uPj8yQV6dz .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj8yQV6dz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj8yQV6dz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj8yQV6dz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj8yQV6dz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj8yQV6dz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj8yQV6dz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj8yQV6dz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj8yQV6dz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj8yQV6dz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj8yQV6dz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj8yQV6dz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj8yQV6dz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj8yQV6dz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj8yQV6dz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj8yQV6dz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj8yQV6dz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj8yQV6dz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj8yQV6dz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj8yQV6dz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj8yQV6dz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj8yQV6dz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj8yQV6dz .navbar {
    height: 70px;
  }
  .cid-uPj8yQV6dz .navbar.opened {
    height: auto;
  }
  .cid-uPj8yQV6dz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj8yRfnas {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj8yRfnas .row {
  flex-direction: row-reverse;
}
.cid-uPj8yRfnas .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj8yRfnas .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj8yRfnas .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj8yRfnas .mbr-section-title {
  color: #ffffff;
}
.cid-uPj8yRfnas .mbr-text,
.cid-uPj8yRfnas .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj8yRuvtL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj8yRuvtL .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj8yRuvtL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj8yRuvtL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj8yRuvtL .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj8yRuvtL .card-title {
  color: #00246f;
}
.cid-uPj8yRH8nq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8yRH8nq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8yRH8nq .row {
  flex-direction: row-reverse;
}
.cid-uPj8yRH8nq img {
  width: 100%;
}
.cid-uPj8yRH8nq .mbr-description {
  color: #00246f;
}
.cid-uPj8yRZ6P6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj8yRZ6P6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8yRZ6P6 .row {
  flex-direction: row-reverse;
}
.cid-uPj8yRZ6P6 img {
  width: 100%;
}
.cid-uPj8yRZ6P6 .mbr-description {
  color: #00246f;
}
.cid-uPj8yS7NjO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8yS7NjO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8yS7NjO .row {
  flex-direction: row-reverse;
}
.cid-uPj8yS7NjO img {
  width: 100%;
}
.cid-uPj8yS7NjO .mbr-description {
  color: #00246f;
}
.cid-uPj8ySeIVX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj8ySeIVX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8ySeIVX .row {
  flex-direction: row-reverse;
}
.cid-uPj8ySeIVX img {
  width: 100%;
}
.cid-uPj8ySeIVX .mbr-description {
  color: #00246f;
}
.cid-uPj8ySkeUt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8ySkeUt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8ySkeUt .row {
  flex-direction: row-reverse;
}
.cid-uPj8ySkeUt img {
  width: 100%;
}
.cid-uPj8ySkeUt .mbr-description {
  color: #00246f;
}
.cid-uPj8ySr5Vj {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj8ySr5Vj img,
.cid-uPj8ySr5Vj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj8ySr5Vj .item:focus,
.cid-uPj8ySr5Vj span:focus {
  outline: none;
}
.cid-uPj8ySr5Vj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj8ySr5Vj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj8ySr5Vj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj8ySr5Vj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj8ySr5Vj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj8ySr5Vj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj8ySr5Vj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj8ySr5Vj .mbr-section-title {
  color: #00246f;
}
.cid-uPj8ySr5Vj .mbr-text,
.cid-uPj8ySr5Vj .mbr-section-btn {
  text-align: left;
}
.cid-uPj8ySr5Vj .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj8ySr5Vj .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj8ySGoxS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj8ySGoxS .container {
    max-width: 1400px;
  }
}
.cid-uPj8ySGoxS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj8ySGoxS .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj8ySGoxS .row {
  justify-content: center;
}
.cid-uPj8ySGoxS .mbr-section-title {
  color: #00246f;
}
.cid-uPj8ySV0dQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj8ySV0dQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj8ySV0dQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj8ySV0dQ .item {
  padding-bottom: 2rem;
}
.cid-uPj8ySV0dQ .item-wrapper {
  position: relative;
}
.cid-uPj8ySV0dQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj8ySV0dQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj8ySV0dQ .carousel-control,
.cid-uPj8ySV0dQ .close {
  background: #1b1b1b;
}
.cid-uPj8ySV0dQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj8ySV0dQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj8ySV0dQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj8ySV0dQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj8ySV0dQ .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-uPj8ySV0dQ .close::before {
  content: '\e91a';
}
.cid-uPj8ySV0dQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj8ySV0dQ .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-uPj8ySV0dQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj8ySV0dQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj8ySV0dQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj8ySV0dQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj8ySV0dQ .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-uPj8ySV0dQ .carousel-indicators li.active,
.cid-uPj8ySV0dQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj8ySV0dQ .carousel-indicators li::after,
.cid-uPj8ySV0dQ .carousel-indicators li::before {
  content: none;
}
.cid-uPj8ySV0dQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj8ySV0dQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj8ySV0dQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj8ySV0dQ .carousel-indicators {
    display: none;
  }
}
.cid-uPj8ySV0dQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj8ySV0dQ .carousel-inner > .active {
  display: block;
}
.cid-uPj8ySV0dQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj8ySV0dQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj8ySV0dQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj8ySV0dQ .carousel-control,
  .cid-uPj8ySV0dQ .carousel-indicators,
  .cid-uPj8ySV0dQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj8ySV0dQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj8ySV0dQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj8ySV0dQ .carousel-indicators .active,
.cid-uPj8ySV0dQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj8ySV0dQ .carousel-indicators .active {
  background: #fff;
}
.cid-uPj8ySV0dQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj8ySV0dQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj8ySV0dQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj8ySV0dQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj8ySV0dQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj8ySV0dQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj8ySV0dQ .carousel {
  width: 100%;
}
.cid-uPj8ySV0dQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj8ySV0dQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj8ySV0dQ .modal.fade .modal-dialog,
.cid-uPj8ySV0dQ .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj8ySV0dQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj8ySV0dQ H6 {
  text-align: center;
}
.cid-uPj8yTBcaE {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj8yTIkhU {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj8yTIkhU .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj8yTIkhU .container {
    max-width: 1400px;
  }
}
.cid-uPj8yTIkhU .card {
  margin: auto;
}
.cid-uPj8yTIkhU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj8yTIkhU .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj8yTIkhU .row {
  justify-content: center;
}
.cid-uPj8yTIkhU H3 {
  color: #ffffff;
}
.cid-uPj8yTIkhU .card-title,
.cid-uPj8yTIkhU .card-box {
  color: #ffffff;
}
.cid-uPj8yTWOd2 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj8yTWOd2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj8yTWOd2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj8yTWOd2 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj8yTWOd2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj8yTWOd2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj8yTWOd2 .mbr-section-title {
  color: #00246f;
}
.cid-uPj8yU8XvX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj8yU8XvX .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj8yU8XvX form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj8yU8XvX form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj8yU8XvX form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj8yU8XvX .mbr-section-title {
  color: #fafafa;
}
.cid-uPj8yU8XvX .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj8yUiIN2 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj8yUiIN2 .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj8yUqHNb {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj8yUqHNb .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj8yUqHNb .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj8yUqHNb .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj8yUqHNb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj8yUqHNb .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj8yUqHNb .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj8yUqHNb .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj8yUqHNb .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj8yUqHNb .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj8yUqHNb .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj8yUqHNb .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj8RGvtNF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj8RGvtNF nav.navbar {
  position: fixed;
}
.cid-uPj8RGvtNF .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-uPj8RGvtNF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj8RGvtNF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj8RGvtNF .dropdown-item:hover,
.cid-uPj8RGvtNF .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj8RGvtNF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj8RGvtNF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj8RGvtNF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj8RGvtNF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj8RGvtNF .nav-link {
  position: relative;
}
.cid-uPj8RGvtNF .container {
  display: flex;
  margin: auto;
}
.cid-uPj8RGvtNF .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj8RGvtNF .dropdown-menu,
.cid-uPj8RGvtNF .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj8RGvtNF .nav-item:focus,
.cid-uPj8RGvtNF .nav-link:focus {
  outline: none;
}
.cid-uPj8RGvtNF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj8RGvtNF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj8RGvtNF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj8RGvtNF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj8RGvtNF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj8RGvtNF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj8RGvtNF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj8RGvtNF .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj8RGvtNF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj8RGvtNF .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj8RGvtNF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj8RGvtNF .navbar.collapsed {
  justify-content: center;
}
.cid-uPj8RGvtNF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj8RGvtNF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj8RGvtNF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj8RGvtNF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj8RGvtNF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj8RGvtNF .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-uPj8RGvtNF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj8RGvtNF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj8RGvtNF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj8RGvtNF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj8RGvtNF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj8RGvtNF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj8RGvtNF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj8RGvtNF .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-uPj8RGvtNF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj8RGvtNF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj8RGvtNF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj8RGvtNF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj8RGvtNF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj8RGvtNF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj8RGvtNF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj8RGvtNF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj8RGvtNF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj8RGvtNF .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-uPj8RGvtNF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj8RGvtNF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj8RGvtNF .dropdown-item.active,
.cid-uPj8RGvtNF .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj8RGvtNF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj8RGvtNF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj8RGvtNF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj8RGvtNF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj8RGvtNF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj8RGvtNF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj8RGvtNF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj8RGvtNF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj8RGvtNF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj8RGvtNF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj8RGvtNF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj8RGvtNF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj8RGvtNF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj8RGvtNF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj8RGvtNF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj8RGvtNF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj8RGvtNF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj8RGvtNF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj8RGvtNF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj8RGvtNF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj8RGvtNF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj8RGvtNF .navbar {
    height: 70px;
  }
  .cid-uPj8RGvtNF .navbar.opened {
    height: auto;
  }
  .cid-uPj8RGvtNF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj8RGIRXJ {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj8RGIRXJ .row {
  flex-direction: row-reverse;
}
.cid-uPj8RGIRXJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj8RGIRXJ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj8RGIRXJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj8RGIRXJ .mbr-section-title {
  color: #ffffff;
}
.cid-uPj8RGIRXJ .mbr-text,
.cid-uPj8RGIRXJ .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj8RGQdTq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj8RGQdTq .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj8RGQdTq .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj8RGQdTq .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj8RGQdTq .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj8RGQdTq .card-title {
  color: #00246f;
}
.cid-uPj8RGXNjb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8RGXNjb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8RGXNjb .row {
  flex-direction: row-reverse;
}
.cid-uPj8RGXNjb img {
  width: 100%;
}
.cid-uPj8RGXNjb .mbr-description {
  color: #00246f;
}
.cid-uPj8RH347o {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj8RH347o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8RH347o .row {
  flex-direction: row-reverse;
}
.cid-uPj8RH347o img {
  width: 100%;
}
.cid-uPj8RH347o .mbr-description {
  color: #00246f;
}
.cid-uPj8RHaMpi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8RHaMpi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8RHaMpi .row {
  flex-direction: row-reverse;
}
.cid-uPj8RHaMpi img {
  width: 100%;
}
.cid-uPj8RHaMpi .mbr-description {
  color: #00246f;
}
.cid-uPj8RHhojy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj8RHhojy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8RHhojy .row {
  flex-direction: row-reverse;
}
.cid-uPj8RHhojy img {
  width: 100%;
}
.cid-uPj8RHhojy .mbr-description {
  color: #00246f;
}
.cid-uPj8RHogSC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj8RHogSC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj8RHogSC .row {
  flex-direction: row-reverse;
}
.cid-uPj8RHogSC img {
  width: 100%;
}
.cid-uPj8RHogSC .mbr-description {
  color: #00246f;
}
.cid-uPj8RHyLie {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj8RHyLie img,
.cid-uPj8RHyLie .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj8RHyLie .item:focus,
.cid-uPj8RHyLie span:focus {
  outline: none;
}
.cid-uPj8RHyLie .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj8RHyLie .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj8RHyLie .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj8RHyLie .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj8RHyLie .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj8RHyLie .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj8RHyLie .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj8RHyLie .mbr-section-title {
  color: #00246f;
}
.cid-uPj8RHyLie .mbr-text,
.cid-uPj8RHyLie .mbr-section-btn {
  text-align: left;
}
.cid-uPj8RHyLie .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj8RHyLie .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj8RHMi0d {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj8RHMi0d .container {
    max-width: 1400px;
  }
}
.cid-uPj8RHMi0d .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj8RHMi0d .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj8RHMi0d .row {
  justify-content: center;
}
.cid-uPj8RHMi0d .mbr-section-title {
  color: #00246f;
}
.cid-uPj8RHYWKt {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj8RHYWKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj8RHYWKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj8RHYWKt .item {
  padding-bottom: 2rem;
}
.cid-uPj8RHYWKt .item-wrapper {
  position: relative;
}
.cid-uPj8RHYWKt .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj8RHYWKt .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj8RHYWKt .carousel-control,
.cid-uPj8RHYWKt .close {
  background: #1b1b1b;
}
.cid-uPj8RHYWKt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj8RHYWKt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj8RHYWKt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj8RHYWKt .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj8RHYWKt .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-uPj8RHYWKt .close::before {
  content: '\e91a';
}
.cid-uPj8RHYWKt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj8RHYWKt .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-uPj8RHYWKt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj8RHYWKt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj8RHYWKt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj8RHYWKt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj8RHYWKt .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-uPj8RHYWKt .carousel-indicators li.active,
.cid-uPj8RHYWKt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj8RHYWKt .carousel-indicators li::after,
.cid-uPj8RHYWKt .carousel-indicators li::before {
  content: none;
}
.cid-uPj8RHYWKt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj8RHYWKt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj8RHYWKt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj8RHYWKt .carousel-indicators {
    display: none;
  }
}
.cid-uPj8RHYWKt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj8RHYWKt .carousel-inner > .active {
  display: block;
}
.cid-uPj8RHYWKt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj8RHYWKt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj8RHYWKt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj8RHYWKt .carousel-control,
  .cid-uPj8RHYWKt .carousel-indicators,
  .cid-uPj8RHYWKt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj8RHYWKt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj8RHYWKt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj8RHYWKt .carousel-indicators .active,
.cid-uPj8RHYWKt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj8RHYWKt .carousel-indicators .active {
  background: #fff;
}
.cid-uPj8RHYWKt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj8RHYWKt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj8RHYWKt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj8RHYWKt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj8RHYWKt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj8RHYWKt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj8RHYWKt .carousel {
  width: 100%;
}
.cid-uPj8RHYWKt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj8RHYWKt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj8RHYWKt .modal.fade .modal-dialog,
.cid-uPj8RHYWKt .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj8RHYWKt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj8RHYWKt H6 {
  text-align: center;
}
.cid-uPj8RICq7d {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj8RIKZnV {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj8RIKZnV .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj8RIKZnV .container {
    max-width: 1400px;
  }
}
.cid-uPj8RIKZnV .card {
  margin: auto;
}
.cid-uPj8RIKZnV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj8RIKZnV .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj8RIKZnV .row {
  justify-content: center;
}
.cid-uPj8RIKZnV H3 {
  color: #ffffff;
}
.cid-uPj8RIKZnV .card-title,
.cid-uPj8RIKZnV .card-box {
  color: #ffffff;
}
.cid-uPj8RJ08YF {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj8RJ08YF .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj8RJ08YF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj8RJ08YF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj8RJ08YF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj8RJ08YF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj8RJ08YF .mbr-section-title {
  color: #00246f;
}
.cid-uPj8RJdjfw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj8RJdjfw .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj8RJdjfw form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj8RJdjfw form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj8RJdjfw form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj8RJdjfw .mbr-section-title {
  color: #fafafa;
}
.cid-uPj8RJdjfw .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj8RJnFrD {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj8RJnFrD .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj8RJv7FH {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj8RJv7FH .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj8RJv7FH .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj8RJv7FH .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj8RJv7FH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj8RJv7FH .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj8RJv7FH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj8RJv7FH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj8RJv7FH .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj8RJv7FH .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj8RJv7FH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj8RJv7FH .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj96JYEwb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj96JYEwb nav.navbar {
  position: fixed;
}
.cid-uPj96JYEwb .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-uPj96JYEwb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj96JYEwb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj96JYEwb .dropdown-item:hover,
.cid-uPj96JYEwb .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj96JYEwb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj96JYEwb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj96JYEwb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj96JYEwb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj96JYEwb .nav-link {
  position: relative;
}
.cid-uPj96JYEwb .container {
  display: flex;
  margin: auto;
}
.cid-uPj96JYEwb .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj96JYEwb .dropdown-menu,
.cid-uPj96JYEwb .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj96JYEwb .nav-item:focus,
.cid-uPj96JYEwb .nav-link:focus {
  outline: none;
}
.cid-uPj96JYEwb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj96JYEwb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj96JYEwb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj96JYEwb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj96JYEwb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj96JYEwb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj96JYEwb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj96JYEwb .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj96JYEwb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj96JYEwb .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj96JYEwb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj96JYEwb .navbar.collapsed {
  justify-content: center;
}
.cid-uPj96JYEwb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj96JYEwb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj96JYEwb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj96JYEwb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj96JYEwb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj96JYEwb .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-uPj96JYEwb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj96JYEwb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj96JYEwb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj96JYEwb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj96JYEwb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj96JYEwb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj96JYEwb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj96JYEwb .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-uPj96JYEwb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj96JYEwb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj96JYEwb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj96JYEwb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj96JYEwb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj96JYEwb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj96JYEwb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj96JYEwb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj96JYEwb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj96JYEwb .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-uPj96JYEwb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj96JYEwb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj96JYEwb .dropdown-item.active,
.cid-uPj96JYEwb .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj96JYEwb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj96JYEwb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj96JYEwb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj96JYEwb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj96JYEwb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj96JYEwb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj96JYEwb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj96JYEwb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj96JYEwb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj96JYEwb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj96JYEwb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj96JYEwb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj96JYEwb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj96JYEwb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj96JYEwb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj96JYEwb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj96JYEwb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj96JYEwb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj96JYEwb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj96JYEwb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj96JYEwb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj96JYEwb .navbar {
    height: 70px;
  }
  .cid-uPj96JYEwb .navbar.opened {
    height: auto;
  }
  .cid-uPj96JYEwb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj96KdElQ {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj96KdElQ .row {
  flex-direction: row-reverse;
}
.cid-uPj96KdElQ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj96KdElQ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj96KdElQ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj96KdElQ .mbr-section-title {
  color: #ffffff;
}
.cid-uPj96KdElQ .mbr-text,
.cid-uPj96KdElQ .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj96KmGy5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj96KmGy5 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj96KmGy5 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj96KmGy5 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj96KmGy5 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj96KmGy5 .card-title {
  color: #00246f;
}
.cid-uPj96KucPL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj96KucPL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj96KucPL .row {
  flex-direction: row-reverse;
}
.cid-uPj96KucPL img {
  width: 100%;
}
.cid-uPj96KucPL .mbr-description {
  color: #00246f;
}
.cid-uPj96KBPUx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj96KBPUx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj96KBPUx .row {
  flex-direction: row-reverse;
}
.cid-uPj96KBPUx img {
  width: 100%;
}
.cid-uPj96KBPUx .mbr-description {
  color: #00246f;
}
.cid-uPj96KIbdi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj96KIbdi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj96KIbdi .row {
  flex-direction: row-reverse;
}
.cid-uPj96KIbdi img {
  width: 100%;
}
.cid-uPj96KIbdi .mbr-description {
  color: #00246f;
}
.cid-uPj96KRgDL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj96KRgDL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj96KRgDL .row {
  flex-direction: row-reverse;
}
.cid-uPj96KRgDL img {
  width: 100%;
}
.cid-uPj96KRgDL .mbr-description {
  color: #00246f;
}
.cid-uPj96KXDKE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj96KXDKE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj96KXDKE .row {
  flex-direction: row-reverse;
}
.cid-uPj96KXDKE img {
  width: 100%;
}
.cid-uPj96KXDKE .mbr-description {
  color: #00246f;
}
.cid-uPj96L5UYK {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj96L5UYK img,
.cid-uPj96L5UYK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj96L5UYK .item:focus,
.cid-uPj96L5UYK span:focus {
  outline: none;
}
.cid-uPj96L5UYK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj96L5UYK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj96L5UYK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj96L5UYK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj96L5UYK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj96L5UYK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj96L5UYK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj96L5UYK .mbr-section-title {
  color: #00246f;
}
.cid-uPj96L5UYK .mbr-text,
.cid-uPj96L5UYK .mbr-section-btn {
  text-align: left;
}
.cid-uPj96L5UYK .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj96L5UYK .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj96LlArk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj96LlArk .container {
    max-width: 1400px;
  }
}
.cid-uPj96LlArk .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj96LlArk .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj96LlArk .row {
  justify-content: center;
}
.cid-uPj96LlArk .mbr-section-title {
  color: #00246f;
}
.cid-uPj96LyQvc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj96LyQvc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj96LyQvc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj96LyQvc .item {
  padding-bottom: 2rem;
}
.cid-uPj96LyQvc .item-wrapper {
  position: relative;
}
.cid-uPj96LyQvc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj96LyQvc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj96LyQvc .carousel-control,
.cid-uPj96LyQvc .close {
  background: #1b1b1b;
}
.cid-uPj96LyQvc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj96LyQvc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj96LyQvc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj96LyQvc .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj96LyQvc .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-uPj96LyQvc .close::before {
  content: '\e91a';
}
.cid-uPj96LyQvc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj96LyQvc .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-uPj96LyQvc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj96LyQvc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj96LyQvc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj96LyQvc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj96LyQvc .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-uPj96LyQvc .carousel-indicators li.active,
.cid-uPj96LyQvc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj96LyQvc .carousel-indicators li::after,
.cid-uPj96LyQvc .carousel-indicators li::before {
  content: none;
}
.cid-uPj96LyQvc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj96LyQvc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj96LyQvc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj96LyQvc .carousel-indicators {
    display: none;
  }
}
.cid-uPj96LyQvc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj96LyQvc .carousel-inner > .active {
  display: block;
}
.cid-uPj96LyQvc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj96LyQvc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj96LyQvc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj96LyQvc .carousel-control,
  .cid-uPj96LyQvc .carousel-indicators,
  .cid-uPj96LyQvc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj96LyQvc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj96LyQvc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj96LyQvc .carousel-indicators .active,
.cid-uPj96LyQvc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj96LyQvc .carousel-indicators .active {
  background: #fff;
}
.cid-uPj96LyQvc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj96LyQvc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj96LyQvc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj96LyQvc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj96LyQvc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj96LyQvc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj96LyQvc .carousel {
  width: 100%;
}
.cid-uPj96LyQvc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj96LyQvc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj96LyQvc .modal.fade .modal-dialog,
.cid-uPj96LyQvc .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj96LyQvc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj96LyQvc H6 {
  text-align: center;
}
.cid-uPj96MhubF {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj96Mp6ZX {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj96Mp6ZX .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj96Mp6ZX .container {
    max-width: 1400px;
  }
}
.cid-uPj96Mp6ZX .card {
  margin: auto;
}
.cid-uPj96Mp6ZX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj96Mp6ZX .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj96Mp6ZX .row {
  justify-content: center;
}
.cid-uPj96Mp6ZX H3 {
  color: #ffffff;
}
.cid-uPj96Mp6ZX .card-title,
.cid-uPj96Mp6ZX .card-box {
  color: #ffffff;
}
.cid-uPj96MDBOG {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj96MDBOG .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj96MDBOG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj96MDBOG .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj96MDBOG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj96MDBOG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj96MDBOG .mbr-section-title {
  color: #00246f;
}
.cid-uPj96MP3Te {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj96MP3Te .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj96MP3Te form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj96MP3Te form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj96MP3Te form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj96MP3Te .mbr-section-title {
  color: #fafafa;
}
.cid-uPj96MP3Te .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj96N0IRh {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj96N0IRh .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj96N87l1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj96N87l1 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj96N87l1 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj96N87l1 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj96N87l1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj96N87l1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj96N87l1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj96N87l1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj96N87l1 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj96N87l1 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj96N87l1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj96N87l1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj9lVIX9X {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj9lVIX9X nav.navbar {
  position: fixed;
}
.cid-uPj9lVIX9X .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-uPj9lVIX9X .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj9lVIX9X .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj9lVIX9X .dropdown-item:hover,
.cid-uPj9lVIX9X .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj9lVIX9X .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj9lVIX9X .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj9lVIX9X .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj9lVIX9X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj9lVIX9X .nav-link {
  position: relative;
}
.cid-uPj9lVIX9X .container {
  display: flex;
  margin: auto;
}
.cid-uPj9lVIX9X .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj9lVIX9X .dropdown-menu,
.cid-uPj9lVIX9X .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj9lVIX9X .nav-item:focus,
.cid-uPj9lVIX9X .nav-link:focus {
  outline: none;
}
.cid-uPj9lVIX9X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj9lVIX9X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj9lVIX9X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj9lVIX9X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj9lVIX9X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj9lVIX9X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj9lVIX9X .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj9lVIX9X .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj9lVIX9X .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj9lVIX9X .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj9lVIX9X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj9lVIX9X .navbar.collapsed {
  justify-content: center;
}
.cid-uPj9lVIX9X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj9lVIX9X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj9lVIX9X .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj9lVIX9X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj9lVIX9X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj9lVIX9X .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-uPj9lVIX9X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj9lVIX9X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj9lVIX9X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj9lVIX9X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj9lVIX9X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj9lVIX9X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj9lVIX9X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj9lVIX9X .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-uPj9lVIX9X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj9lVIX9X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj9lVIX9X .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj9lVIX9X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj9lVIX9X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj9lVIX9X .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj9lVIX9X .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj9lVIX9X .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj9lVIX9X .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj9lVIX9X .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-uPj9lVIX9X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj9lVIX9X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj9lVIX9X .dropdown-item.active,
.cid-uPj9lVIX9X .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj9lVIX9X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj9lVIX9X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj9lVIX9X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj9lVIX9X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj9lVIX9X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj9lVIX9X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj9lVIX9X ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj9lVIX9X .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj9lVIX9X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj9lVIX9X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj9lVIX9X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj9lVIX9X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj9lVIX9X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj9lVIX9X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj9lVIX9X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj9lVIX9X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj9lVIX9X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj9lVIX9X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj9lVIX9X .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj9lVIX9X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj9lVIX9X .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj9lVIX9X .navbar {
    height: 70px;
  }
  .cid-uPj9lVIX9X .navbar.opened {
    height: auto;
  }
  .cid-uPj9lVIX9X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj9lVWZ8h {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj9lVWZ8h .row {
  flex-direction: row-reverse;
}
.cid-uPj9lVWZ8h .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj9lVWZ8h .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj9lVWZ8h .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj9lVWZ8h .mbr-section-title {
  color: #ffffff;
}
.cid-uPj9lVWZ8h .mbr-text,
.cid-uPj9lVWZ8h .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj9lW84h1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj9lW84h1 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj9lW84h1 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj9lW84h1 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj9lW84h1 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj9lW84h1 .card-title {
  color: #00246f;
}
.cid-uPj9lWgdDv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9lWgdDv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9lWgdDv .row {
  flex-direction: row-reverse;
}
.cid-uPj9lWgdDv img {
  width: 100%;
}
.cid-uPj9lWgdDv .mbr-description {
  color: #00246f;
}
.cid-uPj9lWnAur {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj9lWnAur .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9lWnAur .row {
  flex-direction: row-reverse;
}
.cid-uPj9lWnAur img {
  width: 100%;
}
.cid-uPj9lWnAur .mbr-description {
  color: #00246f;
}
.cid-uPj9lWurCo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9lWurCo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9lWurCo .row {
  flex-direction: row-reverse;
}
.cid-uPj9lWurCo img {
  width: 100%;
}
.cid-uPj9lWurCo .mbr-description {
  color: #00246f;
}
.cid-uPj9lWBQWe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj9lWBQWe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9lWBQWe .row {
  flex-direction: row-reverse;
}
.cid-uPj9lWBQWe img {
  width: 100%;
}
.cid-uPj9lWBQWe .mbr-description {
  color: #00246f;
}
.cid-uPj9lWIyLR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9lWIyLR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9lWIyLR .row {
  flex-direction: row-reverse;
}
.cid-uPj9lWIyLR img {
  width: 100%;
}
.cid-uPj9lWIyLR .mbr-description {
  color: #00246f;
}
.cid-uPj9lWPRdu {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj9lWPRdu img,
.cid-uPj9lWPRdu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj9lWPRdu .item:focus,
.cid-uPj9lWPRdu span:focus {
  outline: none;
}
.cid-uPj9lWPRdu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj9lWPRdu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj9lWPRdu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj9lWPRdu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj9lWPRdu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj9lWPRdu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj9lWPRdu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj9lWPRdu .mbr-section-title {
  color: #00246f;
}
.cid-uPj9lWPRdu .mbr-text,
.cid-uPj9lWPRdu .mbr-section-btn {
  text-align: left;
}
.cid-uPj9lWPRdu .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj9lWPRdu .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj9lX6YiF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj9lX6YiF .container {
    max-width: 1400px;
  }
}
.cid-uPj9lX6YiF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj9lX6YiF .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj9lX6YiF .row {
  justify-content: center;
}
.cid-uPj9lX6YiF .mbr-section-title {
  color: #00246f;
}
.cid-uPj9lXiYm9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj9lXiYm9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj9lXiYm9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj9lXiYm9 .item {
  padding-bottom: 2rem;
}
.cid-uPj9lXiYm9 .item-wrapper {
  position: relative;
}
.cid-uPj9lXiYm9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj9lXiYm9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj9lXiYm9 .carousel-control,
.cid-uPj9lXiYm9 .close {
  background: #1b1b1b;
}
.cid-uPj9lXiYm9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj9lXiYm9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj9lXiYm9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj9lXiYm9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj9lXiYm9 .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-uPj9lXiYm9 .close::before {
  content: '\e91a';
}
.cid-uPj9lXiYm9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj9lXiYm9 .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-uPj9lXiYm9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj9lXiYm9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj9lXiYm9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj9lXiYm9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj9lXiYm9 .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-uPj9lXiYm9 .carousel-indicators li.active,
.cid-uPj9lXiYm9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj9lXiYm9 .carousel-indicators li::after,
.cid-uPj9lXiYm9 .carousel-indicators li::before {
  content: none;
}
.cid-uPj9lXiYm9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj9lXiYm9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj9lXiYm9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj9lXiYm9 .carousel-indicators {
    display: none;
  }
}
.cid-uPj9lXiYm9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj9lXiYm9 .carousel-inner > .active {
  display: block;
}
.cid-uPj9lXiYm9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj9lXiYm9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj9lXiYm9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj9lXiYm9 .carousel-control,
  .cid-uPj9lXiYm9 .carousel-indicators,
  .cid-uPj9lXiYm9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj9lXiYm9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj9lXiYm9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj9lXiYm9 .carousel-indicators .active,
.cid-uPj9lXiYm9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj9lXiYm9 .carousel-indicators .active {
  background: #fff;
}
.cid-uPj9lXiYm9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj9lXiYm9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj9lXiYm9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj9lXiYm9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj9lXiYm9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj9lXiYm9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj9lXiYm9 .carousel {
  width: 100%;
}
.cid-uPj9lXiYm9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj9lXiYm9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj9lXiYm9 .modal.fade .modal-dialog,
.cid-uPj9lXiYm9 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj9lXiYm9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj9lXiYm9 H6 {
  text-align: center;
}
.cid-uPj9lXXGnp {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj9lY5rNP {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj9lY5rNP .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj9lY5rNP .container {
    max-width: 1400px;
  }
}
.cid-uPj9lY5rNP .card {
  margin: auto;
}
.cid-uPj9lY5rNP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj9lY5rNP .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj9lY5rNP .row {
  justify-content: center;
}
.cid-uPj9lY5rNP H3 {
  color: #ffffff;
}
.cid-uPj9lY5rNP .card-title,
.cid-uPj9lY5rNP .card-box {
  color: #ffffff;
}
.cid-uPj9lYkSBB {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj9lYkSBB .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj9lYkSBB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj9lYkSBB .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj9lYkSBB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj9lYkSBB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj9lYkSBB .mbr-section-title {
  color: #00246f;
}
.cid-uPj9lYwlQT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj9lYwlQT .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj9lYwlQT form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj9lYwlQT form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj9lYwlQT form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj9lYwlQT .mbr-section-title {
  color: #fafafa;
}
.cid-uPj9lYwlQT .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj9lYIfR8 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj9lYIfR8 .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj9lYQijj {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj9lYQijj .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj9lYQijj .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj9lYQijj .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj9lYQijj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj9lYQijj .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj9lYQijj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj9lYQijj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj9lYQijj .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj9lYQijj .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj9lYQijj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj9lYQijj .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj9EwEy3q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj9EwEy3q nav.navbar {
  position: fixed;
}
.cid-uPj9EwEy3q .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-uPj9EwEy3q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj9EwEy3q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj9EwEy3q .dropdown-item:hover,
.cid-uPj9EwEy3q .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj9EwEy3q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj9EwEy3q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj9EwEy3q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj9EwEy3q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj9EwEy3q .nav-link {
  position: relative;
}
.cid-uPj9EwEy3q .container {
  display: flex;
  margin: auto;
}
.cid-uPj9EwEy3q .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj9EwEy3q .dropdown-menu,
.cid-uPj9EwEy3q .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj9EwEy3q .nav-item:focus,
.cid-uPj9EwEy3q .nav-link:focus {
  outline: none;
}
.cid-uPj9EwEy3q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj9EwEy3q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj9EwEy3q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj9EwEy3q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj9EwEy3q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj9EwEy3q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj9EwEy3q .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj9EwEy3q .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj9EwEy3q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj9EwEy3q .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj9EwEy3q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj9EwEy3q .navbar.collapsed {
  justify-content: center;
}
.cid-uPj9EwEy3q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj9EwEy3q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj9EwEy3q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj9EwEy3q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj9EwEy3q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj9EwEy3q .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-uPj9EwEy3q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj9EwEy3q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj9EwEy3q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj9EwEy3q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj9EwEy3q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj9EwEy3q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj9EwEy3q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj9EwEy3q .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-uPj9EwEy3q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj9EwEy3q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj9EwEy3q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj9EwEy3q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj9EwEy3q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj9EwEy3q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj9EwEy3q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj9EwEy3q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj9EwEy3q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj9EwEy3q .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-uPj9EwEy3q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj9EwEy3q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj9EwEy3q .dropdown-item.active,
.cid-uPj9EwEy3q .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj9EwEy3q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj9EwEy3q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj9EwEy3q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj9EwEy3q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj9EwEy3q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj9EwEy3q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj9EwEy3q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj9EwEy3q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj9EwEy3q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj9EwEy3q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj9EwEy3q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj9EwEy3q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj9EwEy3q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj9EwEy3q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj9EwEy3q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj9EwEy3q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj9EwEy3q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj9EwEy3q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj9EwEy3q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj9EwEy3q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj9EwEy3q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj9EwEy3q .navbar {
    height: 70px;
  }
  .cid-uPj9EwEy3q .navbar.opened {
    height: auto;
  }
  .cid-uPj9EwEy3q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj9EwSAW0 {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj9EwSAW0 .row {
  flex-direction: row-reverse;
}
.cid-uPj9EwSAW0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj9EwSAW0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj9EwSAW0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj9EwSAW0 .mbr-section-title {
  color: #ffffff;
}
.cid-uPj9EwSAW0 .mbr-text,
.cid-uPj9EwSAW0 .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj9Ex1sqL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj9Ex1sqL .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj9Ex1sqL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj9Ex1sqL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj9Ex1sqL .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj9Ex1sqL .card-title {
  color: #00246f;
}
.cid-uPj9Ex9HUJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9Ex9HUJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9Ex9HUJ .row {
  flex-direction: row-reverse;
}
.cid-uPj9Ex9HUJ img {
  width: 100%;
}
.cid-uPj9Ex9HUJ .mbr-description {
  color: #00246f;
}
.cid-uPj9Exg3oL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj9Exg3oL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9Exg3oL .row {
  flex-direction: row-reverse;
}
.cid-uPj9Exg3oL img {
  width: 100%;
}
.cid-uPj9Exg3oL .mbr-description {
  color: #00246f;
}
.cid-uPj9ExnfPD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9ExnfPD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9ExnfPD .row {
  flex-direction: row-reverse;
}
.cid-uPj9ExnfPD img {
  width: 100%;
}
.cid-uPj9ExnfPD .mbr-description {
  color: #00246f;
}
.cid-uPj9Exu88C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj9Exu88C .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9Exu88C .row {
  flex-direction: row-reverse;
}
.cid-uPj9Exu88C img {
  width: 100%;
}
.cid-uPj9Exu88C .mbr-description {
  color: #00246f;
}
.cid-uPj9ExDO4E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9ExDO4E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9ExDO4E .row {
  flex-direction: row-reverse;
}
.cid-uPj9ExDO4E img {
  width: 100%;
}
.cid-uPj9ExDO4E .mbr-description {
  color: #00246f;
}
.cid-uPj9ExK1Ch {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj9ExK1Ch img,
.cid-uPj9ExK1Ch .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj9ExK1Ch .item:focus,
.cid-uPj9ExK1Ch span:focus {
  outline: none;
}
.cid-uPj9ExK1Ch .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj9ExK1Ch .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj9ExK1Ch .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj9ExK1Ch .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj9ExK1Ch .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj9ExK1Ch .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj9ExK1Ch .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj9ExK1Ch .mbr-section-title {
  color: #00246f;
}
.cid-uPj9ExK1Ch .mbr-text,
.cid-uPj9ExK1Ch .mbr-section-btn {
  text-align: left;
}
.cid-uPj9ExK1Ch .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj9ExK1Ch .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj9ExYBKO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj9ExYBKO .container {
    max-width: 1400px;
  }
}
.cid-uPj9ExYBKO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj9ExYBKO .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj9ExYBKO .row {
  justify-content: center;
}
.cid-uPj9ExYBKO .mbr-section-title {
  color: #00246f;
}
.cid-uPj9EyajOq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj9EyajOq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj9EyajOq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj9EyajOq .item {
  padding-bottom: 2rem;
}
.cid-uPj9EyajOq .item-wrapper {
  position: relative;
}
.cid-uPj9EyajOq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj9EyajOq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj9EyajOq .carousel-control,
.cid-uPj9EyajOq .close {
  background: #1b1b1b;
}
.cid-uPj9EyajOq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj9EyajOq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj9EyajOq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj9EyajOq .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj9EyajOq .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-uPj9EyajOq .close::before {
  content: '\e91a';
}
.cid-uPj9EyajOq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj9EyajOq .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-uPj9EyajOq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj9EyajOq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj9EyajOq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj9EyajOq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj9EyajOq .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-uPj9EyajOq .carousel-indicators li.active,
.cid-uPj9EyajOq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj9EyajOq .carousel-indicators li::after,
.cid-uPj9EyajOq .carousel-indicators li::before {
  content: none;
}
.cid-uPj9EyajOq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj9EyajOq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj9EyajOq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj9EyajOq .carousel-indicators {
    display: none;
  }
}
.cid-uPj9EyajOq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj9EyajOq .carousel-inner > .active {
  display: block;
}
.cid-uPj9EyajOq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj9EyajOq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj9EyajOq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj9EyajOq .carousel-control,
  .cid-uPj9EyajOq .carousel-indicators,
  .cid-uPj9EyajOq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj9EyajOq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj9EyajOq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj9EyajOq .carousel-indicators .active,
.cid-uPj9EyajOq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj9EyajOq .carousel-indicators .active {
  background: #fff;
}
.cid-uPj9EyajOq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj9EyajOq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj9EyajOq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj9EyajOq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj9EyajOq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj9EyajOq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj9EyajOq .carousel {
  width: 100%;
}
.cid-uPj9EyajOq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj9EyajOq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj9EyajOq .modal.fade .modal-dialog,
.cid-uPj9EyajOq .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj9EyajOq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj9EyajOq H6 {
  text-align: center;
}
.cid-uPj9EyPaCr {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj9EyW2RT {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj9EyW2RT .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj9EyW2RT .container {
    max-width: 1400px;
  }
}
.cid-uPj9EyW2RT .card {
  margin: auto;
}
.cid-uPj9EyW2RT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj9EyW2RT .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj9EyW2RT .row {
  justify-content: center;
}
.cid-uPj9EyW2RT H3 {
  color: #ffffff;
}
.cid-uPj9EyW2RT .card-title,
.cid-uPj9EyW2RT .card-box {
  color: #ffffff;
}
.cid-uPj9Ezcues {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj9Ezcues .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj9Ezcues .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj9Ezcues .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj9Ezcues .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj9Ezcues .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj9Ezcues .mbr-section-title {
  color: #00246f;
}
.cid-uPj9EzqQkC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj9EzqQkC .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj9EzqQkC form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj9EzqQkC form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj9EzqQkC form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj9EzqQkC .mbr-section-title {
  color: #fafafa;
}
.cid-uPj9EzqQkC .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj9EzB3to {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj9EzB3to .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj9EzKJ3r {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj9EzKJ3r .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj9EzKJ3r .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj9EzKJ3r .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj9EzKJ3r .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj9EzKJ3r .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj9EzKJ3r .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj9EzKJ3r .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj9EzKJ3r .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj9EzKJ3r .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj9EzKJ3r .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj9EzKJ3r .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPj9UgW1Al {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPj9UgW1Al nav.navbar {
  position: fixed;
}
.cid-uPj9UgW1Al .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-uPj9UgW1Al .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPj9UgW1Al .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPj9UgW1Al .dropdown-item:hover,
.cid-uPj9UgW1Al .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPj9UgW1Al .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPj9UgW1Al .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPj9UgW1Al .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPj9UgW1Al .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPj9UgW1Al .nav-link {
  position: relative;
}
.cid-uPj9UgW1Al .container {
  display: flex;
  margin: auto;
}
.cid-uPj9UgW1Al .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPj9UgW1Al .dropdown-menu,
.cid-uPj9UgW1Al .navbar.opened {
  background: #ffffff !important;
}
.cid-uPj9UgW1Al .nav-item:focus,
.cid-uPj9UgW1Al .nav-link:focus {
  outline: none;
}
.cid-uPj9UgW1Al .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPj9UgW1Al .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPj9UgW1Al .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPj9UgW1Al .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPj9UgW1Al .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPj9UgW1Al .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPj9UgW1Al .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPj9UgW1Al .navbar.opened {
  transition: all 0.3s;
}
.cid-uPj9UgW1Al .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPj9UgW1Al .navbar .navbar-logo img {
  width: auto;
}
.cid-uPj9UgW1Al .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPj9UgW1Al .navbar.collapsed {
  justify-content: center;
}
.cid-uPj9UgW1Al .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPj9UgW1Al .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPj9UgW1Al .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPj9UgW1Al .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPj9UgW1Al .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPj9UgW1Al .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-uPj9UgW1Al .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPj9UgW1Al .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPj9UgW1Al .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPj9UgW1Al .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPj9UgW1Al .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPj9UgW1Al .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPj9UgW1Al .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPj9UgW1Al .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-uPj9UgW1Al .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPj9UgW1Al .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPj9UgW1Al .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPj9UgW1Al .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPj9UgW1Al .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPj9UgW1Al .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPj9UgW1Al .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPj9UgW1Al .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPj9UgW1Al .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPj9UgW1Al .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-uPj9UgW1Al .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPj9UgW1Al .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPj9UgW1Al .dropdown-item.active,
.cid-uPj9UgW1Al .dropdown-item:active {
  background-color: transparent;
}
.cid-uPj9UgW1Al .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPj9UgW1Al .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPj9UgW1Al .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPj9UgW1Al .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPj9UgW1Al .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPj9UgW1Al .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPj9UgW1Al ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPj9UgW1Al .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPj9UgW1Al button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPj9UgW1Al button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPj9UgW1Al button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPj9UgW1Al button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj9UgW1Al button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPj9UgW1Al button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPj9UgW1Al nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj9UgW1Al nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPj9UgW1Al nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPj9UgW1Al nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPj9UgW1Al .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPj9UgW1Al a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPj9UgW1Al .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPj9UgW1Al .navbar {
    height: 70px;
  }
  .cid-uPj9UgW1Al .navbar.opened {
    height: auto;
  }
  .cid-uPj9UgW1Al .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPj9UhekBy {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPj9UhekBy .row {
  flex-direction: row-reverse;
}
.cid-uPj9UhekBy .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPj9UhekBy .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj9UhekBy .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPj9UhekBy .mbr-section-title {
  color: #ffffff;
}
.cid-uPj9UhekBy .mbr-text,
.cid-uPj9UhekBy .mbr-section-btn {
  color: #fafafa;
}
.cid-uPj9UhoBgt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPj9UhoBgt .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPj9UhoBgt .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPj9UhoBgt .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPj9UhoBgt .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPj9UhoBgt .card-title {
  color: #00246f;
}
.cid-uPj9UhwNLl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9UhwNLl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9UhwNLl .row {
  flex-direction: row-reverse;
}
.cid-uPj9UhwNLl img {
  width: 100%;
}
.cid-uPj9UhwNLl .mbr-description {
  color: #00246f;
}
.cid-uPj9UhEK0g {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj9UhEK0g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9UhEK0g .row {
  flex-direction: row-reverse;
}
.cid-uPj9UhEK0g img {
  width: 100%;
}
.cid-uPj9UhEK0g .mbr-description {
  color: #00246f;
}
.cid-uPj9UhLdc8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9UhLdc8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9UhLdc8 .row {
  flex-direction: row-reverse;
}
.cid-uPj9UhLdc8 img {
  width: 100%;
}
.cid-uPj9UhLdc8 .mbr-description {
  color: #00246f;
}
.cid-uPj9UhSPjo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPj9UhSPjo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9UhSPjo .row {
  flex-direction: row-reverse;
}
.cid-uPj9UhSPjo img {
  width: 100%;
}
.cid-uPj9UhSPjo .mbr-description {
  color: #00246f;
}
.cid-uPj9UhZ7Ub {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPj9UhZ7Ub .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPj9UhZ7Ub .row {
  flex-direction: row-reverse;
}
.cid-uPj9UhZ7Ub img {
  width: 100%;
}
.cid-uPj9UhZ7Ub .mbr-description {
  color: #00246f;
}
.cid-uPj9Ui6d4O {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPj9Ui6d4O img,
.cid-uPj9Ui6d4O .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPj9Ui6d4O .item:focus,
.cid-uPj9Ui6d4O span:focus {
  outline: none;
}
.cid-uPj9Ui6d4O .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPj9Ui6d4O .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPj9Ui6d4O .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPj9Ui6d4O .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPj9Ui6d4O .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPj9Ui6d4O .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPj9Ui6d4O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPj9Ui6d4O .mbr-section-title {
  color: #00246f;
}
.cid-uPj9Ui6d4O .mbr-text,
.cid-uPj9Ui6d4O .mbr-section-btn {
  text-align: left;
}
.cid-uPj9Ui6d4O .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPj9Ui6d4O .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPj9UilUMZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPj9UilUMZ .container {
    max-width: 1400px;
  }
}
.cid-uPj9UilUMZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPj9UilUMZ .card-wrapper {
  margin-top: 3rem;
}
.cid-uPj9UilUMZ .row {
  justify-content: center;
}
.cid-uPj9UilUMZ .mbr-section-title {
  color: #00246f;
}
.cid-uPj9Uiyr5E {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPj9Uiyr5E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPj9Uiyr5E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPj9Uiyr5E .item {
  padding-bottom: 2rem;
}
.cid-uPj9Uiyr5E .item-wrapper {
  position: relative;
}
.cid-uPj9Uiyr5E .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPj9Uiyr5E .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPj9Uiyr5E .carousel-control,
.cid-uPj9Uiyr5E .close {
  background: #1b1b1b;
}
.cid-uPj9Uiyr5E .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPj9Uiyr5E .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPj9Uiyr5E .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPj9Uiyr5E .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPj9Uiyr5E .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-uPj9Uiyr5E .close::before {
  content: '\e91a';
}
.cid-uPj9Uiyr5E .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPj9Uiyr5E .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-uPj9Uiyr5E .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj9Uiyr5E .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPj9Uiyr5E .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPj9Uiyr5E .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPj9Uiyr5E .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-uPj9Uiyr5E .carousel-indicators li.active,
.cid-uPj9Uiyr5E .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPj9Uiyr5E .carousel-indicators li::after,
.cid-uPj9Uiyr5E .carousel-indicators li::before {
  content: none;
}
.cid-uPj9Uiyr5E .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPj9Uiyr5E .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPj9Uiyr5E .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPj9Uiyr5E .carousel-indicators {
    display: none;
  }
}
.cid-uPj9Uiyr5E .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPj9Uiyr5E .carousel-inner > .active {
  display: block;
}
.cid-uPj9Uiyr5E .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPj9Uiyr5E .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPj9Uiyr5E .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPj9Uiyr5E .carousel-control,
  .cid-uPj9Uiyr5E .carousel-indicators,
  .cid-uPj9Uiyr5E .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPj9Uiyr5E .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPj9Uiyr5E .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPj9Uiyr5E .carousel-indicators .active,
.cid-uPj9Uiyr5E .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPj9Uiyr5E .carousel-indicators .active {
  background: #fff;
}
.cid-uPj9Uiyr5E .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPj9Uiyr5E .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPj9Uiyr5E .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPj9Uiyr5E .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPj9Uiyr5E .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPj9Uiyr5E .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPj9Uiyr5E .carousel {
  width: 100%;
}
.cid-uPj9Uiyr5E .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPj9Uiyr5E .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPj9Uiyr5E .modal.fade .modal-dialog,
.cid-uPj9Uiyr5E .modal.in .modal-dialog {
  transform: none;
}
.cid-uPj9Uiyr5E .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPj9Uiyr5E H6 {
  text-align: center;
}
.cid-uPj9UjdS1g {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPj9UjllA8 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPj9UjllA8 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPj9UjllA8 .container {
    max-width: 1400px;
  }
}
.cid-uPj9UjllA8 .card {
  margin: auto;
}
.cid-uPj9UjllA8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPj9UjllA8 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPj9UjllA8 .row {
  justify-content: center;
}
.cid-uPj9UjllA8 H3 {
  color: #ffffff;
}
.cid-uPj9UjllA8 .card-title,
.cid-uPj9UjllA8 .card-box {
  color: #ffffff;
}
.cid-uPj9UjzuKa {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPj9UjzuKa .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPj9UjzuKa .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPj9UjzuKa .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPj9UjzuKa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPj9UjzuKa .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPj9UjzuKa .mbr-section-title {
  color: #00246f;
}
.cid-uPj9UjM5BH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPj9UjM5BH .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPj9UjM5BH form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPj9UjM5BH form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPj9UjM5BH form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPj9UjM5BH .mbr-section-title {
  color: #fafafa;
}
.cid-uPj9UjM5BH .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPj9UjW5lg {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPj9UjW5lg .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPj9Uk6GlH {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPj9Uk6GlH .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj9Uk6GlH .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPj9Uk6GlH .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPj9Uk6GlH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPj9Uk6GlH .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPj9Uk6GlH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPj9Uk6GlH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPj9Uk6GlH .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPj9Uk6GlH .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPj9Uk6GlH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPj9Uk6GlH .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPjazLPA0L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPjazLPA0L nav.navbar {
  position: fixed;
}
.cid-uPjazLPA0L .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-uPjazLPA0L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPjazLPA0L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPjazLPA0L .dropdown-item:hover,
.cid-uPjazLPA0L .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uPjazLPA0L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPjazLPA0L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPjazLPA0L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPjazLPA0L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPjazLPA0L .nav-link {
  position: relative;
}
.cid-uPjazLPA0L .container {
  display: flex;
  margin: auto;
}
.cid-uPjazLPA0L .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPjazLPA0L .dropdown-menu,
.cid-uPjazLPA0L .navbar.opened {
  background: #ffffff !important;
}
.cid-uPjazLPA0L .nav-item:focus,
.cid-uPjazLPA0L .nav-link:focus {
  outline: none;
}
.cid-uPjazLPA0L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPjazLPA0L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPjazLPA0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPjazLPA0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPjazLPA0L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPjazLPA0L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPjazLPA0L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uPjazLPA0L .navbar.opened {
  transition: all 0.3s;
}
.cid-uPjazLPA0L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPjazLPA0L .navbar .navbar-logo img {
  width: auto;
}
.cid-uPjazLPA0L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPjazLPA0L .navbar.collapsed {
  justify-content: center;
}
.cid-uPjazLPA0L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPjazLPA0L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPjazLPA0L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uPjazLPA0L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPjazLPA0L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPjazLPA0L .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-uPjazLPA0L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPjazLPA0L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPjazLPA0L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPjazLPA0L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPjazLPA0L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPjazLPA0L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPjazLPA0L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPjazLPA0L .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-uPjazLPA0L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPjazLPA0L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPjazLPA0L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPjazLPA0L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPjazLPA0L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPjazLPA0L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPjazLPA0L .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPjazLPA0L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPjazLPA0L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPjazLPA0L .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-uPjazLPA0L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPjazLPA0L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPjazLPA0L .dropdown-item.active,
.cid-uPjazLPA0L .dropdown-item:active {
  background-color: transparent;
}
.cid-uPjazLPA0L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPjazLPA0L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPjazLPA0L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPjazLPA0L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPjazLPA0L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPjazLPA0L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPjazLPA0L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPjazLPA0L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPjazLPA0L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPjazLPA0L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uPjazLPA0L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPjazLPA0L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPjazLPA0L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPjazLPA0L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPjazLPA0L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPjazLPA0L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPjazLPA0L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPjazLPA0L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPjazLPA0L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPjazLPA0L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPjazLPA0L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPjazLPA0L .navbar {
    height: 70px;
  }
  .cid-uPjazLPA0L .navbar.opened {
    height: auto;
  }
  .cid-uPjazLPA0L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPjazM49Hv {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uPjazM49Hv .row {
  flex-direction: row-reverse;
}
.cid-uPjazM49Hv .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPjazM49Hv .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPjazM49Hv .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPjazM49Hv .mbr-section-title {
  color: #ffffff;
}
.cid-uPjazM49Hv .mbr-text,
.cid-uPjazM49Hv .mbr-section-btn {
  color: #fafafa;
}
.cid-uPjazMdlVA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uPjazMdlVA .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPjazMdlVA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPjazMdlVA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPjazMdlVA .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPjazMdlVA .card-title {
  color: #00246f;
}
.cid-uPjazMlK1s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPjazMlK1s .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPjazMlK1s .row {
  flex-direction: row-reverse;
}
.cid-uPjazMlK1s img {
  width: 100%;
}
.cid-uPjazMlK1s .mbr-description {
  color: #00246f;
}
.cid-uPjazMspbt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPjazMspbt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPjazMspbt .row {
  flex-direction: row-reverse;
}
.cid-uPjazMspbt img {
  width: 100%;
}
.cid-uPjazMspbt .mbr-description {
  color: #00246f;
}
.cid-uPjazMAuL7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPjazMAuL7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPjazMAuL7 .row {
  flex-direction: row-reverse;
}
.cid-uPjazMAuL7 img {
  width: 100%;
}
.cid-uPjazMAuL7 .mbr-description {
  color: #00246f;
}
.cid-uPjazMH5Jr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uPjazMH5Jr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPjazMH5Jr .row {
  flex-direction: row-reverse;
}
.cid-uPjazMH5Jr img {
  width: 100%;
}
.cid-uPjazMH5Jr .mbr-description {
  color: #00246f;
}
.cid-uPjazMOXHR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uPjazMOXHR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPjazMOXHR .row {
  flex-direction: row-reverse;
}
.cid-uPjazMOXHR img {
  width: 100%;
}
.cid-uPjazMOXHR .mbr-description {
  color: #00246f;
}
.cid-uPjazMWKep {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uPjazMWKep img,
.cid-uPjazMWKep .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPjazMWKep .item:focus,
.cid-uPjazMWKep span:focus {
  outline: none;
}
.cid-uPjazMWKep .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPjazMWKep .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPjazMWKep .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPjazMWKep .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPjazMWKep .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPjazMWKep .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPjazMWKep .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPjazMWKep .mbr-section-title {
  color: #00246f;
}
.cid-uPjazMWKep .mbr-text,
.cid-uPjazMWKep .mbr-section-btn {
  text-align: left;
}
.cid-uPjazMWKep .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uPjazMWKep .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPjazNaZ0m {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uPjazNaZ0m .container {
    max-width: 1400px;
  }
}
.cid-uPjazNaZ0m .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uPjazNaZ0m .card-wrapper {
  margin-top: 3rem;
}
.cid-uPjazNaZ0m .row {
  justify-content: center;
}
.cid-uPjazNaZ0m .mbr-section-title {
  color: #00246f;
}
.cid-uPjazNoi6c {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPjazNoi6c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPjazNoi6c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPjazNoi6c .item {
  padding-bottom: 2rem;
}
.cid-uPjazNoi6c .item-wrapper {
  position: relative;
}
.cid-uPjazNoi6c .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPjazNoi6c .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPjazNoi6c .carousel-control,
.cid-uPjazNoi6c .close {
  background: #1b1b1b;
}
.cid-uPjazNoi6c .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPjazNoi6c .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPjazNoi6c .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPjazNoi6c .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPjazNoi6c .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-uPjazNoi6c .close::before {
  content: '\e91a';
}
.cid-uPjazNoi6c .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPjazNoi6c .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-uPjazNoi6c .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPjazNoi6c .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPjazNoi6c .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPjazNoi6c .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPjazNoi6c .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-uPjazNoi6c .carousel-indicators li.active,
.cid-uPjazNoi6c .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPjazNoi6c .carousel-indicators li::after,
.cid-uPjazNoi6c .carousel-indicators li::before {
  content: none;
}
.cid-uPjazNoi6c .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPjazNoi6c .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPjazNoi6c .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPjazNoi6c .carousel-indicators {
    display: none;
  }
}
.cid-uPjazNoi6c .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPjazNoi6c .carousel-inner > .active {
  display: block;
}
.cid-uPjazNoi6c .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPjazNoi6c .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPjazNoi6c .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPjazNoi6c .carousel-control,
  .cid-uPjazNoi6c .carousel-indicators,
  .cid-uPjazNoi6c .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPjazNoi6c .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPjazNoi6c .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPjazNoi6c .carousel-indicators .active,
.cid-uPjazNoi6c .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPjazNoi6c .carousel-indicators .active {
  background: #fff;
}
.cid-uPjazNoi6c .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPjazNoi6c .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPjazNoi6c .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPjazNoi6c .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPjazNoi6c .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPjazNoi6c .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPjazNoi6c .carousel {
  width: 100%;
}
.cid-uPjazNoi6c .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPjazNoi6c .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPjazNoi6c .modal.fade .modal-dialog,
.cid-uPjazNoi6c .modal.in .modal-dialog {
  transform: none;
}
.cid-uPjazNoi6c .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPjazNoi6c H6 {
  text-align: center;
}
.cid-uPjazO3ccT {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPjazOaLYs {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uPjazOaLYs .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPjazOaLYs .container {
    max-width: 1400px;
  }
}
.cid-uPjazOaLYs .card {
  margin: auto;
}
.cid-uPjazOaLYs .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uPjazOaLYs .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPjazOaLYs .row {
  justify-content: center;
}
.cid-uPjazOaLYs H3 {
  color: #ffffff;
}
.cid-uPjazOaLYs .card-title,
.cid-uPjazOaLYs .card-box {
  color: #ffffff;
}
.cid-uPjazOoh0K {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPjazOoh0K .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPjazOoh0K .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPjazOoh0K .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPjazOoh0K .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPjazOoh0K .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPjazOoh0K .mbr-section-title {
  color: #00246f;
}
.cid-uPjazOAn0c {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uPjazOAn0c .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uPjazOAn0c form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPjazOAn0c form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPjazOAn0c form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPjazOAn0c .mbr-section-title {
  color: #fafafa;
}
.cid-uPjazOAn0c .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uPjazOKcvV {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPjazOKcvV .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uPjazOTNHD {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uPjazOTNHD .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPjazOTNHD .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uPjazOTNHD .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uPjazOTNHD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uPjazOTNHD .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uPjazOTNHD .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uPjazOTNHD .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uPjazOTNHD .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uPjazOTNHD .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPjazOTNHD .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPjazOTNHD .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uRhVz2ZxV4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uRhVz2ZxV4 nav.navbar {
  position: fixed;
}
.cid-uRhVz2ZxV4 .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-uRhVz2ZxV4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uRhVz2ZxV4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uRhVz2ZxV4 .dropdown-item:hover,
.cid-uRhVz2ZxV4 .dropdown-item:focus {
  background: #00246f !important;
  color: white !important;
}
.cid-uRhVz2ZxV4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRhVz2ZxV4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRhVz2ZxV4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRhVz2ZxV4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRhVz2ZxV4 .nav-link {
  position: relative;
}
.cid-uRhVz2ZxV4 .container {
  display: flex;
  margin: auto;
}
.cid-uRhVz2ZxV4 .iconfont-wrapper {
  color: #00246f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRhVz2ZxV4 .dropdown-menu,
.cid-uRhVz2ZxV4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uRhVz2ZxV4 .nav-item:focus,
.cid-uRhVz2ZxV4 .nav-link:focus {
  outline: none;
}
.cid-uRhVz2ZxV4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRhVz2ZxV4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRhVz2ZxV4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRhVz2ZxV4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRhVz2ZxV4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRhVz2ZxV4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRhVz2ZxV4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uRhVz2ZxV4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uRhVz2ZxV4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRhVz2ZxV4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uRhVz2ZxV4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRhVz2ZxV4 .navbar.collapsed {
  justify-content: center;
}
.cid-uRhVz2ZxV4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRhVz2ZxV4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRhVz2ZxV4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uRhVz2ZxV4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRhVz2ZxV4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRhVz2ZxV4 .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-uRhVz2ZxV4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRhVz2ZxV4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRhVz2ZxV4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRhVz2ZxV4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRhVz2ZxV4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRhVz2ZxV4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRhVz2ZxV4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRhVz2ZxV4 .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-uRhVz2ZxV4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRhVz2ZxV4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRhVz2ZxV4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRhVz2ZxV4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRhVz2ZxV4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRhVz2ZxV4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRhVz2ZxV4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uRhVz2ZxV4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRhVz2ZxV4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uRhVz2ZxV4 .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-uRhVz2ZxV4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRhVz2ZxV4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRhVz2ZxV4 .dropdown-item.active,
.cid-uRhVz2ZxV4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uRhVz2ZxV4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRhVz2ZxV4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRhVz2ZxV4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRhVz2ZxV4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uRhVz2ZxV4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRhVz2ZxV4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRhVz2ZxV4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRhVz2ZxV4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uRhVz2ZxV4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRhVz2ZxV4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002d8b;
}
.cid-uRhVz2ZxV4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRhVz2ZxV4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRhVz2ZxV4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRhVz2ZxV4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRhVz2ZxV4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRhVz2ZxV4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRhVz2ZxV4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRhVz2ZxV4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRhVz2ZxV4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uRhVz2ZxV4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRhVz2ZxV4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRhVz2ZxV4 .navbar {
    height: 70px;
  }
  .cid-uRhVz2ZxV4 .navbar.opened {
    height: auto;
  }
  .cid-uRhVz2ZxV4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRhVz3bCsT {
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
.cid-uRhVz3bCsT .row {
  flex-direction: row-reverse;
}
.cid-uRhVz3bCsT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uRhVz3bCsT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uRhVz3bCsT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uRhVz3bCsT .mbr-section-title {
  color: #ffffff;
}
.cid-uRhVz3bCsT .mbr-text,
.cid-uRhVz3bCsT .mbr-section-btn {
  color: #fafafa;
}
.cid-uRhVz3iGnz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00246f;
}
.cid-uRhVz3iGnz .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uRhVz3iGnz .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uRhVz3iGnz .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRhVz3iGnz .card-wrapper {
    padding: 4rem;
  }
}
.cid-uRhVz3iGnz .card-title {
  color: #00246f;
}
.cid-uRhVz3qIJd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uRhVz3qIJd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uRhVz3qIJd .row {
  flex-direction: row-reverse;
}
.cid-uRhVz3qIJd img {
  width: 100%;
}
.cid-uRhVz3qIJd .mbr-description {
  color: #00246f;
}
.cid-uRhVz3wCqC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uRhVz3wCqC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uRhVz3wCqC .row {
  flex-direction: row-reverse;
}
.cid-uRhVz3wCqC img {
  width: 100%;
}
.cid-uRhVz3wCqC .mbr-description {
  color: #00246f;
}
.cid-uRhVz3C9vB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uRhVz3C9vB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uRhVz3C9vB .row {
  flex-direction: row-reverse;
}
.cid-uRhVz3C9vB img {
  width: 100%;
}
.cid-uRhVz3C9vB .mbr-description {
  color: #00246f;
}
.cid-uRhVz3InOp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uRhVz3InOp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uRhVz3InOp .row {
  flex-direction: row-reverse;
}
.cid-uRhVz3InOp img {
  width: 100%;
}
.cid-uRhVz3InOp .mbr-description {
  color: #00246f;
}
.cid-uRhVz3OWq2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/embalagem-para-pizza-em-sorocaba-dipape-fundo-1000x500.png");
}
@media (max-width: 991px) {
  .cid-uRhVz3OWq2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uRhVz3OWq2 .row {
  flex-direction: row-reverse;
}
.cid-uRhVz3OWq2 img {
  width: 100%;
}
.cid-uRhVz3OWq2 .mbr-description {
  color: #00246f;
}
.cid-uRhVz3UZQl {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fcfcfc;
}
.cid-uRhVz3UZQl img,
.cid-uRhVz3UZQl .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uRhVz3UZQl .item:focus,
.cid-uRhVz3UZQl span:focus {
  outline: none;
}
.cid-uRhVz3UZQl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uRhVz3UZQl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRhVz3UZQl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uRhVz3UZQl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRhVz3UZQl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uRhVz3UZQl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uRhVz3UZQl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRhVz3UZQl .mbr-section-title {
  color: #00246f;
}
.cid-uRhVz3UZQl .mbr-text,
.cid-uRhVz3UZQl .mbr-section-btn {
  text-align: left;
}
.cid-uRhVz3UZQl .item-title {
  text-align: left;
  color: #00246f;
}
.cid-uRhVz3UZQl .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uRhVz46Tvd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-uRhVz46Tvd .container {
    max-width: 1400px;
  }
}
.cid-uRhVz46Tvd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #32be36;
  margin-bottom: 2rem;
}
.cid-uRhVz46Tvd .card-wrapper {
  margin-top: 3rem;
}
.cid-uRhVz46Tvd .row {
  justify-content: center;
}
.cid-uRhVz46Tvd .mbr-section-title {
  color: #00246f;
}
.cid-uRhVz4nJBK {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uRhVz4nJBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRhVz4nJBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRhVz4nJBK .item {
  padding-bottom: 2rem;
}
.cid-uRhVz4nJBK .item-wrapper {
  position: relative;
}
.cid-uRhVz4nJBK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRhVz4nJBK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRhVz4nJBK .carousel-control,
.cid-uRhVz4nJBK .close {
  background: #1b1b1b;
}
.cid-uRhVz4nJBK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRhVz4nJBK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRhVz4nJBK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRhVz4nJBK .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRhVz4nJBK .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-uRhVz4nJBK .close::before {
  content: '\e91a';
}
.cid-uRhVz4nJBK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRhVz4nJBK .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-uRhVz4nJBK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRhVz4nJBK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRhVz4nJBK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRhVz4nJBK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRhVz4nJBK .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-uRhVz4nJBK .carousel-indicators li.active,
.cid-uRhVz4nJBK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRhVz4nJBK .carousel-indicators li::after,
.cid-uRhVz4nJBK .carousel-indicators li::before {
  content: none;
}
.cid-uRhVz4nJBK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRhVz4nJBK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRhVz4nJBK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRhVz4nJBK .carousel-indicators {
    display: none;
  }
}
.cid-uRhVz4nJBK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRhVz4nJBK .carousel-inner > .active {
  display: block;
}
.cid-uRhVz4nJBK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRhVz4nJBK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRhVz4nJBK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRhVz4nJBK .carousel-control,
  .cid-uRhVz4nJBK .carousel-indicators,
  .cid-uRhVz4nJBK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRhVz4nJBK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRhVz4nJBK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRhVz4nJBK .carousel-indicators .active,
.cid-uRhVz4nJBK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRhVz4nJBK .carousel-indicators .active {
  background: #fff;
}
.cid-uRhVz4nJBK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRhVz4nJBK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRhVz4nJBK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRhVz4nJBK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRhVz4nJBK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRhVz4nJBK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRhVz4nJBK .carousel {
  width: 100%;
}
.cid-uRhVz4nJBK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRhVz4nJBK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRhVz4nJBK .modal.fade .modal-dialog,
.cid-uRhVz4nJBK .modal.in .modal-dialog {
  transform: none;
}
.cid-uRhVz4nJBK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRhVz4nJBK H6 {
  text-align: center;
}
.cid-uRhVz4Zmgz {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uRhVz55rWs {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/caixa-para-pizza-embalagem-sorocaba-1000x500.png");
}
.cid-uRhVz55rWs .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uRhVz55rWs .container {
    max-width: 1400px;
  }
}
.cid-uRhVz55rWs .card {
  margin: auto;
}
.cid-uRhVz55rWs .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f2254;
  margin-bottom: 2rem;
}
.cid-uRhVz55rWs .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uRhVz55rWs .row {
  justify-content: center;
}
.cid-uRhVz55rWs H3 {
  color: #ffffff;
}
.cid-uRhVz55rWs .card-title,
.cid-uRhVz55rWs .card-box {
  color: #ffffff;
}
.cid-uRhVz5ifu2 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uRhVz5ifu2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uRhVz5ifu2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uRhVz5ifu2 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uRhVz5ifu2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRhVz5ifu2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRhVz5ifu2 .mbr-section-title {
  color: #00246f;
}
.cid-uRhVz5s0NN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #002166;
}
.cid-uRhVz5s0NN .mbr-overlay {
  background-color: #00246f;
  opacity: 1;
}
.cid-uRhVz5s0NN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uRhVz5s0NN form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uRhVz5s0NN form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uRhVz5s0NN .mbr-section-title {
  color: #fafafa;
}
.cid-uRhVz5s0NN .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uRhVz5Aszk {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRhVz5Aszk .mbr-text {
  text-align: left;
  color: #6a799a;
}
.cid-uRhVz5HJr5 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cid-uRhVz5HJr5 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uRhVz5HJr5 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uRhVz5HJr5 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uRhVz5HJr5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uRhVz5HJr5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uRhVz5HJr5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uRhVz5HJr5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uRhVz5HJr5 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uRhVz5HJr5 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uRhVz5HJr5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uRhVz5HJr5 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
