* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  font-family: "Oswald", sans-serif;
  box-sizing: border-box;
}

html {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

img {
  -webkit-user-drag: none;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  z-index: 9999 !important;
  transition: opacity 0.75s, visibility 0.75s;
  gap: 10px;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
  animation: bounce 0.6s infinite ease-in-out;
}

.loader span:nth-child(1) {
  animation-delay: 0s;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.btn {
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  color: white;
  background-color: transparent;
  outline: black;
  border: 3.5px solid black;
  transition: ease-in-out 0.5s;
  backdrop-filter: blur(10px);
}
.btn:hover {
  background-color: white;
  outline: white;
  border: 3.5px solid white;
  backdrop-filter: blur(10px) !important;
  color: black;
}

.btn-primary {
  box-shadow: none !important;
  outline: white;
  background-color: transparent;
  border: 3.5px solid white;
  backdrop-filter: blur(10px) !important;
}

.btn:focus, .btn:active, .btn:focus-visible,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  color: white !important;
  border-color: white !important;
  pointer-events: none !important;
}

.btn-secondary {
  color: white;
  background-color: transparent;
  outline: white;
  border: 3.5px solid white;
  transition: ease-in-out 0.5s;
  backdrop-filter: blur(10px);
  padding: 5px 15px;
  text-transform: uppercase;
}
.btn-secondary:hover {
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  background-color: #edd068;
  outline: #edd068;
  border: 3.5px solid #edd068;
  backdrop-filter: blur(10px) !important;
  color: black;
  font-weight: bolder;
  letter-spacing: 2px;
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary:focus-visible {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  color: white !important;
  border-color: white !important;
  pointer-events: none !important;
}

.btn-tertiary {
  color: white;
  background-color: transparent;
  outline: white;
  border: 3.5px solid white;
  transition: ease-in-out 0.5s;
  backdrop-filter: blur(10px);
  padding: 5px 15px;
  text-transform: uppercase;
}
.btn-tertiary:hover {
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  background-color: #edd068;
  outline: #edd068;
  border: 3.5px solid #edd068;
  backdrop-filter: blur(10px) !important;
  color: black;
  font-weight: bolder;
  letter-spacing: 2px;
}
.btn-tertiary:focus, .btn-tertiary:active, .btn-tertiary:focus-visible {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  color: white !important;
  border-color: white !important;
  pointer-events: none !important;
}
@media (max-width: 560px) {
  .btn-tertiary {
    max-width: 190px;
    font-size: 0.8rem !important;
    margin-top: 1.8rem;
  }
}
@media (min-width: 561px) and (max-width: 760px) {
  .btn-tertiary {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
@media (min-width: 761px) {
  .btn-tertiary {
    max-width: 300px;
    font-size: 2rem;
  }
}

body {
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow-x: hidden !important;
  overflow-y: auto;
  background-color: white;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #ffffff #1a1a1a !important;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a !important;
}

::-webkit-scrollbar-thumb {
  background-color: #edd068 !important;
  border-radius: 10px;
  border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #3b3b3b;
}

header {
  z-index: 99 !important;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 100;
  position: fixed;
}

.navbar {
  z-index: 99 !important;
  align-items: center;
  width: 100%;
  vertical-align: center;
  position: static;
}

.nav-link.active {
  color: #edd068 !important;
  background-color: transparent !important;
  border-bottom: 5px solid #edd068 !important;
  border-radius: 0px;
}

@media (max-width: 991px) {
  header {
    background-color: black;
    backdrop-filter: blur(10px);
  }
  .nav-link.active {
    border-bottom: 3px solid #edd068 !important;
    background-color: transparent !important;
  }
}
.nav-link {
  text-align: center;
  margin-left: 20px;
  padding-top: 0px;
  padding-bottom: 0;
}
.nav-link:hover {
  color: #fcd856 !important;
}

#brand-logo {
  max-height: 22px;
  padding-top: 0px;
  padding-bottom: 0px !important;
  margin-left: 0px;
  margin-top: 15px;
  height: auto;
  width: auto;
  transition: ease-in-out 0.5s;
}
#brand-logo:hover {
  transform: scale(1.05);
}

.cta-nav {
  margin-top: 5px;
}
.cta-nav a {
  background-color: #edd068;
  color: black;
  font-family: "Special Gothic Condensed One", sans-serif;
  font-weight: 100;
  font-weight: bold;
  text-decoration: none;
  padding: 0.4rem 2rem;
  transition: linear 0.2s;
}
.cta-nav a:hover {
  background-color: #edd068;
  color: black;
}

.nav-link-cta {
  text-align: center;
  margin-left: 20px;
  padding-bottom: 0;
}

.nav-item a {
  color: white;
  font-family: "Special Gothic Condensed One", sans-serif;
  border-bottom: 1px;
}

.nav-tabs button {
  color: white;
  text-decoration: none;
}

.tab-content {
  color: white;
}

.nav-pills {
  display: flex;
  align-items: center !important;
  align-content: center;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#home {
  background-color: white;
}

.container-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.38);
  margin: 0;
  padding: 0;
}

