:root {
  --primary-color: #223776;
  --secondary-color: #153553;

  --pink-color: #e9127a;
  --orange-color: #e66026;
  --blue-color: #1d1363;
  --green-color: #0c9e13;

  --black-color: #000000;
  --dark-color: #2f2f2f;
  --gray-color: #f8f8f8;
  --light-color: #e6e4d8;
  --white-color: #ffffff;
}

/* @font-face {
  font-family: "Skyna Light";
  src: url("../fonts/Skyna-Light.otf") format("woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Skyna Medium";
  src: url("../fonts/Skyna-Medium.otf") format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Skyna Bold";
  src: url("../fonts/Skyna-Bold.otf") format("woff2");
  font-weight: 700;
} */

::placeholder {
  /* font-family: "Skyna Medium", sans-serif; */
  font-size: 16px;
  font-weight: 500;
  color: #848484;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Mona Sans", sans-serif;
  font-optical-sizing: auto;
  color: var(--dark-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

p.lead {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 400;
  margin-top: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700 !important;
}

a {
  transition: all 0.2s !important;
  font-weight: 500 !important;
  text-decoration: none;
  color: currentColor;
}

b {
  font-weight: 800;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

main {
  margin-top: 80px;
}

label {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}
input,
select,
textarea {
  padding: 8px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  border: solid 1px #eaeaea;
  border-radius: 8px;
}
textarea {
  max-height: 120px;
}
input[type="submit"] {
  display: flex;
  max-width: fit-content;
  padding: 16px 48px;
  border: 0;
  transition: all 0.3s;
  background-image: linear-gradient(to right, var(--primary-color), #1c77ee);
  margin: 0;
}
input.hidden {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  text-align: center;
}

.subtitle {
  width: fit-content;
  display: block;
  padding: 4px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: inherit;
  font-weight: 500 !important;
  color: #1c77ee;
  background-color: rgba(28, 119, 238, 0.1);
  border: solid 1px #1c77ee1c;
}
.subtitle.blue {
  background-color: rgba(29, 19, 99, 0.08);
  color: var(--blue-color);
}
.subtitle.green {
  background-color: rgba(12, 158, 19, 0.08);
  color: #1f743b;
}
.subtitle.pink {
  background-color: rgba(233, 18, 122, 0.08);
  color: var(--pink-color);
}

.btn-primary.small {
  width: 100%;
  max-width: 100%;
  padding: 8px 24px;
  justify-content: center;
  margin-top: 20px;
}
.btn-primary {
  display: flex;
  max-width: fit-content;
  margin-top: 56px;
  padding: 16px 48px;
  background-color: transparent;
  border: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::after {
  background-image: linear-gradient(to right, var(--primary-color), #1c77ee);
  content: "";
  height: 100%;
  width: 190%;
  top: 0;
  left: 0;
  position: absolute;
  transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.btn-primary:hover::after {
  left: -180px;
  transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
  color: #fff;
  box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-primary.btn-white {
  color: var(--primary-color);
}
.btn-primary.btn-white::after {
  background-image: linear-gradient(to right, #fff, #83b2f0);
}
.section-default {
  position: relative;
  padding: 88px 0;
}

/* Background color*/
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-light {
  background-color: var(--light-color) !important;
}
.bg-gray {
  background-color: var(--gray-color) !important;
}
.bg-gradient-primary {
  background-image: linear-gradient(to right, var(--primary-color), #1c77ee);
  color: white;
}
.bg-dark {
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

/* Border bottom colors*/
.border-b-pink {
  border-bottom: solid 3px var(--pink-color);
}
.border-b-orange {
  border-bottom: solid 3px var(--orange-color);
}
.border-b-black {
  border-bottom: solid 3px var(--black-color);
}
.border-b-blue {
  border-bottom: solid 3px var(--blue-color);
}

/* Text colors */
.text-dark {
  color: var(--dark-color);
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-light {
  color: var(--light-color) !important;
}

/* Border Radius */
.br-b-r {
  border-bottom-right-radius: 64px !important;
}
.br-b-l {
  border-bottom-left-radius: 64px !important;
}
.br-t-l {
  border-top-left-radius: 64px !important;
}
.br-t-r {
  border-top-right-radius: 64px !important;
}

.menuMobile {
  display: none;
}

/* Topbar Menu */
.topbar-menu .container {
  padding-left: 140px;
}
.topbar-menu #menu-menu-do-topo .menu-item a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  margin: 0 16px;
}
.topbar-menu #menu-menu-do-topo .menu-item:hover {
  opacity: 0.8;
}

/* Header Menu */
header.header-menu .logo-header-menu {
  margin-top: -62px;
  min-width: 105px;
}
header.header-menu .nav {
  padding-left: 24px;
}
header.header-menu .nav .nav-item {
  margin: 0 32px 0 0;
}
header.header-menu .nav .menu-item a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  padding: 8px 0 20px;
  border-bottom: solid 3px transparent;
  transition: all 0.2s !important;
  margin: 0 16px;
}
header.header-menu .nav .menu-item a:hover {
  border-bottom: solid 3px currentColor;
  opacity: 0.85;
}
header.header-menu .nav .menu-item:nth-child(1) a:hover {
  color: var(--pink-color);
}
header.header-menu .nav .menu-item:nth-child(2) a:hover {
  color: var(--orange-color);
}
header.header-menu .nav .menu-item:nth-child(3) a:hover {
  color: var(--green-color);
}
header.header-menu .nav .menu-item:nth-child(4) a:hover {
  color: var(--blue-color);
}

/* Header Hero - owl carousel*/
.header-hero .owl-header-hero {
  max-width: calc(90vw - 120px);
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.15));
  margin: 0 auto 80px;
}
.header-hero .owl-header-hero .owl-item .item {
  gap: 16px;
}
.header-hero .owl-header-hero .owl-item .item h1 {
  font-size: 3.4rem;
  max-width: 70%;
}
.header-hero .owl-header-hero .owl-item .item-left,
.header-hero .owl-header-hero .owl-item .item-right {
  min-height: 640px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  border-radius: 0.5rem;
}
.header-hero .owl-header-hero .owl-item .item-left {
  width: 30%;
  background-color: var(--secondary-color);
}
.header-hero .owl-header-hero .owl-item .item-right {
  width: 70%;
  background-color: var(--primary-color);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 5rem;
  position: relative;
}
.header-hero .owl-header-hero .owl-item .item-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-image: linear-gradient(to top, #111, transparent) !important;
}

.header-hero .owl-header-hero .owl-item .item-right * {
  z-index: 2;
  color: white;
}
.header-hero .owl-header-hero .owl-item .item-right p {
  max-width: 60%;
}

/* Sessão de destaques */
section.section-featured .item {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 3rem;
  border-radius: 16px;
  overflow: hidden;
  border-bottom-right-radius: 64px;
  color: white;
}
section.section-featured .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
  z-index: 1;
}
section.section-featured .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #111, transparent) !important;
  z-index: 5;
}
section.section-featured:nth-child(odd) .item {
  border-top-right-radius: 64px;
  border-bottom-right-radius: 0.5rem;
}
section.section-featured .item h3,
section.section-featured .item p,
section.section-featured .item a {
  z-index: 6;
}
section.section-featured .item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
section.section-featured .item a::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transition: all 0.4s;
}
section.section-featured .item a:hover::after {
  transform: translateX(6px);
}

/* Sessão de descontos */
section.section-discounts .discount .picture {
  min-height: 260px;
  height: 260px;
  max-height: 260px;
  object-fit: cover;
}
section.section-discounts .discount .price {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: bold;
}
section.section-discounts .discount small {
  font-size: 0.7rem;
}

/* Sessão de lojas */
section.section-stores a {
  transition: all 0.2s;
  border: solid 1px #f1f1f1;
}
section.section-stores a:hover {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
  z-index: 99;
}

/* Sessão de diferenciais */
section.section-differentials .diff-box {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}
section.section-differentials .diff-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #111, transparent) !important;
  z-index: 2;
}
section.section-differentials .diff-box * {
  z-index: 10;
}

/* Sessão referencia - Sobre */

/* Sessão galeria de fotos */
section.section-gallery .owl-item a,
section.section-gallery .owl-item .thumb {
  width: 100%;
  height: 450px;
  cursor: pointer;
}
section.section-gallery .owl-item .thumb {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Sessão depoimentos */
section.section-testimonials {
  position: relative;
}
section.section-testimonials .quote {
  font-size: 20em;
  line-height: 25rem;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.2;
  position: absolute;
  pointer-events: none;
}
section.section-testimonials .quote-before {
  left: 40%;
  top: 0;
}
section.section-testimonials .quote-after {
  right: 10%;
  bottom: 0;
  line-height: 10rem;
}
section.section-testimonials .owl-testimonials img {
  max-width: 241px;
}

/* Rodapé do site*/
footer.footer {
  font-size: 1rem;
}
footer.footer h5 {
  margin-bottom: 16px;
}
footer.footer p {
  opacity: 0.9;
}
footer.footer span {
  font-weight: 600;
}
footer.footer a {
  color: white;
  font-size: 1rem;
  text-decoration: underline;
}
footer.footer a:hover {
  color: #83b2f0;
}
address {
  max-width: 80%;
}
.footer.footer .border-bottom {
  border-bottom: solid 1px #648dc33b !important;
}

/* Animação de flutuação */
.floating {
  animation: floatingImage 5s ease-in-out infinite;
}
@keyframes floatingImage {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Página Notícias*/
.featured-post {
  border-radius: 1rem;
  overflow: hidden;
  color: white;
  background-color: #333;
}
.featured-post-img {
  background-size: cover;
  background-position: center;
}
.featured-post,
.featured-post .col-md-6 {
  min-height: 520px;
}
.featured-post svg path,
.featured-post svg {
  fill: var(--light-color);
}
.posts-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.post-box {
  background-color: #f8f8f8;
  border: solid 1px #eaeaea;
  transition: all 0.4s;
}
.post-box-img {
  background-size: cover;
  height: 260px;
}
.post-box:hover h3 {
  color: var(--primary-color);
}
.post-box:hover {
  border-color: var(--primary-color);
}
.post-box .category-tag {
  color: var(--primary-color);
  padding: 4px 8px;
  font-size: 0.8rem;
}
.category-tag {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  border: solid 1px;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.4s;
}
.categories .category-tag {
  color: var(--dark-color);
  font-size: 0.8rem;
}
.categories .category-tag:hover {
  color: white;
  background-color: var(--primary-color);
}

/* Página FAQ*/
.faq-item {
  display: block;
  padding: 8px 0;
}
.faq-item summary {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  border-bottom: solid 1px #eaeaea;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

/* Ícone de Whatsapp flutuante*/
.whatsapp {
  width: 64px;
  height: 64px;
  position: fixed;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 1;
  box-shadow: 0 0 0 rgb(29 50 14 / 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
}
