@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #F7F7F2;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  body.pb-plus {
    padding-bottom: 100px;
  }
}
body h1, body h2, body h3, body h4 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}
body b, body strong {
  font-weight: 700;
}

.container {
  padding-left: 2.7vw;
  padding-right: 2.7vw;
}
@media (max-width: 991px) {
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
.container.big {
  padding-left: 2vw;
  padding-right: 2vw;
}
@media (max-width: 991px) {
  .container.big {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .container.big.mobile-subpages {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
.container.no-wd {
  position: relative;
}
.container.checkout {
  max-width: 870px;
  margin: auto;
  padding: 0;
}

a {
  color: #1a1a1a;
  font-size: 11.2px;
  text-decoration: unset;
}

.text-uppercase {
  text-transform: uppercase;
}

section.alerta-padrao {
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  text-align: center;
}
section.alerta-padrao .in {
  width: 350px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding-top: 22px;
  background: #F6F6F6;
  z-index: 30;
  text-align: center;
  box-shadow: 0 4px 33px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  overflow: hidden;
}
section.alerta-padrao .in p {
  margin-bottom: 15px;
  color: rgb(62, 62, 62);
  font-family: sans-serif;
  font-size: 11.26px;
  -webkit-font-smoothing: none;
  line-height: 100%;
  letter-spacing: 0;
  font-size: 12px;
}
section.alerta-padrao .in p.max {
  letter-spacing: 0.05em;
}
section.alerta-padrao .in button {
  width: 100%;
  min-height: 40px;
  text-align: center;
  font-family: sans-serif;
  font-size: 11.26px;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: none;
  background: transparent;
  transition: 0.2s;
  border: 0;
  outline: 0;
  display: block;
  color: rgb(62, 62, 62);
  border-top: 1px solid #e4e4e4;
  margin-top: 23px;
  cursor: pointer;
}
section.alerta-padrao .in button:hover {
  background: #fff;
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .hide-desktop {
    display: none;
  }
}
#overlay {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #f7f7f2;
}
#overlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
}
#overlay .cv-spinner img {
  width: 250px;
  margin-top: -120px;
}
#overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #1a1a1a solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
#overlay.is-hide {
  display: none;
}

#whatsapp {
  width: 60px;
  position: fixed;
  right: 30px;
  bottom: 10px;
  z-index: 9999;
  filter: contrast(0.9);
}
@media (max-width: 991px) {
  #whatsapp {
    width: 48px;
    right: 10px;
  }
}
#whatsapp img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.button-all-pages {
  max-height: 36px;
  padding: 0;
  line-height: 36px;
  font-size: 10.5px;
  background: #1a1a1a;
  color: white;
  display: block;
  border: 0;
  outline: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  margin-top: 40px;
  transition: 0.2s;
  cursor: pointer;
  padding: 0 15px;
  text-transform: uppercase;
}
.button-all-pages.center {
  text-align: center;
}
.button-all-pages.fleft {
  float: left;
}
.button-all-pages.fright {
  float: right;
}
.button-all-pages.ccenter {
  margin: 0 auto;
}
.button-all-pages.mt-5 {
  margin-top: 90px;
}
@media (max-width: 991px) {
  .button-all-pages {
    font-size: 12px;
  }
  .button-all-pages.hide-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .button-all-pages.hide-desktop {
    display: none;
  }
}
.button-all-pages:hover {
  opacity: 0.8;
}

.clear-both {
  clear: both;
  display: block;
  height: 1px;
}

/******
categorias-default-pages
*****/
@media (min-width: 992px) {
  section.categorias-default-pages {
    margin-top: -30px;
  }
}

section.categorias-default-pages .flex-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  section.categorias-default-pages .flex-group {
    flex-direction: column;
    gap: unset;
  }
}
section.categorias-default-pages .flex-group .item {
  flex: calc(25% - 20px);
}
@media (max-width: 991px) {
  section.categorias-default-pages .flex-group .item {
    flex: 100%;
  }
}

section.categorias-default-pages h2 {
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 35px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  section.categorias-default-pages h2 {
    margin-bottom: 30px;
    padding-bottom: 24px;
    padding-top: 30px;
    font-size: 20px;
    line-height: 140%;
  }
}

section.categorias-default-pages .card {
  width: 100%;
  height: 475px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  position: relative;
  margin: auto;
  padding: 31px;
  margin-bottom: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  section.categorias-default-pages .card {
    width: 100%;
    height: 195px;
    margin-bottom: 5px;
    border-radius: 5px;
  }
}
section.categorias-default-pages .card .escondido {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 90%;
  transition: 2s;
  z-index: 5;
}

@media (max-width: 991px) {
  section.categorias-default-pages .card .escondido {
    display: none;
  }
}
section.categorias-default-pages .card:hover:before {
  background: rgba(0, 0, 0, 0.6);
}

section.categorias-default-pages .card:hover .cover {
  transform: scale(1.2);
}

section.categorias-default-pages .card:hover .escondido {
  opacity: 1;
  visibility: visible;
}

section.categorias-default-pages .card:hover h3 {
  bottom: 220px;
}

@media (max-width: 991px) {
  section.categorias-default-pages .card:hover h3 {
    bottom: 50px;
  }
}
section.categorias-default-pages .card .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  z-index: -1;
  transition: 2.5s;
}

section.categorias-default-pages .card:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(349.61deg, rgba(0, 0, 0, 0.97) 7.73%, rgba(0, 0, 0, 0) 42.25%);
  opacity: 1;
  transition: 0.6s;
}

@media (max-width: 991px) {
  section.categorias-default-pages .card:before {
    background: linear-gradient(349.61deg, rgba(0, 0, 0, 0.97) 7.73%, rgba(0, 0, 0, 0) 53%);
  }
}
section.categorias-default-pages .card h3 {
  font-weight: 275;
  font-size: 45px;
  line-height: 68px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  margin-bottom: 0;
  bottom: 20px;
  position: absolute;
  transition: 1s;
}

@media (max-width: 991px) {
  section.categorias-default-pages .card h3 {
    bottom: 20px;
    font-size: 24px;
    line-height: 140%;
  }
}
section.categorias-default-pages .card p {
  color: white;
  position: relative;
  z-index: 5;
  line-height: 28px;
  margin-bottom: 15px;
}

section.categorias-default-pages .card span {
  text-align: center;
  position: relative;
  z-index: 5;
  color: white;
  margin: auto;
  display: block;
  font-size: 18px;
}

/***********
***********/
section.popup .outer {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 30;
}
section.popup .in {
  position: fixed;
  max-width: 305px;
  height: 480px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 35;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid white;
}
@media (max-width: 991px) {
  section.popup .in {
    height: 420px;
  }
}
section.popup .in:before {
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  position: absolute;
}
section.popup .in .exit {
  font-family: "Helvetica,Arial,sans-serif";
  font-size: 22px;
  line-height: 1em;
  position: absolute;
  top: -3px;
  right: -3px;
  width: 47px;
  height: 47px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 3;
}
section.popup .in .exit:hover {
  background-color: white;
  color: #1a1a1a;
}
section.popup .in img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media (max-width: 991px) {
  section.popup .in img {
    -o-object-position: right;
       object-position: right;
  }
}
section.popup .in h3 {
  font-size: 30px;
  line-height: 130%;
  color: white;
  font-weight: 400;
  margin-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
  z-index: 3;
}
@media (max-width: 991px) {
  section.popup .in h3 {
    font-size: 22px;
  }
}
section.popup .in p {
  font-size: 13px;
  font-style: italic;
  color: white;
  line-height: 18.2px;
  margin-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
  z-index: 3;
}
section.popup .in .button {
  border: 2px solid white;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  color: white;
  transition: 0.6s;
  z-index: 3;
}
@media (max-width: 991px) {
  section.popup .in .button {
    height: 40px;
  }
}
section.popup .in .button:hover {
  background-color: white;
  color: #1a1a1a;
}