.store-motto {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 2px;
}

.hero-cta {
  letter-spacing: 3px;
}

.motto-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #dfdfdf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.motto-text .motto-description {
  color: #dfdfdf !important;
}
.motto-text h1 {
  color: white !important;
}

.logo-store {
  padding-top: 4rem;
  align-self: center;
  justify-self: center;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.hero-container-inner {
  margin-top: 10px;
}
.hero-container-inner img {
  margin-top: 30px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }
  .motto-description {
    font-size: 0.8rem;
    margin: 0 3rem;
  }
  .logo-store {
    max-width: 165px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  .motto-description {
    font-size: 1.25rem;
    margin: 0 2rem;
  }
  .logo-store {
    max-width: 175px;
  }
}
@media (min-width: 769px) {
  h1 {
    font-size: 3rem;
  }
  .motto-description {
    font-size: 1.5rem;
  }
  .logo-store {
    max-width: 195px;
  }
}
#destaque {
  background-color: #1a1a1a;
  overflow: hidden !important;
}
#destaque h3 {
  color: black !important;
}
#destaque p, #destaque h1, #destaque h2, #destaque h4, #destaque h4, #destaque h6 {
  color: black !important;
}

.span-off {
  color: #edd068;
}

.container-featured {
  max-width: 1000px;
  padding: 0px;
  position: relative;
}
.container-featured .container-featured-img {
  position: relative;
  width: 100%;
}
.container-featured .container-featured-img .span-header {
  font-weight: bolder;
  position: absolute;
  padding: 25px;
  top: 30px;
  left: 60px;
  text-transform: uppercase;
  color: white;
  text-wrap: pretty;
  z-index: 2;
}
@media (max-width: 560px) {
  .container-featured .container-featured-img .span-header {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
@media (min-width: 561px) and (max-width: 760px) {
  .container-featured .container-featured-img .span-header {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (min-width: 761px) and (max-width: 960px) {
  .container-featured .container-featured-img .span-header {
    font-size: 6rem;
    line-height: 6rem;
  }
}
@media (min-width: 961px) {
  .container-featured .container-featured-img .span-header {
    font-size: 9rem;
    line-height: 8rem;
  }
}
.container-featured .container-featured-img .span-header .span-text {
  font-weight: bolder;
  position: absolute;
  padding-left: 5px;
  padding-top: 10px;
  line-height: 5px;
  text-transform: uppercase;
  color: white;
  text-wrap: pretty;
  z-index: 2;
}
@media (max-width: 560px) {
  .container-featured .container-featured-img .span-header .span-text {
    font-size: 0.8rem;
  }
}
@media (min-width: 561px) and (max-width: 760px) {
  .container-featured .container-featured-img .span-header .span-text {
    font-size: 1rem;
  }
}
@media (min-width: 761px) and (max-width: 960px) {
  .container-featured .container-featured-img .span-header .span-text {
    font-size: 2rem;
  }
}
@media (min-width: 961px) {
  .container-featured .container-featured-img .span-header .span-text {
    font-size: 2.2rem;
    line-height: 28px;
  }
}
.container-featured .container-featured-img .span-header a {
  z-index: 5;
}
.container-featured .img-discount-bg {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.4);
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.container-featured .img-discount-abs {
  position: absolute;
  height: 100%;
  max-width: 100%;
  bottom: 0;
  left: 56%;
  z-index: 3;
  overflow: hidden !important;
}

.ticker-container {
  background-color: #000;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 4px;
}

.ticker-carousel {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-text 50s linear infinite;
  font-size: 14px;
}
.ticker-carousel span {
  color: white;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#produtos {
  background-color: #1a1a1a;
}
#produtos h3 {
  color: black !important;
}
#produtos span, #produtos p, #produtos h1, #produtos h2, #produtos h4, #produtos h4, #produtos h6 {
  color: black !important;
}

.h2-white {
  color: black !important;
  font-family: "Special Gothic Condensed One", sans-serif;
  letter-spacing: 4px;
  background-color: #edd068;
  transition: ease-in-out 0.5s;
}
.h2-white:hover {
  border-radius: 25px;
  letter-spacing: 10px;
}

.container-trending {
  max-width: 1000px;
  padding: 0px;
}

.trending-products-top {
  height: 300px;
  position: relative;
  display: block;
  overflow: hidden;
}
.trending-products-top img {
  filter: blur(0) brightness(0.6);
  transition: filter 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.trending-products-top img:hover {
  filter: grayscale(0%) blur(2px) brightness(0.3);
}

.trending-products-bottom {
  position: relative;
  display: block;
  overflow: hidden;
}
.trending-products-bottom img {
  filter: blur(0) brightness(0.6);
  transition: filter 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.trending-products-bottom img:hover {
  filter: grayscale(0%) blur(2px) brightness(0.3);
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .text-overlay {
    font-size: 1rem;
  }
  .trending-products-bottom {
    height: 250px;
  }
}
@media (min-width: 561px) {
  .text-overlay {
    font-size: 1.5rem;
  }
  .trending-products-bottom {
    height: 400px;
  }
}
#novidades {
  background-color: #1a1a1a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
#novidades h3 {
  color: black !important;
}
#novidades span, #novidades p, #novidades h1, #novidades h2, #novidades h4, #novidades h4, #novidades h6 {
  color: white !important;
}

.container-newclothing {
  max-width: 1000px;
  padding: 0px;
}

.container-left-featured {
  max-width: 450px;
}
.container-left-featured img {
  max-width: 100%;
  justify-self: center;
  align-self: center;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.container-right-featured {
  max-width: 450px;
  margin-right: 20px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .container-newclothing {
    padding: 0px;
  }
  .container-newclothing .container-left-featured {
    margin: 0 auto;
    padding: 0px;
    text-align: center;
  }
  .container-newclothing .container-left-featured img {
    padding: 0px;
    margin-right: 0px;
  }
}
#contato {
  background-color: #1a1a1a;
}
#contato h3 {
  color: black !important;
}
#contato span, #contato p, #contato h1, #contato h2, #contato h4, #contato h4, #contato h6 {
  color: white !important;
}

