/* body * { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { margin: 0; color: #7E6777; font-family: 'Museo Sans 500', sans-serif; background-color: #FAFAFA; line-height: 1.5; }
a { text-decoration: none; } */

@font-face {
  font-family: 'Museo Sans';
  src: url('museo-sans-500-webfont.woff2') format('woff2'),
       url('museo-sans-500-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('museo-sans-700-webfont.woff2') format('woff2'),
       url('museo-sans-700-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  caret-color: #6F064F;
  --spacing-gutter: 12px;
  font-size: 16px;

  --bs-gutter-x: var(--spacing-gutter);
  --color-text-common: #7E6777;
  --color-text-heading: #5C3751;
  --color-text-faded: #909090;
  --color-brand-main-purple: #6F064F;
  --color-brand-main-purple-pastel: #E3D2E6;
  --color-brand-main-orange: #F6AB7A;
  --color-brand-main-orange-pastel: #DECDAD;
  --color-brand-main-accent: #C20A8A;
  --color-brand-main-accent-var: #e32dad;
  scroll-padding: 128px;
}

a {
  text-decoration: none;
  color: var(--color-brand-main-accent);
  transition: color .2s ease-out;

  &:hover {
    color: var(--color-brand-main-accent-var);
  }

  &:has(*) {
    line-height: 0;
  }
}


/* li:has(*) { line-height: 0; } */

/* SELECTION BACKGROUND COLOR */
*::selection {
  background: #6F064F;
  color: #ffffff;
}
*::-moz-selection {
  background: #6F064F;
  color: #ffffff;
}
*::-webkit-selection {
  background: #6F064F;
  color: #ffffff;
}
address { font-style: normal; }

.container { max-width: 1140px; margin: 0 auto; padding-left: calc(var(--spacing-gutter)*2); padding-right: calc(var(--spacing-gutter)*2); }
.row { display: flex; flex-wrap: wrap; margin: 0 calc(var(--spacing-gutter) * -1); }

body {
  color: var(--color-text-common);
  font-family: "Museo Sans", sans-serif;
  background-color: #fafafa;

  main [class*="col"] { padding-left: var(--spacing-gutter); padding-right: var(--spacing-gutter); }
}


/* .col-12 { width: 100%; }
.col-7  { width: 58.333333%; }
.col-6  { width: 50%; }
.col-5  { width: 41.666666%; }
.col-4  { width: 33.333333%; }
.col-3  { width: 25%; } */

h1, .h1 {
  /* font-size: 3.5rem; */
  color: var(--color-text-heading);
  line-height: 1.4;
 }
h2, .h2 {
  /* font-size: 3rem; */
  color: var(--color-text-heading);
  line-height: 1.4;
}

h3, .h3 {
  /* font-size: 2.5rem; */
  color: var(--color-text-heading);
  line-height: 1.4;
}
h4, .h4 {
  /* font-size: 2rem; */
  color: var(--color-text-heading);
  line-height: 1.4;
}

h5, .h5 {
  /* font-size: 1.5rem; */
  color: var(--color-text-heading);
  line-height: 1.4;
}
h6, .h6 {
  /* font-size: 1rem; */
  color: var(--color-text-heading);
  line-height: 1.4;
}

.btn {
  font-size: 1rem;
  padding: 1em 1.25em;
  border-radius: .75rem;

  --bs-btn-color: #fff;
  --bs-btn-bg: var(--color-brand-main-accent);
  --bs-btn-border-color: var(--color-brand-main-accent);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--color-brand-main-accent-var);
  --bs-btn-hover-border-color: var(--color-brand-main-accent-var);
  --bs-btn-focus-shadow-rgb: 217, 16, 157;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--color-brand-main-accent-var);
  --bs-btn-active-border-color: var(--color-brand-main-accent);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--color-brand-main-accent);
  --bs-btn-disabled-border-color: var(--color-brand-main-accent);
}

/* .d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.justify-content-flex-end { justify-content: flex-end; }
.align-items-center { align-items: center; }
.align-content-center { align-content: center; } */

/* .text-align-right { text-align: right; }
.text-align-center { text-align: center; } */

/* Opinionated styles */
button.navbar-toggler {
  padding: 8px 6px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap:5px;

  border: none;
  &>div { height: 0.125em; width: 1.25rem; border-radius: 999px; background-color: var(--color-text-heading); }

  :nth-child(3) { width: 1em; }
}