section.header {
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0;
}
section.header section.topbar {
  background-color: #1a1a1a;
  min-height: 35px;
  line-height: 35px;
}
section.header section.topbar p {
  text-align: center;
  font-size: 11.2px;
  color: white;
}
@media (max-width: 991px) {
  section.header section.topbar p {
    font-size: 10px;
  }
}
section.header nav.navbar {
  border-bottom: 1px solid #1a1a1a;
  background-color: #F7F7F2;
}
section.header nav.navbar .flex-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
section.header nav.navbar .flex-group .left {
  width: 80%;
  display: flex;
}
@media (max-width: 991px) {
  section.header nav.navbar .flex-group .left {
    align-items: center;
    width: 88%;
    justify-content: center;
    position: relative;
  }
  section.header nav.navbar .flex-group .left .cart {
    position: absolute;
    right: 0;
    z-index: 20;
  }
  section.header nav.navbar .flex-group .left .cart.open a {
    color: white;
  }
}
section.header nav.navbar .flex-group .left .logo {
  margin-right: 2.5vw;
  display: block;
  max-width: 251px;
}
@media (max-width: 991px) {
  section.header nav.navbar .flex-group .left .logo {
    margin-right: 0;
    line-height: 0;
    margin-bottom: 5px;
  }
}
section.header nav.navbar .flex-group .left .logo a {
  font-size: unset;
}
section.header nav.navbar .flex-group .left .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 70px;
}
@media (max-width: 991px) {
  section.header nav.navbar .flex-group .left .logo img {
    height: 60px;
  }
}
@media (max-width: 991px) {
  section.header nav.navbar .flex-group .left .menu {
    display: none;
  }
}
section.header nav.navbar .flex-group .left .menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
section.header nav.navbar .flex-group .left .menu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-left: 25px;
  padding-left: 25px;
}
section.header nav.navbar .flex-group .left .menu ul li:first-child {
  padding: 0;
  margin-right: 0.9vw;
}
section.header nav.navbar .flex-group .left .menu ul li a {
  color: #1a1a1a;
  font-size: 11.2px;
  text-transform: uppercase;
  text-decoration: unset;
}
section.header nav.navbar .flex-group .right {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 991px) {
  section.header nav.navbar .flex-group .right {
    display: none;
  }
}
section.header nav.navbar .flex-group .right .search-in {
  display: flex;
  opacity: 0;
  transition: 0.6s;
  position: absolute;
  background: #F7F7F2;
  margin-top: 136px;
  right: 0;
  width: 20%;
}
section.header nav.navbar .flex-group .right .search-in form {
  display: flex;
  width: 100%;
  padding: 10px 15px;
  justify-content: space-between;
  gap: 0px;
}
section.header nav.navbar .flex-group .right .search-in form input {
  display: block;
  width: 100%;
  height: 34px;
  border-radius: 0;
  border: 1px solid #eaeaea;
  padding-left: 13px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  min-width: 0;
}
section.header nav.navbar .flex-group .right .search-in form input::-moz-placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.header nav.navbar .flex-group .right .search-in form input::placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.header nav.navbar .flex-group .right .search-in form button {
  color: white;
  background: #1a1a1a;
  font-size: 12px;
  transition: 0.5s;
  width: 120px;
  outline: 0;
  border: 0;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  /* border-radius: 3px; */
  text-transform: uppercase;
}
section.header nav.navbar .flex-group .right .search-in form button:hover {
  background-color: #454545;
}
section.header nav.navbar .flex-group .right .search-in:hover {
  opacity: 1;
}
section.header nav.navbar .flex-group .right .search {
  margin-left: 50px;
  display: flex;
  margin-right: -10px;
  cursor: pointer;
  height: 78px;
}
section.header nav.navbar .flex-group .right .search:hover ~ .search-in {
  opacity: 1;
}
section.header nav.navbar .flex-group .right .search svg {
  opacity: 0.95;
  width: 35px;
}
section.header nav.navbar .flex-group .right .login {
  margin: 0 0 0 2.5vw;
}
section.header nav.navbar .flex-group .right .login a {
  color: white;
  background: #1a1a1a;
  padding: 8px 10px;
  font-size: 9.5px;
  transition: 0.5s;
}
section.header nav.navbar .flex-group .right .login a:hover {
  background-color: #454545;
}
section.header .menu-mobile-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 14px;
  margin-right: 40px;
  position: absolute;
  left: 0;
  z-index: 20;
}
@media (min-width: 992px) {
  section.header .menu-mobile-icon {
    display: none;
  }
}
section.header .menu-mobile-icon span {
  width: 35px;
  height: 2px;
  background: #1a1a1a;
  display: flex;
  opacity: 0.5;
  transition: 0.2s;
}
section.header .menu-mobile-icon.open span {
  background: #fff;
}
section.header .menu-mobile-icon.open span:first-of-type {
  transform: translatex(3.5px) translatey(5px) rotate(135deg);
  height: 1px;
}
section.header .menu-mobile-icon.open span:last-of-type {
  transform: translatex(3.5px) translatey(-7px) rotate(-135deg);
  height: 1px;
}
@media (max-width: 991px) {
  section.header .menu-mobile {
    position: fixed;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    height: 100%;
    padding-left: 22px;
    align-items: center;
    justify-content: start;
    top: 0;
    padding-top: 20px;
    display: none;
  }
  section.header .menu-mobile.open {
    display: flex;
  }
  section.header .menu-mobile .logos {
    position: fixed;
    top: 40px;
    filter: invert(1);
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  section.header .menu-mobile ul li {
    margin-bottom: 10px;
    list-style-type: none;
  }
  section.header .menu-mobile ul li.sc a {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
  }
  section.header .menu-mobile ul li a {
    color: white;
    font-size: 12px;
  }
}

footer {
  padding-top: 160px;
  padding-bottom: 140px;
}
@media (max-width: 991px) {
  footer {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
footer .flex-group {
  display: flex;
}
footer .flex-group .left, footer .flex-group .right {
  width: 50%;
}
@media (max-width: 991px) {
  footer .flex-group .left, footer .flex-group .right {
    width: 100%;
  }
}
footer .flex-group .left h5, footer .flex-group .right h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
footer .flex-group .left h1, footer .flex-group .right h1 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
footer .flex-group .left p, footer .flex-group .right p {
  font-size: 12px;
}
footer .flex-group .left .item, footer .flex-group .right .item {
  margin-top: 60px;
}
footer .flex-group .left .social, footer .flex-group .right .social {
  display: block;
  margin-top: 40px;
}
footer .flex-group .left .social a:hover img, footer .flex-group .right .social a:hover img {
  opacity: 0.8;
}
footer .flex-group .left ul li, footer .flex-group .right ul li {
  list-style: none;
}
footer .flex-group .left ul li a, footer .flex-group .right ul li a {
  color: black;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}
footer .flex-group .left ul li a:hover, footer .flex-group .right ul li a:hover {
  color: gray;
}
footer .flex-group .right {
  padding-left: 90px;
}
@media (max-width: 991px) {
  footer .flex-group .right {
    padding: 0;
    padding-top: 30px;
  }
}
footer .flex-group .left {
  display: flex;
  flex-wrap: wrap;
}
footer .flex-group .left .item-big {
  width: 100%;
}
footer .flex-group .left .item {
  width: 33%;
}
@media (max-width: 991px) {
  footer .flex-group .left .item {
    width: 50%;
  }
}

section.index-banner {
  min-height: 910px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 992px) {
  section.index-banner.bg-1 {
    background-position: center 20%;
  }
  section.index-banner.bg-2 {
    background-position: 0px -230px;
  }
}
@media (max-width: 991px) {
  section.index-banner {
    min-height: 690px;
    background: unset;
    position: relative;
    overflow: hidden;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  section.index-banner:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
  }
  section.index-banner.bg-1:after {
    background-position-x: 40%;
    background-position-y: 0%;
    background-size: cover;
  }
  section.index-banner.bg-2:after {
    background-position-x: 33%;
    background-position-y: 10%;
  }
}
section.index-banner.size-2 {
  min-height: 1170px;
}
@media (max-width: 991px) {
  section.index-banner.noiva-1 {
    min-height: 600px;
    background-position: unset;
  }
}
section.index-banner .container {
  z-index: 2;
}
section.index-banner:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #1a1a1a;
  opacity: 0.15;
  z-index: 1;
  display: block;
  content: "";
}
section.index-banner .banner {
  /*
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  */
}
section.index-banner .texto {
  text-align: center;
  z-index: 2;
  padding-top: 150px;
}
@media (max-width: 991px) {
  section.index-banner .texto {
    padding-top: 0;
  }
}
section.index-banner .texto h1, section.index-banner .texto p, section.index-banner .texto a {
  color: white;
}
section.index-banner .texto h1 {
  font-weight: 400;
}
@media (max-width: 991px) {
  section.index-banner .texto h1 {
    font-size: 22px;
  }
}
section.index-banner .texto p {
  font-size: 11.2px;
  margin-top: 15px;
}
section.index-banner .texto a.button {
  width: 290px;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  transition: 0.5s;
  margin: auto;
  margin-top: 28px;
}
@media (max-width: 991px) {
  section.index-banner .texto a.button {
    width: 177px;
    height: 60px;
  }
}
section.index-banner .texto a.button:hover {
  background-color: white;
  color: #1a1a1a;
}

section.index-details {
  padding-top: 82px;
  padding-bottom: 82px;
}
section.index-details .text {
  max-width: 1490px;
  text-align: center;
  margin: auto;
}
section.index-details p {
  font-size: 11.2px;
  margin-bottom: 10px;
  line-height: 1.6em;
}

section.index-categories {
  padding-bottom: 40px;
  padding-top: 50px;
}
@media (max-width: 991px) {
  section.index-categories {
    padding-bottom: 70px;
  }
}
section.index-categories .flex-group {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  section.index-categories .flex-group {
    flex-direction: column;
  }
}
section.index-categories .flex-group .button {
  width: 100%;
  max-width: 366px;
  display: block;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  min-height: 88px;
  line-height: 88px;
}
@media (max-width: 991px) {
  section.index-categories .flex-group .button {
    min-height: 60px;
    max-width: 245px;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 18px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
  section.index-categories .flex-group .button.hide-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  section.index-categories .flex-group .button.hide-desktop {
    display: none;
  }
}
section.index-categories .flex-group .left {
  flex-basis: 450px;
}
@media (max-width: 991px) {
  section.index-categories .flex-group .left {
    flex-basis: unset;
    width: 100%;
  }
}
@media (min-width: 992px) {
  section.index-categories .flex-group .left.hide-desktop {
    display: none;
  }
}
section.index-categories .flex-group .left h1 {
  margin-bottom: 60px;
  padding-left: 60px;
  position: relative;
}
@media (max-width: 991px) {
  section.index-categories .flex-group .left h1 {
    padding: 0;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #1a1a1a;
    width: 100%;
    display: block;
    margin-bottom: 55px;
    font-size: 19px;
    text-align: center;
  }
}
section.index-categories .flex-group .left h1:after {
  width: 745px;
  content: "";
  position: absolute;
  height: 1px;
  background: #1a1a1a;
  z-index: 2;
  margin-left: 70px;
  margin-top: 15px;
}
@media (max-width: 991px) {
  section.index-categories .flex-group .left h1:after {
    display: none;
  }
}
section.index-categories .flex-group .right {
  flex: 1;
  min-height: 691px;
  background-size: cover;
  background-attachment: fixed;
  /*
  img{
      width: 100%;
      height: 684px;
      object-fit: cover; 
  }*/
}
section.index-categories .flex-group .right.bg-1 {
  background-position: 140px -800px;
  background-size: 90%;
}
section.index-categories .flex-group .right.bg-2 {
  background-position: 0px -230px;
  background-size: 67%;
  background-position: 50px 120px;
}
@media (max-width: 991px) {
  section.index-categories .flex-group .right {
    min-height: 410px;
    width: 100%;
    display: block;
    background-position: top;
    position: relative;
    overflow: hidden;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  section.index-categories .flex-group .right:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position-x: 65%;
    background-position-y: 0%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  section.index-categories .flex-group .right.bg-2:after {
    background-position: -290px 105px;
  }
}
@media (max-width: 991px) {
  section.index-categories.right {
    padding-top: 70px;
  }
}
section.index-categories.right .flex-group .left {
  flex-basis: 440px;
  padding-left: 90px;
  text-align: center;
}
@media (max-width: 991px) {
  section.index-categories.right .flex-group .left {
    flex: 1;
    padding: 0;
  }
}
section.index-categories.right .flex-group .left h1 {
  padding-left: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  section.index-categories.right .flex-group .left h1.hide-desktop {
    display: none;
  }
}
@media (max-width: 991px) {
  section.index-categories.right .flex-group .left h1 {
    padding: 0;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #1a1a1a;
    width: 100%;
    display: block;
    margin-bottom: 55px;
    font-size: 21px;
    text-align: center;
    padding-bottom: 22px;
  }
  section.index-categories.right .flex-group .left h1.hide-mobile {
    display: none;
  }
}
section.index-categories.right .flex-group .left h1:after {
  right: 0;
  margin: 0;
  margin-top: 15px;
  margin-right: 450px;
}
@media (max-width: 991px) {
  section.index-categories.right .flex-group .left h1:after {
    display: none;
  }
}
section.index-categories.right .flex-group .left .button {
  max-width: unset;
  width: 100%;
}
@media (max-width: 991px) {
  section.index-categories.right .flex-group .left .button {
    max-width: 245px;
    margin: auto;
    margin-top: 25px;
  }
}
section.index-categories.right .flex-group .left p {
  font-size: 11px;
  line-height: 18px;
  color: #1a1a1a;
}
section.index-categories.right .flex-group .right {
  flex: 1;
}
section.index-categories.right .flex-group .right.bg-lg {
  background-size: unset;
  background-position: left;
  background-size: 67%;
  background-position: 50px 120px;
}
@media (max-width: 991px) {
  section.index-categories.right .flex-group .right.bg-lg {
    background-size: cover;
    background-size: cover;
    background-position: -290px 105px;
  }
}

section.index-products {
  padding-top: 65px;
  padding-bottom: 315px;
  width: 100%;
}
section.index-products.shopin {
  padding-bottom: 0;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  section.index-products {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
section.index-products.mg-1 {
  padding-top: 80px;
  padding-bottom: 340px;
}
@media (max-width: 991px) {
  section.index-products.mg-1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.index-products .outer-carousel {
  left: 0;
  width: 100%;
  display: block;
  position: absolute;
}
@media (max-width: 991px) {
  section.index-products .outer-carousel {
    position: relative;
  }
}
section.index-products .owl-carousel {
  width: 100%;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  section.index-products .owl-carousel.hide-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  section.index-products .owl-carousel.hide-desktop {
    display: none;
  }
}
section.index-products .owl-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1350px;
  position: absolute;
  right: 60px;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 991px) {
  section.index-products .owl-carousel .owl-nav {
    right: 0;
    max-width: 280px;
  }
}
section.index-products .owl-carousel .owl-nav button {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 1px solid #1a1a1a;
  transition: 0.6s;
}
section.index-products .owl-carousel .owl-nav button:hover {
  background: #B9B9B6;
}
section.index-products .flex-group {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  section.index-products .flex-group {
    flex-direction: column;
  }
}
section.index-products .flex-group .background {
  position: absolute;
  left: 0;
  width: 11%;
  display: block;
  z-index: 2;
  background: #F7F7F2;
  min-height: 380px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  section.index-products .flex-group .background {
    display: none;
  }
}
section.index-products .flex-group .left {
  width: 518px;
  z-index: 2;
  position: relative;
}
@media (max-width: 991px) {
  section.index-products .flex-group .left {
    width: 100%;
  }
}
section.index-products .flex-group .left h1 {
  padding-bottom: 45px;
  margin-bottom: 35px;
  display: block;
  border-bottom: 1px solid #1a1a1a;
  line-height: 140%;
}
@media (max-width: 991px) {
  section.index-products .flex-group .left h1 {
    margin-bottom: 0;
    padding-bottom: 24px;
    font-size: 20px;
    margin-bottom: 40px;
  }
}
section.index-products .flex-group .left p {
  max-width: 430px;
  font-size: 11.2px;
  line-height: 18px;
  margin-top: -20px;
  margin-bottom: 30px;
}
section.index-products .flex-group .right {
  min-height: 250px;
}
@media (max-width: 991px) {
  section.index-products .flex-group .right {
    width: 100%;
  }
}
section.index-products .flex-group .right .item {
  max-width: 191px;
  display: block;
  width: 100%;
  min-height: 1px;
  position: relative;
}
@media (max-width: 991px) {
  section.index-products .flex-group .right .item {
    max-width: 250px;
    float: right;
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  section.index-products .flex-group .right .item.hide-mobile {
    display: none;
  }
}
section.index-products .flex-group .right .item img {
  width: 100%;
  height: 254px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 1s;
}
@media (max-width: 991px) {
  section.index-products .flex-group .right .item img {
    height: 335px;
  }
}
section.index-products .flex-group .right .item img.secondary {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
section.index-products .flex-group .right .item:hover img.principal {
  opacity: 0;
}
section.index-products .flex-group .right .item:hover img.secondary {
  opacity: 1;
}
section.index-products .flex-group .right .item h3 {
  margin-top: 15px;
  font-size: 12px;
  line-height: 20px;
}
section.index-products .flex-group .right .item strong {
  font-size: 11px;
}

section.index-galeria {
  padding-top: 150px;
}
@media (max-width: 991px) {
  section.index-galeria {
    padding-top: 0;
  }
}
section.index-galeria .owl-carousel {
  padding-bottom: 60px;
  border-bottom: 1px solid #1a1a1a;
}
section.index-galeria .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1350px;
  position: absolute;
  right: 60px;
  width: 5%;
  margin-top: 20px;
}
@media (max-width: 991px) {
  section.index-galeria .owl-nav {
    right: 0;
    max-width: 280px;
    width: 25%;
    transform: scale(0.9);
  }
}
section.index-galeria .owl-nav button {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 1px solid #1a1a1a;
  transition: 0.6s;
}
section.index-galeria .owl-nav button:hover {
  background: #B9B9B6;
}
section.index-galeria h2 {
  font-size: 11.2px;
  color: #000;
  font-weight: bold;
  margin-bottom: 60px;
  border-bottom: 1px solid;
  display: table;
  line-height: 100%;
  max-width: 380px;
}
@media (max-width: 991px) {
  section.index-galeria h2 {
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 190%;
    text-decoration: underline;
    border: 0;
    text-underline-offset: 3px;
  }
}
section.index-galeria .item {
  max-width: 423px;
  display: block;
}
section.index-galeria .item h4 {
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 18px;
  font-size: 10px;
}
section.index-galeria .item img {
  width: 100%;
  height: 635px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.index-galeria .item img {
    height: 215px;
  }
}

section.index-galeria-pinterest {
  padding-top: 210px;
}
@media (max-width: 991px) {
  section.index-galeria-pinterest {
    padding-top: 75px;
  }
}
section.index-galeria-pinterest .item {
  position: relative;
  width: 445px;
}
@media (max-width: 991px) {
  section.index-galeria-pinterest .item {
    width: 100%;
  }
}
section.index-galeria-pinterest .item:before {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  display: block;
  background: url(../img/pin2.png);
  width: 16px;
  height: 16px;
  background-size: contain;
}
section.index-galeria-pinterest .item img {
  width: 445px;
  height: 445px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.index-galeria-pinterest .item img {
    width: 100%;
    height: 165px;
  }
}

section.shop {
  margin-top: 170px;
  position: relative;
  display: block;
}
@media (max-width: 991px) {
  section.shop {
    margin-top: 130px;
  }
}
section.shop section.breadcrumb {
  padding-bottom: 15px;
  margin-top: -35px;
}
@media (max-width: 991px) {
  section.shop section.breadcrumb {
    padding-bottom: 15px;
    margin-top: 0;
    line-height: 90%;
  }
}
section.shop section.breadcrumb span:after {
  content: "›";
  font-size: 14px;
  font-weight: 400;
  margin: 0 4px;
}
section.shop section.breadcrumb a {
  font-size: 8px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  section.shop h1 {
    font-size: 20px;
  }
}
section.shop svg {
  margin-bottom: 8px;
}
section.shop form {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 0px;
  margin-top: 14px;
  margin-bottom: 300px;
}
section.shop form input {
  display: block;
  width: 100%;
  height: 34px;
  border-radius: 0;
  border: 1px solid #eaeaea;
  padding-left: 13px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  min-width: 0;
}
section.shop form input::-moz-placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.shop form input::placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.shop form button {
  color: white;
  background: #1a1a1a;
  font-size: 12px;
  transition: 0.5s;
  width: 120px;
  outline: 0;
  border: 0;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  /* border-radius: 3px; */
  text-transform: uppercase;
}
section.shop form button:hover {
  background-color: #454545;
}
section.shop .flex-group {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
}
section.shop .flex-group .item {
  position: relative;
  flex: calc(33% - 10px);
  max-width: 33%;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.shop .flex-group .item {
    flex: calc(50% - 20px);
    max-width: 50%;
  }
}
section.shop .flex-group .item img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 1s;
}
@media (max-width: 991px) {
  section.shop .flex-group .item img {
    height: 235px;
  }
}
section.shop .flex-group .item img.secondary {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
section.shop .flex-group .item:hover img.principal {
  opacity: 0;
}
section.shop .flex-group .item:hover img.secondary {
  opacity: 1;
}
section.shop .flex-group .item h3 {
  margin-top: 15px;
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 991px) {
  section.shop .flex-group .item h3 {
    letter-spacing: 0.11em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
section.shop .flex-group .item strong {
  font-size: 11px;
}

section.shop-interna {
  padding-top: 155px;
  /*-------------------------------------*/
  /*-------------------------------------*/
}
@media (max-width: 991px) {
  section.shop-interna {
    padding-top: 130px;
  }
}
section.shop-interna section.breadcrumb {
  padding-bottom: 55px;
}
@media (max-width: 991px) {
  section.shop-interna section.breadcrumb {
    padding-bottom: 15px;
    line-height: 90%;
  }
}
section.shop-interna section.breadcrumb span:after {
  content: "›";
  font-size: 14px;
  font-weight: 400;
  margin: 0 4px;
}
section.shop-interna section.breadcrumb a {
  font-size: 8px;
  text-transform: uppercase;
}
section.shop-interna section.product-main {
  position: relative;
  display: flex;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main {
    flex-direction: column;
  }
}
section.shop-interna section.product-main .left {
  position: relative;
  width: 60%;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .left {
    width: 100%;
  }
}
section.shop-interna section.product-main .right {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}
section.shop-interna section.product-main .right .content {
  max-width: 620px;
  margin-top: -200px;
  width: 100%;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .right .content {
    margin-top: 0;
  }
}
section.shop-interna section.product-main .right h1 {
  font-size: 28px;
  line-height: 36.4px;
  color: #000;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .right h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
section.shop-interna section.product-main .right .price {
  margin-bottom: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}
section.shop-interna section.product-main .right p, section.shop-interna section.product-main .right li {
  font-size: 11.26px;
  line-height: 18px;
  margin-bottom: 15px;
}
section.shop-interna section.product-main .right p i, section.shop-interna section.product-main .right li i {
  font-style: italic;
}
section.shop-interna section.product-main .right label {
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 35px;
  display: block;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .right label {
    margin-top: 45px;
  }
}
section.shop-interna section.product-main .right input {
  font-size: 14px;
  height: 65px;
  width: 70px;
  outline: 0;
  border: 0;
  padding-left: 25px;
  padding-right: 20px;
  border-bottom: 1px solid #000;
  color: black;
  background: transparent;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
}
section.shop-interna section.product-main .right input:active, section.shop-interna section.product-main .right input:focus {
  outline: 2px solid #000;
  border: 0;
  border-bottom: 1px solid transparent;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .right input {
    padding-right: 0;
    padding-left: 20px;
    width: 70px;
  }
}
section.shop-interna section.product-main .right select {
  font-size: 14px;
  height: 65px;
  width: 100%;
  outline: 0;
  border: 0;
  padding-left: 20px;
  padding-right: 15px;
  border-bottom: 1px solid #000;
  color: black;
  background: transparent;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
section.shop-interna section.product-main .right select:active, section.shop-interna section.product-main .right select:focus {
  outline: 2px solid #000;
  border: 0;
  border-bottom: 1px solid transparent;
}
section.shop-interna section.product-main .right i.select-icon {
  content: "";
  position: absolute;
  right: 1rem;
  transform: rotate(45deg);
  border-bottom: 1px solid;
  border-right: 1px solid;
  height: 1rem;
  width: 1rem;
  transform-origin: top;
  pointer-events: none;
  font-size: 1rem;
  border-bottom-color: #1a1a1a;
  border-right-color: #1a1a1a;
  margin-top: 25px;
}
section.shop-interna section.product-main .right button {
  max-height: 36px;
  padding: 0;
  line-height: 36px;
  font-size: 10.5px;
  background: #1a1a1a;
  color: white;
  display: block;
  border: 0;
  outline: 0;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  margin-top: 40px;
  transition: 0.2s;
  cursor: pointer;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .right button {
    font-size: 12px;
  }
}
section.shop-interna section.product-main .right button:hover {
  opacity: 0.8;
}
section.shop-interna section.product-main .owl-product-interna-gallery img {
  width: 100%;
  height: 1080px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .owl-product-interna-gallery img {
    height: 445px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.shop-interna section.product-main .owl-product-interna-gallery .owl-nav {
  display: flex;
  justify-content: space-between;
  padding: 0 35px;
  position: absolute;
  width: calc(93% + 3px);
  top: 0;
  bottom: 0;
  margin: auto;
  align-items: center;
  height: 0px;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .owl-product-interna-gallery .owl-nav {
    padding: 0 10px;
  }
}
section.shop-interna section.product-main .owl-product-interna-gallery .owl-nav .owl-next {
  transform: rotate(45deg);
}
section.shop-interna section.product-main .owl-product-interna-gallery .owl-nav button {
  display: block;
  content: "";
  width: 1.5vw;
  height: 1.5vw;
  border-style: solid;
  border-color: #000;
  border-width: 1px 1px 0 0;
  margin: calc((1.5vw + 20px - 1.5vw) / 2);
  transform: rotate(225deg);
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .owl-product-interna-gallery .owl-nav button {
    width: 2vw;
    height: 2vw;
  }
}
section.shop-interna section.product-main .flex-group-bitmaps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding-bottom: 200px;
  margin-top: -10px;
  z-index: 7;
  position: relative;
}
@media (max-width: 991px) {
  section.shop-interna section.product-main .flex-group-bitmaps {
    margin-top: 5px;
    padding-bottom: 70px;
  }
}
section.shop-interna section.product-main .flex-group-bitmaps img {
  width: 50px;
  height: 67px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
section.shop-interna .mt {
  margin-top: 40px;
}
section.shop-interna section.accordion {
  border-bottom: 1px solid #1a1a1a;
}
@media (max-width: 991px) {
  section.shop-interna section.accordion {
    margin-top: 94px;
  }
}
section.shop-interna section.accordion .accordion__item {
  border-top: 1px solid #1a1a1a;
}
section.shop-interna section.accordion .accordion__item .accordion__title {
  position: relative;
  display: block;
  height: 80px;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
section.shop-interna section.accordion .accordion__item .accordion__title .accordion__arrow {
  position: absolute;
  top: 13px;
  right: 0px;
  text-align: center;
  color: #000;
  line-height: 30px;
  font-size: 30px;
  font-weight: 400;
  margin-right: 0px;
  transition: all 0.2s ease-out;
}
@media (max-width: 991px) {
  section.shop-interna section.accordion .accordion__item .accordion__title .accordion__arrow {
    top: unset;
  }
}
section.shop-interna section.accordion .accordion__item .accordion__rotate {
  transform: rotate(225deg);
}
section.shop-interna section.accordion .accordion__item .accordion__content {
  margin-bottom: 30px;
  display: none;
  font-size: 14px;
  color: rgb(26, 26, 26);
}
section.shop-interna section.accordion .accordion__item .accordion__content p {
  margin-bottom: 15px;
  font-size: 14px;
  color: rgb(26, 26, 26);
}
section.shop-interna section.accordion .flex-group {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
@media (max-width: 991px) {
  section.shop-interna section.accordion .flex-group {
    flex-wrap: wrap;
    gap: 0px;
    align-items: start;
    justify-content: space-between;
  }
}
section.shop-interna section.accordion .flex-group .item {
  max-width: 300px;
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  section.shop-interna section.accordion .flex-group .item {
    width: 160px;
    margin-bottom: 15px;
  }
}
section.shop-interna section.accordion .flex-group .item img {
  width: 100%;
  max-width: 300px;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.shop-interna section.accordion .flex-group .item img {
    width: 160px;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.shop-interna section.accordion .flex-group .item h3 {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
}
section.shop-interna section.accordion .flex-group .item span {
  font-size: 14px;
}
@media (max-width: 991px) {
  section.shop-interna section.accordion .flex-group .item span {
    color: #262626;
    opacity: 0.6;
    font-size: 12px;
    line-height: 150%;
    margin-bottom: 10px;
  }
}
section.shop-interna section.accordion .flex-group .item button {
  color: white;
  background: #1a1a1a;
  font-size: 10.5px;
  transition: 0.5s;
  width: 100%;
  outline: 0;
  border: 0;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 991px) {
  section.shop-interna section.accordion .flex-group .item button {
    font-size: 12px;
    min-height: 30px;
  }
}
section.shop-interna section.accordion .flex-group .item button:hover {
  background-color: #454545;
}

section.cart-interna {
  padding-top: 155px;
}
@media (max-width: 991px) {
  section.cart-interna {
    padding-top: 130px;
  }
}
section.cart-interna .flex-group {
  display: flex;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group {
    flex-direction: column;
  }
}
section.cart-interna .flex-group .left {
  flex-basis: 81%;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left {
    flex-basis: 100%;
  }
}
section.cart-interna .flex-group .left .cart-item {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item {
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
  }
}
section.cart-interna .flex-group .left .cart-item .start {
  flex-basis: 55%;
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .start {
    flex-basis: 100%;
    gap: 15px;
  }
}
section.cart-interna .flex-group .left .cart-item .start div {
  display: flex;
  flex-direction: column;
}
section.cart-interna .flex-group .left .cart-item .start h3 {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: #262626;
}
section.cart-interna .flex-group .left .cart-item .start span {
  font-size: 14px;
  color: #262626;
  opacity: 0.6;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .start span {
    color: #262626;
    opacity: 0.6;
    font-size: 12px;
    line-height: 150%;
    margin-bottom: 10px;
  }
  section.cart-interna .flex-group .left .cart-item .start span svg {
    width: 10px;
    height: 10px;
  }
}
section.cart-interna .flex-group .left .cart-item .start img {
  min-width: 136px;
  height: 136px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .start img {
    min-width: 86px;
    height: 86px;
  }
}
section.cart-interna .flex-group .left .cart-item .center {
  flex-basis: 35%;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .center {
    flex-basis: 20%;
    padding-left: 90px;
  }
}
section.cart-interna .flex-group .left .cart-item .center .selecao {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .center .selecao {
    width: 100px;
  }
}
section.cart-interna .flex-group .left .cart-item .center .selecao input {
  border: 0;
  outline: 0;
  background-color: transparent;
  width: 30px;
  font-size: 16px;
  font-family: "Montserrat";
  text-align: center;
  pointer-events: none;
}
section.cart-interna .flex-group .left .cart-item .center .selecao input::-webkit-outer-spin-button, section.cart-interna .flex-group .left .cart-item .center .selecao input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
section.cart-interna .flex-group .left .cart-item .center .selecao button {
  background: transparent;
  border: 0;
  outline: 0;
  display: flex;
  box-sizing: border-box;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
section.cart-interna .flex-group .left .cart-item .center .selecao button:hover {
  background-color: #ccc;
}
section.cart-interna .flex-group .left .cart-item .center .selecao button:hover svg {
  opacity: 1;
}
section.cart-interna .flex-group .left .cart-item .center .selecao button svg {
  opacity: 0.6;
}
section.cart-interna .flex-group .left .cart-item .end {
  flex-basis: 13%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .end {
    text-align: end;
    flex-basis: 42%;
  }
}
section.cart-interna .flex-group .left .cart-item .end span {
  line-height: 36px;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .end span {
    text-align: right;
    width: 100%;
  }
}
section.cart-interna .flex-group .left .cart-item .end button {
  background: transparent;
  border: 0;
  outline: 0;
  display: flex;
  box-sizing: border-box;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .left .cart-item .end button {
    position: absolute;
    right: -5px;
    top: -5px;
  }
}
section.cart-interna .flex-group .left .cart-item .end button:hover {
  background-color: #ccc;
}
section.cart-interna .flex-group .left .cart-item .end button:hover svg {
  opacity: 1;
}
section.cart-interna .flex-group .left .cart-item .end button svg {
  opacity: 0.6;
}
section.cart-interna .flex-group .right {
  padding-left: 50px;
  flex-basis: 19%;
  color: #262626;
}
@media (max-width: 991px) {
  section.cart-interna .flex-group .right {
    flex-basis: 100%;
    padding-left: 0;
  }
}
section.cart-interna .flex-group .right .subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.cart-interna .flex-group .right .subtotal span.price {
  font-size: 22px;
  font-weight: 500px;
  line-height: 100%;
}
section.cart-interna .flex-group .right button {
  color: white;
  background: #1a1a1a;
  font-size: 12px;
  transition: 0.5s;
  width: 100%;
  outline: 0;
  border: 0;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
}
section.cart-interna .flex-group .right button:hover {
  background-color: #454545;
}
section.cart-interna h2 {
  font-weight: 300;
  color: #262626;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.cart-interna h2 {
    font-size: 22px;
    line-height: 150%;
  }
}
@media (max-width: 991px) {
  section.cart-interna #subtotal {
    padding-left: 6vw;
    padding-right: 6vw;
    position: fixed;
    width: -webkit-fill-available;
    padding-bottom: 33px;
    bottom: 0;
    left: 0;
    background-color: #F7F7F2;
    z-index: 3;
  }
  section.cart-interna #subtotal .subtotal {
    padding-top: 17px;
    border-top: 1px solid #ccc;
    display: flex;
    align-items: flex-start;
  }
  section.cart-interna #subtotal button {
    margin-top: 17px;
    min-height: 39px;
  }
}

section.customers-bought {
  padding-top: 70px;
}
section.customers-bought h2 {
  font-weight: 300;
  color: #262626;
  margin-bottom: 25px;
}
section.customers-bought .flex-group {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
@media (max-width: 991px) {
  section.customers-bought .flex-group {
    flex-wrap: wrap;
    gap: 0px;
    align-items: start;
    justify-content: space-between;
  }
}
section.customers-bought .flex-group .item {
  max-width: 300px;
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  section.customers-bought .flex-group .item {
    width: 160px;
    margin-bottom: 15px;
  }
}
section.customers-bought .flex-group .item img {
  width: 100%;
  max-width: 300px;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.customers-bought .flex-group .item img {
    width: 160px;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.customers-bought .flex-group .item h3 {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
}
section.customers-bought .flex-group .item span {
  font-size: 14px;
}
@media (max-width: 991px) {
  section.customers-bought .flex-group .item span {
    color: #262626;
    opacity: 0.6;
    font-size: 12px;
    line-height: 150%;
    margin-bottom: 10px;
  }
}
section.customers-bought .flex-group .item button {
  color: white;
  background: #1a1a1a;
  font-size: 10.5px;
  transition: 0.5s;
  width: 100%;
  outline: 0;
  border: 0;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 991px) {
  section.customers-bought .flex-group .item button {
    font-size: 12px;
    min-height: 30px;
  }
}
section.customers-bought .flex-group .item button:hover {
  background-color: #454545;
}

section.checkout {
  font-family: Clarkson, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
}
section.checkout p, section.checkout span, section.checkout h1, section.checkout h2, section.checkout h3, section.checkout h4, section.checkout h5, section.checkout h6 {
  letter-spacing: normal;
  font-family: Clarkson, Helvetica, sans-serif;
  text-transform: unset;
}
section.checkout .flex-group {
  display: flex;
  align-items: start;
  gap: 35px;
}
@media (max-width: 991px) {
  section.checkout .flex-group {
    flex-direction: column;
  }
}
section.checkout .logo {
  display: block;
  margin-top: 10px;
  margin-bottom: 25px;
}
section.checkout .logo img {
  width: 290px;
}
@media (max-width: 991px) {
  section.checkout .logo img {
    margin: auto;
    display: block;
    width: 250px;
  }
}
section.checkout .left {
  flex-basis: 50%;
  overflow: hidden;
}
@media (max-width: 991px) {
  section.checkout .left {
    flex-basis: 100%;
    width: 100%;
  }
}
section.checkout .item {
  padding: 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  section.checkout .item {
    box-sizing: border-box;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
  }
}
section.checkout .item .item-in {
  max-height: 0;
  overflow: hidden;
}
section.checkout .item.active .item-in {
  max-height: 100%;
  overflow: unset;
  padding-top: 20px;
}
section.checkout .item h2 {
  opacity: 0.6;
}
section.checkout .item.active h2 {
  opacity: 1;
}
section.checkout .item.active.sc h2 {
  margin-bottom: 25px;
}
section.checkout .item hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 10px 0;
  outline: 0;
}
section.checkout .item p, section.checkout .item span, section.checkout .item label {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: rgb(118, 118, 118);
}
section.checkout .item p.min, section.checkout .item span.min, section.checkout .item label.min {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
}
section.checkout .item h2 {
  font-size: 22px;
  line-height: 100%;
  color: #313131;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  margin-top: 5px;
}
section.checkout .item h2 b {
  margin-right: 13px;
}
section.checkout .item h3 {
  font-size: 16px;
  line-height: 22px;
  color: #161616;
  font-weight: 500;
  margin: 20px 0;
}
section.checkout .item input, section.checkout .item select {
  display: block;
  width: -webkit-fill-available;
  height: 44px;
  border-radius: 3px;
  border: 1px solid #eaeaea;
  padding-left: 13px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
  font-weight: 300;
  font-family: Clarkson, Helvetica, sans-serif;
  min-width: 0;
}
section.checkout .item input::-moz-placeholder, section.checkout .item select::-moz-placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.checkout .item input::placeholder, section.checkout .item select::placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.checkout .item select {
  border: 0;
  border-right: 10px solid white;
  outline: 1px solid #eaeaea;
}
section.checkout .item button {
  color: white;
  background: #1a1a1a;
  font-size: 14px;
  transition: 0.5s;
  width: 100%;
  outline: 0;
  border: 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 20px;
  font-family: Clarkson;
  border-radius: 3px;
}
section.checkout .item button:hover {
  background-color: #454545;
}
section.checkout .item .flex-form {
  display: flex;
  gap: 13px;
}
section.checkout .right {
  flex-basis: 50%;
  overflow: hidden;
}
@media (max-width: 991px) {
  section.checkout .right {
    flex-basis: 100%;
    width: 100%;
  }
}
section.checkout .right .item-resumo {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}
section.checkout .right .item-resumo h6 {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: rgb(49, 49, 49);
  font-weight: 500;
}
section.checkout .right .item-resumo span {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: rgb(118, 118, 118);
}
section.checkout .right .item-resumo .one {
  width: 88px;
}
section.checkout .right .item-resumo .one img {
  max-height: 88px;
  max-width: 88px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.checkout .right .item-resumo .two {
  flex: 1;
}
section.checkout .right .item-resumo .three {
  width: 80px;
  text-align: end;
}
section.checkout .right .item-resumo .three h6:last-child {
  color: rgb(118, 118, 118);
}
section.checkout .right .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}
section.checkout .right .subtotal.total {
  margin-top: 27px;
}
@media (max-width: 991px) {
  section.checkout .right .subtotal.total {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    background: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 15px 20px;
    box-sizing: border-box;
    border-top: 1px solid #ddd;
  }
}
section.checkout .right .subtotal.total span {
  color: rgb(49, 49, 49);
  font-weight: 500;
  font-size: 14.5px;
}
section.checkout .right .secure {
  align-content: center;
  background: #fff;
  border-top: 1px solid #e4e4e4;
  color: #0e0e0e;
  display: flex;
  font-size: 9.75px;
  justify-content: center;
  letter-spacing: 0.75px;
  line-height: 22px;
  padding-top: 16px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  section.checkout .right .secure.hide-desktop {
    display: none;
  }
}
@media (max-width: 991px) {
  section.checkout .right .secure {
    width: 100%;
  }
  section.checkout .right .secure.hide-mobile {
    display: none;
  }
}
section.checkout .right .secure:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m20 15.928-8.25 4.916L3 15.912V2.471C8.489.51 14.994.517 20 2.45v13.478Z' stroke='%23000' stroke-width='2'/%3E%3Cpath d='m7 10 3 3 6-6' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat;
  content: "";
  height: 22px;
  margin-right: 16px;
  width: 22px;
}

section.agendamento {
  padding-top: 170px;
}
@media (max-width: 991px) {
  section.agendamento {
    padding-top: 130px;
  }
}
@media (max-width: 991px) {
  section.agendamento.a404 {
    padding-top: 170px;
  }
  section.agendamento.a404 h1 {
    text-align: left;
    margin-top: 0;
  }
}
section.agendamento .container {
  max-width: 1195px;
  margin: 0 auto;
}
section.agendamento .produtos-cadastrando {
  margin: auto;
  width: 70%;
  height: 300px;
  margin-bottom: 25px;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
section.agendamento .produtos-cadastrando:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  width: 500px;
  height: 600px;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 40%;
  background-image: url("../img/banner/sobre.jpg");
}
@media (max-width: 991px) {
  section.agendamento h2 {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  section.agendamento p {
    font-size: 14px;
  }
}
section.agendamento h1 {
  text-align: center;
  font-size: 25px;
  line-height: 31px;
  color: rgb(26, 26, 26);
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid;
  margin-top: 90px;
}
@media (max-width: 991px) {
  section.agendamento h1 {
    font-size: 22px;
    padding-bottom: 15px;
    margin-top: 70px;
  }
}
section.agendamento .flex-group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  section.agendamento .flex-group {
    flex-direction: column;
  }
}
section.agendamento .flex-group.no-align {
  align-items: start;
}
section.agendamento .flex-group .left {
  min-width: 657px;
  flex: 1;
}
@media (max-width: 991px) {
  section.agendamento .flex-group .left {
    min-width: 0;
    width: 100%;
  }
}
section.agendamento .flex-group .left img {
  width: 534px;
  height: 802px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  section.agendamento .flex-group .left img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: inherit;
       object-position: inherit;
    margin: auto;
    display: block;
  }
}
section.agendamento .flex-group .left h2 {
  font-size: 19.6px;
  line-height: 25px;
  color: rgb(26, 26, 26);
  font-weight: 300;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.agendamento .flex-group .left h2 {
    margin-top: 0;
    text-align: left;
  }
}
section.agendamento .flex-group .left form {
  width: 90%;
}
@media (max-width: 991px) {
  section.agendamento .flex-group .left form {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 35px;
    margin-bottom: 10px;
  }
}
section.agendamento .flex-group .left form input, section.agendamento .flex-group .left form select, section.agendamento .flex-group .left form textarea {
  display: block;
  width: -webkit-fill-available;
  height: 44px;
  border-radius: 3px;
  border: 1px solid #eaeaea;
  padding-left: 13px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  min-width: 0;
}
section.agendamento .flex-group .left form input::-moz-placeholder, section.agendamento .flex-group .left form select::-moz-placeholder, section.agendamento .flex-group .left form textarea::-moz-placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.agendamento .flex-group .left form input::placeholder, section.agendamento .flex-group .left form select::placeholder, section.agendamento .flex-group .left form textarea::placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.agendamento .flex-group .left form select {
  border: 0;
  border-right: 10px solid white;
  outline: 1px solid #eaeaea;
}
section.agendamento .flex-group .left form textarea {
  padding-top: 10px;
  min-height: 150px;
}
section.agendamento .flex-group .left form button {
  color: white;
  background: #1a1a1a;
  font-size: 14px;
  transition: 0.5s;
  width: 100%;
  outline: 0;
  border: 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  border-radius: 3px;
}
section.agendamento .flex-group .left form button:hover {
  background-color: #454545;
}
section.agendamento .flex-group .left form .flex-input {
  display: flex;
  gap: 13px;
}
section.agendamento .flex-group .right {
  flex: 1;
}
section.agendamento .flex-group .right h2 {
  font-size: 19.6px;
  line-height: 25px;
  color: rgb(26, 26, 26);
  font-weight: 300;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.agendamento .flex-group .right h2 {
    margin-top: 0;
    text-align: left;
    margin-top: 30px;
  }
}
section.agendamento .flex-group .right p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(26, 26, 26);
  margin-bottom: 20px;
}
section.agendamento .flex-group .right .endereco {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}
section.agendamento .flex-group .right .endereco span {
  font-size: 11.2px;
  line-height: 17.92px;
  color: rgb(26, 26, 26);
  font-weight: 400;
}
section.agendamento section.below {
  padding-top: 55px;
  padding-bottom: 55px;
  margin-top: 35px;
  margin-bottom: 30px;
  border-top: 1px solid rgb(26, 26, 26);
  border-bottom: 1px solid rgb(26, 26, 26);
}
section.agendamento section.below ul li {
  list-style-type: none;
  font-size: 14px;
  line-height: 22px;
  color: rgb(26, 26, 26);
  font-weight: 400;
  margin-bottom: 10px;
}
section.agendamento section.below ul li::before {
  display: inline-block;
  min-width: 40px;
  text-align: right;
  box-sizing: border-box;
}
section.agendamento section.below ul li::before {
  white-space: pre;
}
section.agendamento section.below ul li::before {
  padding-right: 10px;
  content: "•";
}

section.account {
  padding-top: 170px;
}
@media (max-width: 991px) {
  section.account {
    padding-top: 130px;
  }
  section.account .container.no {
    padding-left: 2.7vw;
    padding-right: 2.7vw;
  }
}
section.account .in {
  border-radius: 5px;
  border: 1px solid #1a1a1a;
  min-height: 400px;
}
section.account h3 {
  margin-bottom: 35px;
  font-size: 20px;
}
@media (max-width: 991px) {
  section.account h3 {
    padding: 0 22px;
    padding-top: 0px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
section.account .box-principal {
  background: #1a1a1a;
  padding: 20px 0;
  color: white;
  font-size: 15px;
  text-align: left;
  font-weight: 500;
}
@media (max-width: 991px) {
  section.account .box-principal {
    font-size: 13px;
    text-align: left;
    font-weight: 500;
    line-height: 150%;
    padding: 15px 0;
    padding-bottom: 10px;
  }
}
section.account .box-principal span {
  display: flex;
  align-items: center;
}
section.account .box-principal svg {
  filter: contrast(0) brightness(10);
  position: relative;
  margin-right: 15px;
  margin-top: -4px;
}
section.account .box-principal .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  section.account .box-principal .container {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 10px;
  }
}
section.account .box-principal a {
  color: white;
}
section.account .flex-group {
  display: flex;
  gap: 60px;
  padding: 50px;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  section.account .flex-group {
    flex-direction: column;
    display: flex;
    gap: 20px;
    padding: 0px;
    padding-bottom: 70px;
    margin-top: 0px;
    border-top: 1px solid #333;
  }
}
section.account .flex-group .right {
  flex: 1;
}
@media (max-width: 991px) {
  section.account .flex-group .right {
    width: 100%;
    box-sizing: border-box;
    overflow: scroll;
  }
}
section.account .flex-group .left {
  min-width: 300px;
}
@media (max-width: 991px) {
  section.account .flex-group .left {
    width: 100%;
    min-width: unset;
    display: flex;
  }
}
section.account .flex-group .left a {
  display: block;
  height: 60px;
  background: #777;
  transition: 0.6s;
  border-bottom: 1px solid #777;
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: white;
  font-size: 13px;
}
section.account .flex-group .left a.active, section.account .flex-group .left a:hover {
  background: #1a1a1a;
}
@media (max-width: 991px) {
  section.account .flex-group .left a {
    width: 50%;
    font-size: 10px;
  }
}
section.account .endereco {
  padding: 20px 25px;
  background: #eee;
}
@media (max-width: 991px) {
  section.account .endereco {
    font-size: 13px;
  }
}
section.account table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 991px) {
  section.account table {
    overflow: auto;
  }
}
section.account table td, section.account table th {
  border: 1px solid #1a1a1a;
  padding: 15px;
  font-size: 14px;
  text-align: left;
}
@media (max-width: 991px) {
  section.account table td, section.account table th {
    font-size: 12px;
  }
}
section.account table th {
  text-transform: uppercase;
  background-color: #222;
  color: white;
}
@media (max-width: 991px) {
  section.account form {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  section.account strong.this {
    text-align: center;
    display: block;
  }
}
section.account input, section.account select, section.account textarea {
  display: block;
  width: -webkit-fill-available;
  height: 44px;
  border-radius: 3px;
  border: 1px solid #eaeaea;
  padding-left: 13px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  min-width: 0;
}
section.account input::-moz-placeholder, section.account select::-moz-placeholder, section.account textarea::-moz-placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.account input::placeholder, section.account select::placeholder, section.account textarea::placeholder {
  color: #313131;
  opacity: 0.6;
  font-weight: 500;
}
section.account select {
  border: 0;
  border-right: 10px solid white;
  outline: 1px solid #eaeaea;
}
section.account textarea {
  padding-top: 10px;
  min-height: 150px;
}
section.account button {
  color: white;
  background: #1a1a1a;
  font-size: 14px;
  transition: 0.5s;
  width: 100%;
  outline: 0;
  border: 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  border-radius: 3px;
}
section.account button:hover {
  background-color: #454545;
}
section.account .flex-input {
  display: flex;
  gap: 13px;
}

section.noivas-listagem {
  margin-top: 113px;
}
@media (max-width: 991px) {
  section.noivas-listagem {
    margin-top: 99px;
  }
}
section.noivas-listagem section.top {
  min-height: 725px;
  display: flex;
  align-items: end;
  justify-content: center;
  /*
  background-image: url('../img/banner-noivas.jpg');
  background-size: cover;
  background-attachment: fixed;*/
  padding-bottom: 135px;
  box-sizing: border-box;
  position: relative;
  background-position: center;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
@media (max-width: 991px) {
  section.noivas-listagem section.top {
    min-height: 0;
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
section.noivas-listagem section.top:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position-x: 65%;
  background-position-y: 0%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
section.noivas-listagem section.top:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f7f7f2;
  z-index: 2;
  display: block;
  opacity: 0.15;
}
section.noivas-listagem section.top .in {
  max-width: 896px;
  padding-top: 55px;
  padding-bottom: 135px;
  padding-left: 45px;
  padding-right: 45px;
  display: block;
  background: #F7F7F2;
  box-sizing: border-box;
  z-index: 3;
}
@media (max-width: 991px) {
  section.noivas-listagem section.top .in {
    padding-top: 35px;
    padding-bottom: 40px;
    width: 90%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
section.noivas-listagem section.top .in h1 {
  font-weight: 400;
  font-size: 25.2px;
  line-height: 27px;
  color: #1a1a1a;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.noivas-listagem section.top .in h1 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
section.noivas-listagem section.top .in p {
  font-weight: 400;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 22px;
}
@media (max-width: 991px) {
  section.noivas-listagem section.top .in p {
    font-size: 14px;
  }
}
section.noivas-listagem section.listagem {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 38px;
}
section.noivas-listagem section.listagem .item {
  position: relative;
  flex: calc(50% - 30px);
  max-width: 50%;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.noivas-listagem section.listagem .item {
    flex: 100%;
    max-width: 100%;
  }
}
section.noivas-listagem section.listagem .item img {
  width: 100%;
  height: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 1s;
}
@media (max-width: 991px) {
  section.noivas-listagem section.listagem .item img {
    height: 320px;
  }
}
section.noivas-listagem section.listagem .item img.secondary {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
section.noivas-listagem section.listagem .item:hover img.principal {
  opacity: 0;
}
section.noivas-listagem section.listagem .item:hover img.secondary {
  opacity: 1;
}
section.noivas-listagem section.listagem .item h3 {
  margin-top: 33px;
  margin-bottom: 28px;
  font-size: 19.6px;
  line-height: 25.48px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  section.noivas-listagem section.listagem .item h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 17px;
  }
}
section.noivas-listagem section.listagem .item p {
  font-size: 11.2px;
  line-height: 17.92px;
  color: #1a1a1a;
}
section.noivas-listagem section.listagem .item a.link {
  font-size: 12px;
  line-height: 17.92px;
  color: #000;
  border-bottom: 1px solid;
  display: table;
  margin-top: 15px;
}
section.noivas-listagem section.listagem .item strong {
  font-size: 11px;
}

section.noivas-interna {
  padding-top: 160px;
  max-width: 913px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  section.noivas-interna {
    padding-top: 140px;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
section.noivas-interna p.link {
  font-size: 14px;
  text-align: center;
  color: rgb(26, 26, 26);
}
section.noivas-interna p.link a {
  border-bottom: 1px solid rgb(26, 26, 26);
  color: rgb(26, 26, 26);
  font-size: 14px;
}
section.noivas-interna small {
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
  color: rgb(26, 26, 26);
}
section.noivas-interna h1 {
  margin-bottom: 41px;
  line-height: 100%;
  font-size: 28px;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgb(26, 26, 26);
}
@media (max-width: 991px) {
  section.noivas-interna h1 {
    font-size: 24px;
    margin-bottom: 45px;
  }
}
section.noivas-interna .flex-group {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}
@media (max-width: 991px) {
  section.noivas-interna .flex-group {
    flex-direction: column;
    gap: unset;
    justify-content: center;
    align-items: center;
  }
}
section.noivas-interna hr {
  display: block;
  color: black;
  margin: 38px 0;
  opacity: 1;
  outline: 0;
  border: 0;
  border-top: 1px solid black;
}
section.noivas-interna .start {
  flex: calc(50% - 15px);
}
@media (max-width: 991px) {
  section.noivas-interna .start {
    flex: 100%;
    width: 100%;
  }
}
section.noivas-interna .start img.principal {
  width: 100%;
  height: 659px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  section.noivas-interna .start img.principal {
    height: 495px;
  }
}
section.noivas-interna .start h4 {
  font-size: 11.2px;
  line-height: 18px;
  margin-bottom: 40px;
  text-transform: capitalize;
}
section.noivas-interna .end {
  flex: calc(50% - 15px);
}
@media (max-width: 991px) {
  section.noivas-interna .end {
    flex: 100%;
  }
}
section.noivas-interna .end .description, section.noivas-interna .end .description p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
  color: rgb(26, 26, 26);
}
section.noivas-interna .end .style, section.noivas-interna .end .style p, section.noivas-interna .end .style h3 {
  font-size: 11.2px;
  line-height: 18px;
  margin-bottom: 12px;
  color: rgb(26, 26, 26);
}
@media (max-width: 991px) {
  section.noivas-interna .end .style, section.noivas-interna .end .style p, section.noivas-interna .end .style h3 {
    font-size: 14px;
  }
}
section.noivas-interna .end .style h3 {
  font-weight: 600;
  color: #000;
}
section.noivas-interna .desc_other {
  font-size: 14px;
  line-height: 22px;
  color: rgb(26, 26, 26);
}
section.noivas-interna section.listing div img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.noivas-interna section.listing div {
  line-height: 0;
  margin-bottom: 1px;
}/*# sourceMappingURL=custom.css.map */