.container-contact-banner {
  max-width: 1000px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0px;
}
.container-contact-banner img {
  width: 100%;
}

#store-carousel .carousel-item {
  position: relative;
}

.c-item-store {
  max-width: 1000px;
  max-height: 460px;
}

.c-img-store {
  align-items: center;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.container-contact {
  max-width: 1000px;
  padding-right: 0px;
}
.container-contact .container-left-contact {
  max-width: 450px;
  margin-left: 40px;
}
.container-contact .container-right-contact {
  max-width: 450px;
}
.container-contact .container-right-contact .embed-map {
  height: 355px;
  width: 470px;
  margin-left: 20px;
  margin-right: 20px;
  max-width: 100%;
}

#contact-social-links a {
  text-decoration: none;
  margin-right: 5px;
  transition: ease-in-out 0.2s;
}
#contact-social-links a svg {
  color: #ffffff;
  margin-right: 10px !important;
}
#contact-social-links a svg:hover {
  color: #fce9a7;
}

.container-contact-text {
  margin-right: 15px;
}

#info {
  background-color: #161616;
  border-bottom: 3px solid !important;
  border-color: #edd068 !important;
  color: #ffffff;
}

.follow-us-footer {
  color: #edd068;
}

#info-container {
  background-color: #161616;
  color: #ffffff;
  border-color: #161616;
}

#footer-foot-note {
  background-color: #161616;
  padding-bottom: 1rem;
}

.footer-menu1,
.footer-menu1 p,
.footer-menu1 a,
#footer-foot-note span {
  color: #ffffff !important;
}

#footer-info {
  text-align: center;
}
#footer-info p {
  color: #edd068;
}
#footer-info span {
  color: #ffffff;
}
#footer-info .store-brands img {
  height: auto;
  max-width: 60px;
  max-height: 80px;
  object-fit: contain;
  transition: ease-in-out 0.5s;
}
#footer-info .store-brands img:hover {
  transform: scale(1.05);
}

#footer-logo {
  max-height: 80px;
  transition: 0.5s ease-in-out;
}

#footer-logo:hover {
  transform: scale(1.05);
}

.text-reset {
  transition: ease-in-out 0.2s;
}
.text-reset:hover {
  color: #edd068 !important;
}

#footer-social-links a {
  text-decoration: none;
  margin-right: 5px;
  transition: ease-in-out 0.2s;
}
#footer-social-links a svg {
  color: #edd068;
  margin-left: 10px !important;
}
#footer-social-links a svg:hover {
  color: #fce9a7;
}

.contact-footer {
  vertical-align: center !important;
  align-items: center;
  align-content: center;
  color: #ffffff;
}

#footer-foot-note {
  color: #ffffff;
  display: flex;
  font-weight: bold;
  justify-content: space-around;
}

#footer-developed-by {
  font-weight: bold;
}

#footer-developed-by a {
  color: #fbfbfb;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}

#footer-developed-by a:hover {
  color: #2e86f3;
  text-decoration: underline;
}

body, html, h1, h2, h3, h4, h5, h6, p, span, a, li, ul {
  color: black;
}

/*# sourceMappingURL=style.css.map */