nav.navbar {
  background-color: transparent;
  backdrop-filter: blur(8px);
  transition: background-color 0.2s ease-out;

  &.scrolled {
    background-color: rgba(255, 255, 255, 0.9);

    .container {
      &::after {
        opacity: 0;
      }
    }
  }


  .container {
    &::after {
      display: block;
      content: "";
      height: 1px;
      width: calc(100% - var(--spacing-gutter) * 4);
      position: absolute;
      bottom: 0;
      background: linear-gradient(to right, #F8E5EA, #EFD9E2);
      transition: opacity 0.2s ease-out;
    }
  }

  .divider-gradient {
    height: 1px;
    background: linear-gradient(to right, #F8E5EA, #EFD9E2);
    position: absolute;
    width: 1080px;
    margin-top: .5rem;

    transition: opacity 0.1s ease-out;

    &.scrolled {
      opacity: 0;
    }
  }
}

ul.navbar-nav {
  width: 100%;
  margin-top: 20px;
  padding: 1rem 2rem 1rem;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 6px 0 rgba(59, 59, 59, 0.1);

  a {
    &:current {
      color: var(--color-brand-main-accent);
    }
  }
}

.wrapper-heading-hero {
  display: flex;
  justify-content: center;
}

section.section-hero {
  overflow-x: clip;
  padding-top: 136px !important;

  h1 {
    position: relative;
    font-size: 2.25rem;
    line-height: 1.125;
    margin-left:  calc(var(--spacing-gutter)*-2) ;
    margin-right: calc(var(--spacing-gutter)*-2) ;
  }

  em {
    color: var(--color-brand-main-accent);
    font-weight: 700;
    font-style: normal;
  }

  p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }

  a {
    color: var(--color-brand-main-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    line-height: 1;
    font-size: 1.125rem;

    .wrapper-icon-arrow-down {
      overflow: hidden;
      /* max-height: 24px; */

      svg {
        max-width: none;
        max-height: none;
      }
    }
  }
}


.divider-gradient {
  height: 1px;
  background: linear-gradient(to right, #F8E5EA, #EFD9E2);
}

section.section-nossas-roupas {
  position: relative;
  padding-bottom: 8rem;
  z-index: 10;

  h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 3rem;
  }

  li a {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.25;

    span {
      display: block;
      font-size: 1.5em;

      &:not(.last) {
        line-height: 1.5em;
      }
    }

    div.h5 {
      margin-bottom: 0.75rem;
    }
  }

  ul {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */

    &::-webkit-scrollbar {
        display: none;  /* Safari and Chrome */
    }
  }

  .list-categories {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    padding-left: var(--bs-gutter-x);
    padding-right: var(--bs-gutter-x);
    margin-right: calc(var(--bs-gutter-x) * -1);
    margin-left: calc(var(--bs-gutter-x) * -1);
    margin-bottom: 3rem;
    gap: calc(var(--spacing-gutter) * 1.333333333);



    li {
      overflow: hidden;
      border-radius: 24px;
      position: relative;
      min-width: 260px;
      max-width: none;

      img {
        width: 100%;
        height: 100%;
      }

      div {
        max-width: 100%;
        position: absolute;
        bottom: 20px;
        left: 24px;
      }
    }
  }

  .list-fabric {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    padding-left: var(--bs-gutter-x);
    padding-right: var(--bs-gutter-x);
    text-align: center;
    margin-left: calc(var(--bs-gutter-x) * -1);
    margin-right: calc(var(--bs-gutter-x) * -1);
    gap: calc(var(--spacing-gutter) * 1.333333333);

    li {
      overflow: hidden;
      border-radius: 24px;
      position: relative;
      min-width: 150px;
      max-width: none;

      img {
        width: 100%;
        aspect-ratio:  1 / 12;
      }

      div {
        position: absolute;
        width: 100%;
        bottom: 20px;
      }
    }
  }
}
.img-hero-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.img-hero {
  max-width: none;
  margin-top: -93px;
  max-height: 492px;
  margin-bottom: 24px;
  width: auto;
}

nav.navbar {
  --bs-navbar-padding-y: 0rem;
}

.navbar-nav { display: flex; gap: 1rem; list-style-type: none; padding-left: 0; }



section.section-cta {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding-bottom: 6rem;
  z-index: 5;

  & :not(img) {
    position: relative;
    z-index: 5;
  }

  img {
    width: 304%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;

    display: none;
  }

  h2 {
    margin-bottom: 1.25rem;
  }

  p {
    margin-bottom: 2.5rem;
  }

  .bg-blur {
    position: absolute;
    margin-top: -420px;
    width: 900px;
    height: 900px;

    > * {
      position: absolute;
    }
  }

  svg {
    position: absolute;
    left: 70%;
    top: 50%;
    transform: translate(-50%, -65%);
  }
}

section.section-depoimentos {
  overflow-x: clip;
  text-align: center;
  position: relative;
  z-index: 1000;
  padding-bottom: 3rem;

  & h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .lista-depoimento {
    text-align: left;
    margin-bottom: 2rem;
  }

  .item-depoimento {
    margin-bottom: 2rem;
  }
}

section.section-perguntas-frequentes {
  padding-top: 48px;
  padding-bottom: 48px;

  h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  h3 {
    color: var(--color-text-faded);
    margin-bottom: 1rem;
  }

  ul {
    list-style-type: none;
    padding-left: 0;

    &[spaced] {
      margin-bottom: 4rem;
    }

    li {
      padding: 20px 24px;
      margin-bottom: 16px;
      background-color: #F4F0F3;
      border-radius: 12px;

      details.header-question-wrapper {
        display: flex !important;
        flex-direction: column;
        align-content: center;
        transition: all .2s ease-in-out;

        svg {
          transition: transform 0.2s ease-in-out;
          flex-shrink: 0;
        }

        summary::-webkit-details-marker { display:none; }
        &[open] {
          svg {
            transform: rotate3d(1, 0, 0, 180deg);
          }

          p {
            padding-top: 1rem;

            span {
              display: block;
              height: .5em;
            }
          }
        }

        summary.header-question {
          color: var(--color-text-heading);
          display: flex !important;
          justify-content: space-between;
          gap: 1rem;
      }
    }
  }
}
}

footer {
  background-color: #F7F0F1;
  padding-top: 48px;
  padding-bottom: 48px;

  ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    justify-content: end;
    gap: 16px;
    line-height: 0;
    margin-bottom: 0;

    li {
      padding: 8px;
      background-color: #FFFFFF;
      border-radius: 999px;

      svg {
        width: 16px;
        height: 16px;
      }
    }
  }

  .divider-gradient {
    margin-top: 40px;
    margin-bottom: 32px;
  }

  .legal {
    font-size: 12px;

    address {
      margin: 0;
    }
  }

}

.bg-blur {
  position: absolute;
  z-index: -9;
  filter: blur(600px);
  opacity: 0.2;
  width: 600px;
  height: 600px;

  > * {
    position: absolute;
  }

  :nth-child(1) {
    background-color: var(--color-brand-main-orange);
    width: 75%;
    height: 75%;
  }

  :nth-child(2) {
    background-color: var(--color-brand-main-purple-pastel);
    width: 50%;
    height: 50%;
    margin-left: 50%;
  }

  :nth-child(3) {
    background-color: var(--color-brand-main-orange-pastel);
    width: 50%;
    height: 50%;
    margin-top: 50%;
  }

  :nth-child(4) {
    background-color: var(--color-brand-main-purple);
    width: 50%;
    height: 50%;
    margin-top: 50%;
    margin-left: 50%;
  }
}

/* SM BREAKPOINT */
@media screen and (min-width: 576px) {

}

/* MD BREAKPOINT */
@media screen and (min-width: 768px) {

ul.navbar-nav {
  --bs-nav-link-color: var(--color-brand-main-accent);
  --bs-nav-link-hover-color: var(--color-brand-main-accent-var);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);

  margin-top: 0px;
  justify-content: end;
  background-color: transparent;
  box-shadow: none;
  padding: 0;

  a {
    &:current {
      color: var(--color-brand-main-accent);
    }
  }
}

section.section-hero {
  padding-top: 137px !important;

  p {
    margin-top: 0.75rem;
  }

  a {
    display: flex;
    flex-direction: row;

    .wrapper-icon-arrow-down {
      gap: 12px;
    }
  }

  h1 {
    position: relative;
    font-size: 4rem;
    line-height: 1.125;
    margin-left: unset;
    margin-right: unset;
  }

  .img-hero {
    margin-top: -178px;
    max-height: none;
    height: auto;
    width: 1145px;
  }

  .img-hero-container {
    .bg-blur {
      margin-top: -420px;
      width: 1200px;
      height: 1200px;
    }
  }
}

section.section-nossas-roupas {
  h2 {
    margin-top: 10rem;
  }

  .list-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    margin-left: 0;
    gap: calc(var(--spacing-gutter)* 1.333333333);
    overflow: visible;

      & li {
        flex-basis: 260px;

        &:nth-child(even) {
          transform: translateY(50px);
        }

      img {
          width: 100%;
          height: auto;
      }
    }
  }

  .col-list-fabric {
    margin-top: -22%;
  }

  .list-fabric {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
    text-align: unset;
    margin-left: 0;
    margin-right: 0;
    gap: calc(var(--spacing-gutter)* 1.333333333);

    li {
      text-align: center;
    }
  }
}

section.section-cta {
  h2 {
    font-size: 3rem;
    margin-bottom: 1.125rem;
  }

  p {
    font-size: 1.125rem;

    margin-left:  -12px;
    margin-right: -12px;
    margin-bottom: 2rem;
  }

}

section.section-perguntas-frequentes {
  ul[spaced] {
    margin-bottom: 0;
  }
}

}