* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color-primary: #fff;
  --color-font-details: #ff3900;
  --color-details-black: #000;
}

html,
body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color-primary);
  font-family: "Montserrat", sans-serif !important;
  font-size: 62.5% !important;
  height: auto;
}

::selection {
  background-color: #ff3900;
  color: black;
}

::-webkit-scrollbar {
  width: 0px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #fff;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.checkbox-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.ios-checkbox {
  --checkbox-size: 28px;
  --checkbox-color: #3b82f6;
  --checkbox-bg: #dbeafe;
  --checkbox-border: #93c5fd;

  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  &:hover .checkbox-wrapper {
    transform: scale(1.05);
  }
  & input {
    display: none;
    &:checked + .checkbox-wrapper .checkbox-bg {
      background: var(--checkbox-color);
      border-color: var(--checkbox-color);
    }
    &:checked + .checkbox-wrapper .checkbox-icon {
      transform: scale(1);
    }
    &:checked + .checkbox-wrapper .check-path {
      stroke-dashoffset: 0;
    }
    &:checked + .checkbox-wrapper {
      animation: bounce 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    &:active .checkbox-wrapper {
      transform: scale(0.95);
    }

    &:focus + .checkbox-wrapper .checkbox-bg {
      box-shadow: 0 0 0 4px var(--checkbox-bg);
    }
  }
}

.checkbox-wrapper {
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.checkbox-bg {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid var(--checkbox-border);
  background: white;
  transition: all 0.2s ease;
}

.checkbox-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  color: white;
  transform: scale(0);
  transition: all 0.2s ease;
}

.check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.3s ease 0.1s;
}

.ios-checkbox.red {
  --checkbox-color: #ff3900;
  --checkbox-bg: #fee2e2;
  --checkbox-border: #ef4444;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

main {
  margin-top: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 1100px) {
  main {
    margin-top: 10rem;
  }
}
@media (max-width: 900px) {
  main {
    margin-top: 8rem;
  }
}
@media (max-width: 500px) {
  main {
    margin-top: 4rem;
  }
}
@media (max-width: 300px) {
  main {
    margin-top: 2rem;
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0%);
  background-color: var(--bg-color-primary);
  backdrop-filter: blur(0.7rem);
  z-index: 9999;
  width: 100%;

  & .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100dvw !important;
    width: 90%;

    & nav {
      display: flex;
      align-items: center;
      column-gap: 72px;
      & .logoHeader {
        & h2 {
          font-size: 2.8rem;
          font-weight: 500;
        }
        & img {
          position: relative;
          width: 230px;
          z-index: 9999;
        }
      }
      & ul {
        display: flex;
        list-style: none;
        column-gap: 33px;
        z-index: 999;
        & li {
          font-size: 17px;
          font-weight: 500;
          color: #0c0c0c;
          padding: 4px 0;
          cursor: pointer;
          &:hover {
            color: var(--color-font-details);
            transition: 300ms ease;
          }
          & a {
            margin-bottom: 0.5rem;
            &:hover {
              border-bottom: 3px solid var(--color-font-details);
            }
          }
        }
      }
    }
    & #perfil {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 17px;
      z-index: 999;
      & ul {
        display: flex;
        list-style: none;
        column-gap: 33px;
        align-items: center;

        & li {
          font-size: 17px;
          font-weight: 500;
          color: #0c0c0c;
          padding: 4px 0;
          cursor: pointer;
          &:last-child {
            display: none;
          }
          &:hover {
            color: var(--color-font-details);
            transition: 300ms ease;
          }
          & img {
            width: 4.2rem;
            height: 4.2rem;
          }
          & a {
            margin-bottom: 0.5rem;
            &:hover {
              border-bottom: 3px solid var(--color-font-details);
            }
          }
          & .hamburger {
            all: unset;
            cursor: pointer;
            & input {
              display: none;
              &:checked + svg {
                transform: rotate(-45deg);
              }
              &:checked + svg .line-top-bottom {
                stroke-dasharray: 20 300;
                stroke-dashoffset: -32.42;
              }
            }
            & svg {
              height: 3em;
              transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
            }
          }

          & .line {
            fill: none;
            stroke: #0c0c0c;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2;
            transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
          }

          & .line-top-bottom {
            stroke-dasharray: 12 63;
          }
        }
      }
    }
  }
}

@media (max-width: 1100px) {
  header {
    padding: 20px 0px;
    & .nav {
      & nav {
        column-gap: 60px;
        & .logoHeader {
          & h2 {
            font-size: 2.2rem;
          }
          & img {
            width: 140px;
          }
        }
        & ul {
          column-gap: 25px;
          & li {
            font-size: 15px;
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
      & #perfil {
        column-gap: 15px;
        & ul {
          column-gap: 25px;
          & li {
            font-size: 15px;
            & img {
              width: 3.5rem;
              height: 3.5rem;
            }
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 900px) {
  header {
    padding: 20px 0px;
    & .nav {
      & nav {
        column-gap: 60px;
        & .logoHeader {
          & h2 {
            font-size: 2.2rem;
          }
          & img {
            width: 140px;
          }
        }
        & ul {
          column-gap: 25px;
          position: absolute;
          top: 0rem;
          transition: transform 0.6s ease;
          transform: translateX(-150%);
          flex-direction: column;
          background-color: #fff;
          height: 100dvh;
          row-gap: 0.5rem;
          align-items: baseline;
          justify-content: center;
          width: 40%;
          padding: 4rem;
          text-wrap: nowrap;
          box-shadow: 10px -3px 10px -10px #aaa;
          & li {
            font-size: 15px;
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
      & #perfil {
        column-gap: 15px;
        & ul {
          column-gap: 25px;
          transition: 400ms ease-in;
          & li {
            font-size: 15px;
            &:last-child {
              display: block !important;
            }
            & img {
              width: 3.5rem;
              height: 3.5rem;
            }
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 700px) {
  header {
    padding: 20px 0px;
    & .nav {
      & nav {
        column-gap: 60px;
        & .logoHeader {
          & img {
            width: 120px;
          }
        }
        & ul {
          column-gap: 25px;
          position: absolute;
          top: 0rem;
          transition: transform 0.6s ease;
          transform: translateX(-150%);
          flex-direction: column;
          background-color: #fff;
          height: 100dvh;
          row-gap: 0.4rem;
          align-items: baseline;
          justify-content: center;
          width: 40%;
          padding: 4rem;
          text-wrap: nowrap;
          z-index: 999;
          box-shadow: 10px -3px 10px -10px #aaa;
          & li {
            font-size: 14px;
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
      & #perfil {
        column-gap: 15px;
        & ul {
          column-gap: 25px;
          transition: 400ms ease-in;
          & li {
            font-size: 14px;
            & .hamburger {
              & svg {
                height: 4rem;
              }
            }
            &:last-child {
              display: block !important;
            }
            & img {
              width: 3rem;
              height: 3rem;
            }
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 500px) {
  header {
    padding: 7px 0px;
    & .nav {
      & nav {
        column-gap: 60px;
        & .logoHeader {
          & img {
            width: 110px;
          }
        }
        & ul {
          column-gap: 25px;
          position: absolute;
          top: 0rem;
          transition: transform 0.6s ease;
          transform: translateX(-150%);
          flex-direction: column;
          background-color: #fff;
          height: 100dvh;
          row-gap: 0.5rem;
          align-items: baseline;
          justify-content: center;
          width: 50%;
          padding: 3rem;
          text-wrap: nowrap;
          z-index: 999;
          box-shadow: 10px -3px 10px -10px #aaa;
          & li {
            font-size: 14px;
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
      & #perfil {
        column-gap: 15px;
        & ul {
          column-gap: 10px;
          transition: 400ms ease-in;
          & li {
            font-size: 14px;
            & .hamburger {
              & svg {
                height: 3rem;
              }
            }
            &:last-child {
              display: block !important;
            }
            & img {
              width: 2.5rem;
              height: 2.5rem;
            }
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 400px) {
  header {
    padding: 7px 0px;
    & .nav {
      & nav {
        column-gap: 60px;
        & .logoHeader {
          & img {
            width: 110px;
          }
        }
        & ul {
          column-gap: 25px;
          position: absolute;
          top: 0rem;
          transition: transform 0.6s ease;
          transform: translateX(-150%);
          flex-direction: column;
          background-color: #fff;
          height: 100dvh;
          row-gap: 0.5rem;
          align-items: baseline;
          justify-content: center;
          width: 50%;
          padding: 3rem;
          text-wrap: wrap;
          z-index: 999;
          box-shadow: 10px -3px 10px -10px #aaa;
          & li {
            font-size: 14px;
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
      & #perfil {
        column-gap: 15px;
        & ul {
          column-gap: 10px;
          transition: 400ms ease-in;
          & li {
            font-size: 14px;
            & .hamburger {
              & svg {
                height: 3rem;
              }
            }
            &:last-child {
              display: block !important;
            }
            & img {
              width: 2.5rem;
              height: 2.5rem;
            }
            & a {
              margin-bottom: 0.5rem;
            }
          }
        }
      }
    }
  }
}

#hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  height: auto;
  margin-top: 2rem;
  & .col1 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    & h1 {
      text-transform: uppercase;
      color: #0c0c0c;
      font-size: 102px;
      font-weight: 900;
      letter-spacing: -4.59px;
      line-height: 93.33px;
      margin: 0 0 20px;
    }
    & h3 {
      color: #2b2b2b;
      font-size: 28px;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 30px;
    }
    & .button-hero {
      display: flex;
      align-items: center;
      column-gap: 15px;
      & button {
        text-transform: uppercase;
        letter-spacing: normal;
        letter-spacing: normal;
        border: none;
        line-height: 1;
        font-size: 25px;
        padding: 20px 42px;
        border-radius: 45px;
        &:first-child {
          font-family: "Poppins", sans-serif;
          background-color: #ff3900;
          color: #fff;
          font-weight: 900;
          letter-spacing: -1px;
        }
        &:last-child {
          font-family: "Montserrat", sans-serif;
          border: 2px solid #ff3900;
          background-color: #fff;
          color: #ff3900;
          font-weight: 700;
        }
      }
    }
  }
  & .col2 {
    display: flex;
    position: relative;
    top: 5rem;
    z-index: 9999;
    & .box {
      transition: transform 0.1s linear;
      transform: translateY(-50px);
      width: 20rem;
      height: 50rem;
      z-index: 2000;
      margin-right: 7rem;
      & ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        position: relative;
        row-gap: 5.5rem;
        left: -28rem;
        top: -30rem;
        & li {
          transform: rotate(33.377deg);
          transform-origin: 50%;
          max-width: 420px;
          & .paralaxBoxMid {
            transform: rotate(300deg);
            transform-origin: 50%;
            max-width: 420px;
          }
          & img {
            object-fit: contain;
            width: 350px;
          }
        }
        & .detail {
          position: absolute;
          left: 32rem;
          top: 40%;

          & img {
            width: 107px;
            height: 37px;
          }
          & .detailTitle {
            margin-left: 5rem;
            margin-top: 2rem;
            & h2 {
              font-size: 27px;
              font-weight: 900;
              margin-bottom: 10px;
            }
            & p {
              text-wrap: nowrap;
              font-size: 15px;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 1350px) {
  #hero {
    flex-direction: column-reverse;
    & .col1 {
      align-items: center;
      & h1 {
        text-align: center;
      }
    }
    & .col2 {
      & .box {
        & ul {
          left: -15rem !important;
        }
      }
    }
  }
}
@media (max-width: 1100px) {
  #hero {
    width: 90%;
    & .col1 {
      & h1 {
        font-size: 90px;
        letter-spacing: -4.59px;
        line-height: 93.33px;
        margin: 0 0 20px;
      }
      & h3 {
        font-size: 24px;
        margin-bottom: 30px;
      }
      & .button-hero {
        column-gap: 15px;
        & button {
          font-size: 2rem;
          padding: 1.6rem 3.6rem;
          border-radius: 40px;
          &:first-child {
            letter-spacing: -1px;
          }
          &:last-child {
          }
        }
      }
    }
    & .col2 {
      top: 5rem;
      & .box {
        width: 18rem;
        height: 45rem;
        margin-right: 7rem;
        & ul {
          row-gap: 5.5rem;
          left: -28rem;
          top: -30rem;
          & li {
            transform-origin: 50%;
            max-width: 400px;
            & .paralaxBoxMid {
              transform-origin: 50%;
              max-width: 400px;
            }
            & img {
              width: 350px;
            }
          }
          & .detail {
            left: 32rem;
            top: 40%;

            & img {
              width: 90px;
              height: 30px;
            }
            & .detailTitle {
              margin-left: 5rem;
              margin-top: 2rem;
              & h2 {
                font-size: 25px;
                margin-bottom: 10px;
              }
              & p {
                font-size: 14px;
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 900px) {
  #hero {
    width: 90%;
    & .col1 {
      & h1 {
        font-size: 70px;
        letter-spacing: -4.59px;
        line-height: 60.33px;
        margin: 0 0 20px;
      }
      & h3 {
        font-size: 2rem;
        margin-bottom: 30px;
      }
      & .button-hero {
        column-gap: 15px;
        & button {
          font-size: 1.8rem;
          padding: 1.4rem 3.2rem;
          border-radius: 35px;
          &:first-child {
            letter-spacing: -1px;
          }
          &:last-child {
          }
        }
      }
    }
    & .col2 {
      top: 12rem;
      & .box {
        width: 16rem;
        height: 40rem;
        margin-right: 7rem;
        & ul {
          row-gap: 5.5rem;
          left: -28rem;
          top: -30rem;
          & li {
            transform-origin: 50%;
            max-width: 350px;
            & .paralaxBoxMid {
              transform-origin: 50%;
              max-width: 350px;
            }
            & img {
              width: 300px;
            }
          }
          & .detail {
            left: 27rem;
            top: 40%;

            & img {
              width: 80px;
              height: 25px;
            }
            & .detailTitle {
              margin-left: 5rem;
              margin-top: 2rem;
              & h2 {
                font-size: 22px;
                margin-bottom: 10px;
              }
              & p {
                font-size: 14px;
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 700px) {
  #hero {
    width: 90%;
    row-gap: 5rem;
    & .col1 {
      & h1 {
        font-size: 60px;
        letter-spacing: -4.59px;
        line-height: 60.33px;
        margin: 0 0 20px;
      }
      & h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
      }
      & .button-hero {
        column-gap: 15px;
        & button {
          font-size: 1.6rem;
          padding: 1.2rem 3rem;
          border-radius: 30px;
          &:first-child {
            letter-spacing: -1px;
          }
          &:last-child {
          }
        }
      }
    }
    & .col2 {
      top: 12rem;
      & .box {
        width: 14rem;
        height: 36rem;
        margin-right: 7rem;
        & ul {
          row-gap: 5.5rem;
          left: -11rem !important;
          top: -22rem;
          & li {
            transform-origin: 50%;
            max-width: 300px;
            & .paralaxBoxMid {
              transform-origin: 50%;
              max-width: 300px;
            }
            & img {
              width: 250px;
            }
          }
          & .detail {
            left: 22rem;
            top: 40%;

            & img {
              width: 70px;
              height: 20px;
            }
            & .detailTitle {
              margin-left: 2rem;
              margin-top: 2rem;
              & h2 {
                font-size: 18px;
                margin-bottom: 10px;
              }
              & p {
                font-size: 12px;
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 500px) {
  #hero {
    width: 90%;
    row-gap: 5rem;
    & .col1 {
      & h1 {
        font-size: 50px;
        letter-spacing: -4.59px;
        line-height: 60.33px;
        margin: 0 0 20px;
      }
      & h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
      }
      & .button-hero {
        column-gap: 15px;
        & button {
          font-size: 1.4rem;
          padding: 1.2rem 3rem;
          border-radius: 30px;
          &:first-child {
            letter-spacing: -1px;
          }
          &:last-child {
          }
        }
      }
    }
    & .col2 {
      top: 12rem;
      & .box {
        width: 14rem;
        height: 36rem;
        margin-right: 7rem;
        & ul {
          row-gap: 2.5rem;
          left: -6rem !important;
          top: -11rem;
          & li {
            transform-origin: 50%;
            max-width: 150px;
            & .paralaxBoxMid {
              transform-origin: 50%;
              max-width: 150px;
            }
            & img {
              width: 150px;
            }
          }
          & .detail {
            left: 15rem;
            top: 40%;

            & img {
              width: 50px;
              height: 20px;
            }
            & .detailTitle {
              margin-left: 0rem;
              margin-top: 0rem;
              & h2 {
                font-size: 14px;
                margin-bottom: 10px;
              }
              & p {
                font-size: 11px;
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 350px) {
  #hero {
    width: 90%;
    row-gap: 5rem;
    & .col1 {
      & h1 {
        font-size: 40px;
        letter-spacing: -4.59px;
        line-height: 32.33px;
        margin: 0 0 20px;
      }
      & h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }
      & .button-hero {
        column-gap: 15px;
        & button {
          font-size: 1.2rem;
          padding: 1rem 2.5rem;
          border-radius: 30px;
          &:first-child {
            letter-spacing: -1px;
          }
          &:last-child {
          }
        }
      }
    }
    & .col2 {
      top: 18rem;
      & .box {
        width: 12rem;
        height: 34rem;
        margin-right: 7rem;
        & ul {
          row-gap: 2.5rem;
          left: -4rem !important;
          top: -11rem;
          & li {
            transform-origin: 50%;
            max-width: 100px;
            & .paralaxBoxMid {
              transform-origin: 50%;
              max-width: 100px;
            }
            & img {
              width: 100px;
            }
          }
          & .detail {
            left: 10rem;
            top: 40%;

            & img {
              width: 40px;
              object-fit: contain;
            }
            & .detailTitle {
              margin-left: 0rem;
              margin-top: 0rem;
              & h2 {
                font-size: 12px;
                margin-bottom: 10px;
              }
              & p {
                font-size: 10px;
              }
            }
          }
        }
      }
    }
  }
}

#escolhas {
  display: flex;
  flex-direction: column;
  margin: 10rem 0 5rem 0;
  & .totalPedido {
    display: flex;
    width: 100%;
    column-gap: 2rem;
    justify-content: center;
    & #redirectPay {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.8rem 2.2rem;
      column-gap: 0.8rem;
      letter-spacing: -1px;
      background-color: #b3b3b3;
      border: 2px solid #b3b3b3;
      width: max-content;
      color: var(--bg-color-primary) !important;
      border-radius: 5rem;
      font-size: 2rem;
      font-weight: 600;
      font-family: "Montserrat", sans-serif;
      & .total {
      }
      & .detalhes {
      }
    }
    & #enviarCarrinho {
      background-color: #0c0c0c;
      font-size: 2rem;
      color: #fff;
      font-weight: 900;
      font-family: "Montserrat", sans-serif;
      padding: 1.8rem 2.2rem;
      border: 2px solid #0c0c0c;
      border-radius: 5rem;
      cursor: pointer;
    }
  }
  & .headerSabor {
    display: flex;
    align-items: center;
    flex-direction: column;
    & h2 {
      color: #0c0c0c;
      font-size: 60px;
      font-weight: 900;
      letter-spacing: -3.9px;
      line-height: 86.5%;
      margin: 0 0 23px;
      text-transform: uppercase;
    }
    & p {
      font-size: 18px; /* 1.8rem = 18px */
      font-weight: 700;
    }
  }
  & .escolhasBody {
    display: grid;
    grid-template-columns: repeat(3, 32rem);
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    padding: 8rem 0;
    & .boxCookie {
      width: 32rem;
      height: 38rem;
      border-radius: 2.5rem;
      position: relative;
      border: 1px solid #ddd;
      box-shadow: 0px 0px 4px 1px #ddd;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: baseline;
      justify-content: space-between;
      & .header {
        display: flex;
        align-items: baseline;
        justify-content: end;
        height: 15rem;
        & img {
          width: 24rem;
          object-fit: contain;
          position: absolute;
          top: -4rem;
          left: -5rem;
          filter: drop-shadow(5px 5px 6px rgba(45, 45, 45, 0.336));
        }
        & .boxAvaliation {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          position: absolute;
          right: 2rem;
          top: 5rem;
          display: flex;
          justify-content: center;
          align-items: center;
          column-gap: 0.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          background-color: #ff3900;
          color: #fff;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          & i {
            font-size: 2.5rem;
            color: #fff;
          }
          & .avaliation {
            font-size: 1.8rem;
            font-weight: 500;
            color: #fff;
          }
        }
      }
      & .valor {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        & .buttons {
          display: flex;
          align-items: center;
          justify-content: space-between;
          column-gap: 1.5rem;
          & button {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            background-color: transparent;
            border: 2px solid #aaa;
            width: 3.5rem;
            height: 2.5rem;
            cursor: pointer;
            & i {
              font-size: 2.4rem;
              cursor: pointer;
              transition: 300ms ease;
              &:hover {
                color: var(--color-font-details);
              }
            }
          }
          & .valorProduto {
            font-size: 1.6rem;
          }
        }
        & #value {
          font-size: 1.8rem;
          font-weight: 600;
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & i {
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .valor {
          display: flex;
          column-gap: 15px; /* 1.5rem = 15px */
          align-items: center;

          & .preco {
            font-size: 28px; /* 2.8rem = 28px */
            font-weight: 500;
            color: var(--color-font-details);
          }
          & button {
            padding: 0px 5px; /* 0rem 0.5rem = 0px 5px */
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 6px; /* 0.6rem = 6px */
            border-radius: 30px; /* 3rem = 30px */
            font-size: 18px; /* 1.8rem = 18px */
            background-color: transparent;
            border: 2px solid #aaa;
            transition: 200ms ease;
            & svg {
              cursor: pointer;
              &:hover {
                fill: var(--color-font-details);
              }
            }
          }

          & .valores {
            font-size: 18px; /* 1.8rem = 18px */
          }
        }
      }
      & .title {
        & h3 {
          font-size: 2rem;
          text-transform: uppercase;
          font-weight: 900;
          letter-spacing: -2px;
          height: 4rem;
        }
        & p {
          font-size: 1.6rem;
        }
      }
      & .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        & .add {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          background-color: #ff3900;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          cursor: pointer;
          & p {
            font-size: 1.8rem;
            font-weight: 600;
            color: #fff;
          }
          & svg {
            fill: #fff;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .price {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & svg {
            fill: #0c0c0c;
            width: 2.8rem;
            height: 2.8rem;
          }
        }

        & .valuePromotion {
          font-size: 1.8rem;
          font-weight: 600;
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & svg {
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .promotionCard {
          display: flex;
          align-items: center;
          justify-content: center;
          row-gap: 0.5rem;
          flex-direction: column;
          position: relative;
        }
        & .valueBefore {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          background-color: #ff3900;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          color: #fff;
          position: absolute;
          bottom: -5rem;
          rotate: 350deg;
          color: #fff;
          & svg {
            fill: #fff;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .promotion {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          background-color: #0c0c0c;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          color: #fff;
          & svg {
            fill: #fff;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .promotionDiv {
          display: flex;
          justify-content: center;
          align-items: center;
          column-gap: 1rem;
          position: absolute;
          right: -1rem;
          top: -2rem;
          & p {
            font-size: 1.8rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -2px;
            font-weight: 900;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            background-color: #0c0c0c;
            box-shadow: 3px 4px 5px 0px #ddd;
            rotate: 350deg;
          }
        }
      }
    }
  }

  & .total {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* 1.5rem = 15px */
    letter-spacing: -1px;
    background-color: #b3b3b3;
    width: max-content;
    color: var(--bg-color-primary);
    border-radius: 50px; /* 5rem = 50px */
    align-self: center;
    & a {
      font-size: 28px; /* 2.8rem = 28px */
      font-weight: 900;
    }
  }
}

@media (max-width: 1150px) {
  #escolhas {
    margin-bottom: 5rem;
    & .totalPedido {
      column-gap: 2rem;
      & #redirectPay {
        padding: 1.8rem 2.2rem;
        column-gap: 0.8rem;
        letter-spacing: -1px;
        border-radius: 5rem;
        font-size: 1.8rem;
        & .total {
        }
        & .detalhes {
        }
      }
      & #enviarCarrinho {
        font-size: 1.8rem;
        padding: 1.8rem 2.2rem;
        border-radius: 5rem;
      }
    }
    & .headerSabor {
      & h2 {
        font-size: 40px;
        letter-spacing: -3.9px;
        line-height: 86.5%;
        margin: 0 0 23px;
      }
      & p {
        font-size: 16px;
      }
    }
    & .escolhasBody {
      padding: 8rem 0;
      grid-template-columns: repeat(3, 25rem);
      gap: 5rem;
      & .boxCookie {
        width: 25rem;
        height: 35rem;
        border-radius: 2.5rem;
        padding: 2rem;
        & .header {
          height: 12rem;
          & img {
            width: 20rem;
            top: -4rem;
            left: -5rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & i {
              font-size: 2.2rem;
            }
            & .avaliation {
              font-size: 1.6rem;
            }
          }
        }
        & .valor {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              border-radius: 30px;
              width: 3.5rem;
              height: 2.5rem;
              & i {
                font-size: 2.2rem;
              }
            }
            & .valorProduto {
              font-size: 1.4rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & i {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 24px;
            }
            & button {
              padding: 0px 5px;
              column-gap: 6px;
              border-radius: 30px;
              font-size: 16px;
              & svg {
              }
            }
            & .valores {
              font-size: 16px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.8rem;
            letter-spacing: -2px;
            height: 4rem;
          }
          & p {
            font-size: 1.4rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & p {
              font-size: 1.6rem;
            }
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valuePromotion {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            bottom: -5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotion {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            right: -1rem;
            top: -2rem;
            & p {
              font-size: 1.6rem;
              letter-spacing: -2px;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
            }
          }
        }
      }
    }
    & .total {
      padding: 15px;
      letter-spacing: -1px;
      border-radius: 50px;
      & a {
        font-size: 24px;
      }
    }
  }
}
@media (max-width: 950px) {
  #escolhas {
    margin-bottom: 5rem;
    & .totalPedido {
      column-gap: 2rem;
      & #redirectPay {
        padding: 1.8rem 2.2rem;
        column-gap: 0.8rem;
        letter-spacing: -1px;
        border-radius: 5rem;
        font-size: 1.8rem;
        & .total {
        }
        & .detalhes {
        }
      }
      & #enviarCarrinho {
        font-size: 1.8rem;
        padding: 1.8rem 2.2rem;
        border-radius: 5rem;
      }
    }
    & .headerSabor {
      & h2 {
        font-size: 40px;
        letter-spacing: -3.9px;
        line-height: 86.5%;
        margin: 0 0 23px;
        text-align: center;
      }
      & p {
        font-size: 16px;
        text-align: center;
      }
    }
    & .escolhasBody {
      padding: 8rem 0;
      grid-template-columns: repeat(2, 25rem);
      justify-content: center;
      gap: 5rem;
      & .boxCookie {
        width: 25rem;
        height: 35rem;
        border-radius: 2.5rem;
        padding: 2rem;
        & .header {
          height: 12rem;
          & img {
            width: 20rem;
            top: -4rem;
            left: -5rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & i {
              font-size: 2.2rem;
            }
            & .avaliation {
              font-size: 1.6rem;
            }
          }
        }
        & .valor {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              border-radius: 30px;
              width: 3.5rem;
              height: 2.5rem;
              & i {
                font-size: 2.2rem;
              }
            }
            & .valorProduto {
              font-size: 1.4rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & i {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 24px;
            }
            & button {
              padding: 0px 5px;
              column-gap: 6px;
              border-radius: 30px;
              font-size: 16px;
              & svg {
              }
            }
            & .valores {
              font-size: 16px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.8rem;
            letter-spacing: -2px;
            height: 4rem;
          }
          & p {
            font-size: 1.4rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & p {
              font-size: 1.6rem;
            }
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valuePromotion {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            bottom: -5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotion {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            right: -1rem;
            top: -2rem;
            & p {
              font-size: 1.6rem;
              letter-spacing: -2px;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
            }
          }
        }
      }
    }
    & .total {
      padding: 15px;
      letter-spacing: -1px;
      border-radius: 50px;
      & a {
        font-size: 24px;
      }
    }
  }
}
@media (max-width: 750px) {
  #escolhas {
    margin-bottom: 5rem;
    & .totalPedido {
      column-gap: 2rem;
      & #redirectPay {
        padding: 1.8rem 2.2rem;
        column-gap: 0.8rem;
        letter-spacing: -1px;
        border-radius: 5rem;
        font-size: 1.8rem;
        & .total {
        }
        & .detalhes {
        }
      }
      & #enviarCarrinho {
        font-size: 1.8rem;
        padding: 1.8rem 2.2rem;
        border-radius: 5rem;
      }
    }
    & .headerSabor {
      & h2 {
        font-size: 40px;
        letter-spacing: -3.9px;
        line-height: 86.5%;
        margin: 0 0 23px;
      }
      & p {
        font-size: 16px;
      }
    }
    & .escolhasBody {
      padding: 8rem 0;
      grid-template-columns: repeat(2, 25rem);
      gap: 5rem;
      & .boxCookie {
        width: 25rem;
        height: 35rem;
        border-radius: 2.5rem;
        padding: 2rem;
        & .header {
          height: 12rem;
          & img {
            width: 20rem;
            top: -4rem;
            left: -5rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & i {
              font-size: 2.2rem;
            }
            & .avaliation {
              font-size: 1.6rem;
            }
          }
        }
        & .valor {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              border-radius: 30px;
              width: 3.5rem;
              height: 2.5rem;
              & i {
                font-size: 2.2rem;
              }
            }
            & .valorProduto {
              font-size: 1.4rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & i {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 24px;
            }
            & button {
              padding: 0px 5px;
              column-gap: 6px;
              border-radius: 30px;
              font-size: 16px;
              & svg {
              }
            }
            & .valores {
              font-size: 16px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.8rem;
            letter-spacing: -2px;
            height: 4rem;
          }
          & p {
            font-size: 1.4rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & p {
              font-size: 1.6rem;
            }
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valuePromotion {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            bottom: -5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotion {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            right: -1rem;
            top: -2rem;
            & p {
              font-size: 1.6rem;
              letter-spacing: -2px;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
            }
          }
        }
      }
    }
    & .total {
      padding: 15px;
      letter-spacing: -1px;
      border-radius: 50px;
      & a {
        font-size: 24px;
      }
    }
  }
}
@media (max-width: 650px) {
  #escolhas {
    margin-bottom: 5rem;
    & .totalPedido {
      column-gap: 2rem;
      & #redirectPay {
        padding: 1.8rem 2.2rem;
        column-gap: 0.8rem;
        letter-spacing: -1px;
        border-radius: 5rem;
        font-size: 1.6rem;
        & .total {
        }
        & .detalhes {
        }
      }
      & #enviarCarrinho {
        font-size: 1.4rem;
        padding: 1.8rem 2.2rem;
        border-radius: 5rem;
      }
    }
    & .headerSabor {
      & h2 {
        font-size: 30px;
        letter-spacing: -3.9px;
        line-height: 86.5%;
        margin: 0 0 23px;
      }
      & p {
        font-size: 14px;
      }
    }
    & .escolhasBody {
      padding: 8rem 0;
      grid-template-columns: repeat(2, 20rem);
      gap: 3rem;
      & .boxCookie {
        width: 20rem;
        height: 35rem;
        border-radius: 2.5rem;
        padding: 2rem;
        & .header {
          height: 10rem;
          & img {
            width: 14rem;
            top: -2rem;
            left: -3rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & i {
              font-size: 1.8rem;
            }
            & .avaliation {
              font-size: 1.4rem;
            }
          }
        }
        & .valor {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              border-radius: 30px;
              width: 3rem;
              height: 2.5rem;
              & i {
                font-size: 1.8rem;
              }
            }
            & .valorProduto {
              font-size: 1.2rem;
            }
          }
          & #value {
            font-size: 1.4rem;
            column-gap: 0.5rem;
            & i {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 2rem;
            }
            & button {
              padding: 0px 5px;
              column-gap: 6px;
              border-radius: 30px;
              font-size: 14px;
              & svg {
              }
            }
            & .valores {
              font-size: 14px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.6rem;
            letter-spacing: -2px;
            height: 4rem;
          }
          & p {
            font-size: 1.2rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & p {
              font-size: 1.4rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valuePromotion {
            font-size: 1.4rem;
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            bottom: -5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotion {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            right: -1rem;
            top: -2rem;
            & p {
              font-size: 1.4rem;
              letter-spacing: -2px;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
            }
          }
        }
      }
    }
    & .total {
      padding: 15px;
      letter-spacing: -1px;
      border-radius: 50px;
      & a {
        font-size: 2rem;
      }
    }
  }
}
@media (max-width: 500px) {
  #escolhas {
    margin-bottom: 5rem;
    & .totalPedido {
      column-gap: 2rem;
      & #redirectPay {
        padding: 1.8rem 2.2rem;
        column-gap: 0.8rem;
        letter-spacing: -1px;
        border-radius: 5rem;
        font-size: 1.4rem;
        & .total {
        }
        & .detalhes {
        }
      }
      & #enviarCarrinho {
        font-size: 1.2rem;
        padding: 1.8rem 2.2rem;
        border-radius: 5rem;
      }
    }
    & .headerSabor {
      & h2 {
        font-size: 2.4;
        letter-spacing: -3.9px;
        line-height: 86.5%;
        margin: 0 0 23px;
      }
      & p {
        font-size: 1.2rem;
      }
    }
    & .escolhasBody {
      padding: 8rem 0;
      grid-template-columns: repeat(2, 15rem);
      gap: 3rem;
      & .boxCookie {
        width: 15rem;
        height: 25rem;
        border-radius: 2.5rem;
        padding: 1rem;
        & .header {
          height: 8rem;
          & img {
            width: 10rem;
            top: -2rem;
            left: -3rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 1.5rem;
            & i {
              font-size: 1.6rem;
            }
            & .avaliation {
              font-size: 1.2rem;
            }
          }
        }
        & .valor {
          & .buttons {
            column-gap: 0.5rem;
            & button {
              border-radius: 30px;
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 1.6rem;
              }
            }
            & .valorProduto {
              font-size: 1.1rem;
            }
          }
          & #value {
            font-size: 1.2rem;
            column-gap: 0.5rem;
            & i {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 1.8rem;
            }
            & button {
              padding: 0px 5px;
              column-gap: 6px;
              border-radius: 30px;
              font-size: 12px;
              & svg {
              }
            }
            & .valores {
              font-size: 12px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.6rem;
            letter-spacing: -2px;
            height: 4rem;
          }
          & p {
            font-size: 1.1rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & p {
              font-size: 1.2rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valuePromotion {
            font-size: 1.2rem;
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            bottom: -5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotion {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            right: -1rem;
            top: -2rem;
            & p {
              font-size: 1.2rem;
              letter-spacing: -2px;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
            }
          }
        }
      }
    }
    & .total {
      padding: 15px;
      letter-spacing: -1px;
      border-radius: 50px;
      & a {
        font-size: 1.8rem;
      }
    }
  }
}
@media (max-width: 400px) {
  #escolhas {
    margin-bottom: 5rem;
    & .totalPedido {
      column-gap: 2rem;
      & #redirectPay {
        padding: 1rem 1.4rem;
        column-gap: 0.5rem;
        letter-spacing: -1px;
        border-radius: 5rem;
        font-size: 1.2rem;
        & .total {
        }
        & .detalhes {
        }
      }
      & #enviarCarrinho {
        font-size: 1.2rem;
        padding: 1.8rem 2.2rem;
        border-radius: 5rem;
      }
    }
    & .headerSabor {
      & h2 {
        font-size: 2.4;
        letter-spacing: -3.9px;
        line-height: 86.5%;
        margin: 0 0 23px;
      }
      & p {
        font-size: 1.2rem;
      }
    }
    & .escolhasBody {
      padding: 8rem 0;
      grid-template-columns: repeat(1, 15rem);
      gap: 3rem;
      & .boxCookie {
        width: 15rem;
        height: 25rem;
        border-radius: 2.5rem;
        padding: 1rem;
        & .header {
          height: 8rem;
          & img {
            width: 10rem;
            top: -2rem;
            left: -3rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 1.5rem;
            & i {
              font-size: 1.6rem;
            }
            & .avaliation {
              font-size: 1.2rem;
            }
          }
        }
        & .valor {
          & .buttons {
            column-gap: 0.5rem;
            & button {
              border-radius: 30px;
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 1.6rem;
              }
            }
            & .valorProduto {
              font-size: 1.1rem;
            }
          }
          & #value {
            font-size: 1.2rem;
            column-gap: 0.5rem;
            & i {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 1.8rem;
            }
            & button {
              padding: 0px 5px;
              column-gap: 6px;
              border-radius: 30px;
              font-size: 12px;
              & svg {
              }
            }
            & .valores {
              font-size: 12px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.6rem;
            letter-spacing: -2px;
            height: 4rem;
          }
          & p {
            font-size: 1.1rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & p {
              font-size: 1.2rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valuePromotion {
            font-size: 1.2rem;
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            bottom: -5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotion {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            right: -1rem;
            top: -2rem;
            & p {
              font-size: 1.2rem;
              letter-spacing: -2px;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
            }
          }
        }
      }
    }
    & .total {
      padding: 15px;
      letter-spacing: -1px;
      border-radius: 50px;
      & a {
        font-size: 1.8rem;
      }
    }
  }
}

footer {
  background-color: var(--color-details-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 60px;
  row-gap: 2rem;
  margin-top: 6rem;

  & .logoFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    width: 100%;
    object-fit: contain;
    & img {
      width: 25rem;
    }
  }
  & ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2.5rem;
    & li {
      & a {
        font-size: 1.8rem;
        color: #fff !important;
        transition: 300ms ease;
        &:hover {
          color: var(--color-font-details) !important;
        }
      }
    }
  }
  & .redesFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 2.5rem;
    & i {
      color: var(--bg-color-primary);
      font-size: 24px;
      transition: 300ms ease;
      &:hover {
        color: var(--color-font-details);
      }
    }
  }
  & .desc {
    width: 35rem;
    & p {
      color: #fff;
      font-size: 1.5rem;
      text-align: center;
    }
  }
}

@media (max-width: 1100px) {
  footer {
    width: 100%;
    padding: 40px 60px;
    row-gap: 2rem;

    & .logoFooter {
      row-gap: 30px;
      width: 100%;
      & img {
        width: 16rem;
      }
    }
    & .redesFooter {
      column-gap: 2.3rem;
      & i {
        font-size: 22px;
      }
    }
    & .desc {
      width: 35rem;
      & p {
        font-size: 1.4rem;
      }
    }
  }
}
@media (max-width: 900px) {
  footer {
    width: 100%;
    padding: 40px 60px;
    row-gap: 2rem;

    & .logoFooter {
      row-gap: 30px;
      & img {
        width: 15rem;
      }
    }
    & .redesFooter {
      column-gap: 2rem;
      & i {
        font-size: 19px;
      }
    }
    & .desc {
      width: 30rem;
      & p {
        font-size: 1.3rem;
      }
    }
  }
}
@media (max-width: 700px) {
  footer {
    width: 100%;
    padding: 40px 60px;
    row-gap: 2rem;

    & .logoFooter {
      row-gap: 30px;
      & img {
        width: 12rem;
      }
    }
    & .redesFooter {
      column-gap: 1.5rem;
      & i {
        font-size: 16px;
      }
    }
    & .desc {
      width: 25rem;
      & p {
        font-size: 1.1rem;
      }
    }
  }
}
@media (max-width: 500px) {
  footer {
    width: 100%;
    padding: 40px 60px;
    row-gap: 2rem;

    & .logoFooter {
      row-gap: 30px;
      & img {
        width: 13rem;
      }
    }
    & .redesFooter {
      column-gap: 2rem;
      & i {
        font-size: 17px;
      }
    }
    & .desc {
      width: 25rem;
      & p {
        font-size: 1.2rem;
      }
    }
  }
}
@media (max-width: 300px) {
  footer {
    width: 100%;
    padding: 40px 60px;
    row-gap: 2rem;

    & .logoFooter {
      row-gap: 30px;
      & img {
        width: 10rem;
      }
    }
    & .redesFooter {
      column-gap: 2rem;
      & i {
        font-size: 15px;
      }
    }
    & .desc {
      width: 20rem;
      & p {
        font-size: 1rem;
      }
    }
  }
}

#about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 5rem;
  height: 100vh !important;
  & .headerAbout {
    & img {
      width: 18rem;
      object-fit: contain;
    }
  }
  & .descriptionAbout {
    width: 80rem;
    & p {
      font-size: 1.8rem;
      text-align: center;
    }
  }
}

@media (max-width: 1100px) {
  #about {
    row-gap: 5rem;
    & .headerAbout {
      & img {
        width: 17rem;
      }
    }
    & .descriptionAbout {
      width: 70rem;
      & p {
        font-size: 1.7rem;
      }
    }
  }
}
@media (max-width: 900px) {
  #about {
    row-gap: 4rem;
    & .headerAbout {
      & img {
        width: 16rem;
      }
    }
    & .descriptionAbout {
      width: 60rem;
      & p {
        font-size: 1.6rem;
      }
    }
  }
}
@media (max-width: 700px) {
  #about {
    row-gap: 4rem;
    & .headerAbout {
      & img {
        width: 14rem;
      }
    }
    & .descriptionAbout {
      width: 40rem;
      & p {
        font-size: 1.4rem;
      }
    }
  }
}
@media (max-width: 500px) {
  #about {
    row-gap: 4rem;
    & .headerAbout {
      & img {
        width: 12rem;
      }
    }
    & .descriptionAbout {
      width: 25rem;
      & p {
        font-size: 1.2rem;
      }
    }
  }
}
@media (max-width: 300px) {
  #about {
    row-gap: 3rem;
    & .headerAbout {
      & img {
        width: 10rem;
      }
    }
    & .descriptionAbout {
      width: 20rem;
      & p {
        font-size: 1.1rem;
      }
    }
  }
}

#pagar {
  height: 100vh;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 12rem;
  & h1 {
    font-size: 60px;
    align-self: baseline;
    font-weight: 800;
    letter-spacing: -1.5px;
  }
  & .containerPedido {
    display: grid;
    grid-template-columns: repeat(3, 32rem);
    margin: 5rem 0rem;
    width: 100%;
    justify-content: space-between;

    & .boxCookie {
      width: 32rem;
      height: 38rem;
      border-radius: 2.5rem;
      position: relative;
      border: 1px solid #ddd;
      box-shadow: 0px 0px 4px 1px #ddd;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: baseline;
      justify-content: space-between;
      & .header {
        display: flex;
        align-items: baseline;
        justify-content: end;
        height: 15rem;
        & img {
          width: 24rem;
          object-fit: contain;
          position: absolute;
          top: -4rem;
          left: -5rem;
          filter: drop-shadow(5px 5px 6px rgba(45, 45, 45, 0.336));
        }
        & .checkProd {
          position: absolute;
          right: 2rem;
        }
      }
      & .valor {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        & .buttons {
          display: flex;
          align-items: center;
          justify-content: space-between;
          column-gap: 1.5rem;
          & button {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            background-color: transparent;
            border: 2px solid #aaa;
            width: 3.5rem;
            height: 2.5rem;
            cursor: pointer;
            & i {
              font-size: 2.4rem;
              cursor: pointer;
              transition: 300ms ease;
              &:hover {
                color: var(--color-font-details);
              }
            }
          }
          & .valorProduto {
            font-size: 1.6rem;
          }
        }
        & #value {
          font-size: 1.8rem;
          font-weight: 600;
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & i {
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .valor {
          display: flex;
          column-gap: 15px;
          align-items: center;

          & .preco {
            font-size: 28px;
            font-weight: 500;
            color: var(--color-font-details);
          }
          & button {
            padding: 0px 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 6px;
            border-radius: 30px;
            font-size: 18px;
            background-color: transparent;
            border: 2px solid #aaa;
            transition: 200ms ease;
            & svg {
              cursor: pointer;
              &:hover {
                fill: var(--color-font-details);
              }
            }
          }

          & .valores {
            font-size: 18px;
          }
        }
      }
      & .title {
        & h3 {
          font-size: 2rem;
          text-transform: uppercase;
          font-weight: 900;
          letter-spacing: -2px;
          height: 4rem;
        }
        & p {
          font-size: 1.6rem;
        }
      }
      & .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        & .add {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          background-color: #ff3900;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          cursor: pointer;
          & p {
            font-size: 1.8rem;
            font-weight: 600;
            color: #fff;
          }
          & svg {
            fill: #fff;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .price {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & svg {
            fill: #0c0c0c;
            width: 2.8rem;
            height: 2.8rem;
          }
        }

        & .valuePromotion {
          font-size: 1.8rem;
          font-weight: 600;
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & svg {
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .promotionCard {
          display: flex;
          align-items: center;
          justify-content: center;
          row-gap: 0.5rem;
          flex-direction: column;
          position: relative;
        }
        & .valueBefore {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          background-color: #ff3900;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          color: #fff;
          position: absolute;
          bottom: -5rem;
          rotate: 350deg;
          color: #fff;
          & svg {
            fill: #fff;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .promotion {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          background-color: #0c0c0c;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          color: #fff;
          & svg {
            fill: #fff;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .promotionDiv {
          display: flex;
          justify-content: center;
          align-items: center;
          column-gap: 1rem;
          position: absolute;
          right: -1rem;
          top: -2rem;
          & p {
            font-size: 1.8rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -2px;
            font-weight: 900;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            background-color: #0c0c0c;
            box-shadow: 3px 4px 5px 0px #ddd;
            rotate: 350deg;
          }
        }
      }
    }
  }
  & .pagamento {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5rem;
    & h2 {
      font-size: 35px;
      font-weight: 700;
      letter-spacing: -1.5px;
    }
    & button {
      font-size: 30px;
      border-radius: 45px;
      background-color: #000;
      color: #fff;
      border: none;
      font-weight: 700;
      padding: 20px;
      cursor: pointer;
    }
  }

  & .voltar {
    display: flex;
    align-items: center;
    cursor: pointer;
    align-self: baseline;
    margin-bottom: 50px; /* 5rem = 50px */

    & a {
      font-size: 23px; /* 2.3rem = 23px */
      font-weight: 600;
    }
  }
}

@media (max-width: 1200px) {
  #pagar {
    width: 90%;
    margin-top: 2rem;
    height: 100%;
    & h1 {
      font-size: 50px;
    }
    & .containerPedido {
      grid-template-columns: repeat(3, 25rem);
      & .boxCookie {
        width: 25rem;
        height: 30rem;
        padding: 1.5rem;
        & .header {
          height: 10rem;
          & img {
            width: 18rem;
          }
          & .checkProd {
            right: 2rem;
          }
        }
        & .valor {
          width: 100%;
          & .buttons {
            column-gap: 1rem;
            & button {
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 2rem;
              }
            }
            & .valorProduto {
              font-size: 1.4rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & i {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 24px;
            }
            & button {
              column-gap: 6px;
              font-size: 16px;
              & svg {
              }
            }
            & .valores {
              font-size: 16px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.6rem;
            height: 3rem;
          }
          & p {
            font-size: 1.4rem;
          }
        }
        & .row {
          width: 100%;
          & .add {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.6rem;
            }
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valuePromotion {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotion {
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            & p {
              font-size: 1.6rem;
              padding: 0.6rem 1rem;
            }
          }
        }
      }
    }
    & .pagamento {
      margin-bottom: 5rem;
      & h2 {
        font-size: 30px;
      }
      & button {
        font-size: 25px;
        padding: 18px;
      }
    }
    & .voltar {
      margin-bottom: 40px;
      & a {
        font-size: 19px;
      }
    }
  }
}
@media (max-width: 950px) {
  #pagar {
    width: 90%;
    & h1 {
      font-size: 45px;
    }
    & .containerPedido {
      grid-template-columns: repeat(2, 25rem);
      justify-content: center;
      gap: 8rem;
      & .boxCookie {
        width: 25rem;
        height: 30rem;
        padding: 1.3rem;
        & .header {
          height: 8rem;
          & img {
            width: 15rem;
          }
          & .checkProd {
            right: 2rem;
          }
        }
        & .valor {
          width: 100%;
          & .buttons {
            column-gap: 1rem;
            & button {
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 1.8rem;
              }
            }
            & .valorProduto {
              font-size: 1.6rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & i {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 24px;
            }
            & button {
              column-gap: 6px;
              font-size: 16px;
              & svg {
              }
            }
            & .valores {
              font-size: 16px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.8rem;
            height: 3rem;
          }
          & p {
            font-size: 1.6rem;
          }
        }
        & .row {
          width: 100%;
          & .add {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.6rem;
            }
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .valuePromotion {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotion {
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            & p {
              font-size: 1.6rem;
              padding: 0.6rem 1rem;
            }
          }
        }
      }
    }
    & .pagamento {
      margin-bottom: 5rem;
      & h2 {
        font-size: 30px;
      }
      & button {
        font-size: 25px;
        padding: 18px;
      }
    }
    & .voltar {
      margin-bottom: 40px;
      & a {
        font-size: 19px;
      }
    }
  }
}
@media (max-width: 700px) {
  #pagar {
    width: 90%;
    & h1 {
      font-size: 35px;
    }
    & .containerPedido {
      grid-template-columns: repeat(2, 20rem);
      justify-content: center;
      gap: 5rem;
      & .boxCookie {
        width: 20rem;
        height: 25rem;
        padding: 1.1rem;
        & .header {
          height: 6rem;
          & img {
            width: 12rem;
            left: -1rem !important;
          }
          & .checkProd {
            right: 1rem !important;
          }
        }
        & .valor {
          width: 100%;
          & .buttons {
            column-gap: 1rem;
            & button {
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 1.6rem;
              }
            }
            & .valorProduto {
              font-size: 1.4rem;
            }
          }
          & #value {
            font-size: 1.4rem;
            column-gap: 0.5rem;
            & i {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 20px;
            }
            & button {
              column-gap: 6px;
              font-size: 14px;
              & svg {
              }
            }
            & .valores {
              font-size: 14px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.6rem;
            height: 3rem;
          }
          & p {
            font-size: 1.4rem;
          }
        }
        & .row {
          width: 100%;
          & .add {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.4rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valuePromotion {
            font-size: 1.4rem;
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotion {
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            & p {
              font-size: 1.6rem;
              padding: 0.6rem 1rem;
            }
          }
        }
      }
    }
    & .pagamento {
      margin-bottom: 5rem;
      & h2 {
        font-size: 24px;
      }
      & button {
        font-size: 18px;
        padding: 15px;
      }
    }
    & .voltar {
      margin-bottom: 30px;
      & svg {
        width: 2.5rem;
        height: 2.5rem;
      }
      & a {
        font-size: 16px;
      }
    }
  }
}
@media (max-width: 500px) {
  #pagar {
    width: 90%;
    & h1 {
      font-size: 30px;
    }
    & .containerPedido {
      grid-template-columns: repeat(2, 15rem);
      justify-content: center;
      gap: 3rem;
      & .boxCookie {
        width: 15rem;
        height: 20rem;
        padding: 0.9rem;
        & .header {
          height: 5rem;
          & img {
            width: 10rem;
            left: -1rem !important;
            top: -2.5rem;
          }
          & .checkProd {
            right: 1rem !important;
          }
        }
        & .valor {
          width: 100%;
          & .buttons {
            column-gap: 1rem;
            & button {
              width: 2.5rem;
              height: 1.5rem;
              & i {
                font-size: 1.4rem;
              }
            }
            & .valorProduto {
              font-size: 1.2rem;
            }
          }
          & #value {
            font-size: 1.2rem;
            column-gap: 0.5rem;
            & i {
              font-size: 1.8rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 1.8rempx;
            }
            & button {
              column-gap: 6px;
              font-size: 12px;
              & svg {
              }
            }
            & .valores {
              font-size: 12px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.4rem;
            height: 2.5rem;
          }
          & p {
            font-size: 1.2rem;
          }
        }
        & .row {
          width: 100%;
          & .add {
            column-gap: 0.5rem;
            padding: 0.4rem 8rem;
            & p {
              font-size: 1.2rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valuePromotion {
            font-size: 1.2rem;
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotion {
            padding: 0.6rem 1rem;
            & svg {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            & p {
              font-size: 1.6rem;
              padding: 0.6rem 1rem;
            }
          }
        }
      }
    }
    & .pagamento {
      margin-bottom: 5rem;
      & h2 {
        font-size: 24px;
      }
      & button {
        font-size: 16px;
        padding: 12px;
      }
    }
    & .voltar {
      margin-bottom: 30px;
      & svg {
        width: 2.5rem;
        height: 2.5rem;
      }
      & a {
        font-size: 14px;
      }
    }
  }
}
@media (max-width: 350px) {
  #pagar {
    width: 90%;
    & h1 {
      font-size: 25px;
    }
    & .containerPedido {
      grid-template-columns: repeat(2, 12rem);
      justify-content: center;
      gap: 3rem;
      & .boxCookie {
        width: 12rem;
        height: 20rem;
        padding: 0.7rem;
        border-radius: 1rem;
        & .header {
          height: 4rem;
          & img {
            width: 8rem;
            left: -1rem !important;
            top: -2.5rem;
          }
          & .checkProd {
            right: 0.6rem !important;
            & .checkbox-bg {
              width: 2.5rem;
              height: 2.5rem;
            }
          }
        }
        & .valor {
          width: 100%;
          & .buttons {
            column-gap: 1rem;
            & button {
              width: 2rem;
              height: 1.5rem;
              & i {
                font-size: 1.2rem;
              }
            }
            & .valorProduto {
              font-size: 1.1rem;
            }
          }
          & #value {
            font-size: 1.1rem;
            column-gap: 0.5rem;
            & i {
              font-size: 1.6rem;
            }
          }
          & .valor {
            column-gap: 15px;
            & .preco {
              font-size: 1.6rem;
            }
            & button {
              column-gap: 6px;
              font-size: 11px;
              & svg {
              }
            }
            & .valores {
              font-size: 11px;
            }
          }
        }
        & .title {
          & h3 {
            font-size: 1.2rem;
            height: 2rem;
          }
          & p {
            font-size: 1.1rem;
          }
        }
        & .row {
          width: 100%;
          & .add {
            column-gap: 0.5rem;
            padding: 0.4rem 8rem;
            & p {
              font-size: 1.1rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .valuePromotion {
            font-size: 1.1rem;
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .promotionCard {
            row-gap: 0.5rem;
          }
          & .valueBefore {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & svg {
              width: 2.2rem;
              height: 2.2rem;
            }
          }
          & .promotion {
            padding: 0.6rem 1rem;
            & svg {
              width: 2.2rem;
              height: 2.2rem;
            }
          }
          & .promotionDiv {
            column-gap: 1rem;
            & p {
              font-size: 1.4rem;
              padding: 0.6rem 1rem;
            }
          }
        }
      }
    }
    & .pagamento {
      margin-bottom: 5rem;
      & h2 {
        font-size: 20px;
      }
      & button {
        font-size: 14px;
        padding: 12px;
      }
    }
    & .voltar {
      margin-bottom: 30px;
      & svg {
        width: 2.5rem;
        height: 2.5rem;
      }
      & a {
        font-size: 12px;
      }
    }
  }
}

#galeria {
  height: auto;
  width: 90%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  & .headerSearch {
    margin: 0rem 0 8rem 0;
    position: sticky;
    top: 18px;
    z-index: 999;
    & h2 {
      color: #0c0c0c;
      font-size: 60px;
      font-weight: 900;
      letter-spacing: -3.9px;
      line-height: 86.5%;
      margin: 0 0 23px;
      text-transform: uppercase;
    }
    & p {
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    & .searchInputFilter {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      column-gap: 15px;
      & .filter {
        background-color: #fff;
        box-shadow: 0px 0px 4px 0px #a3a3a3;
        display: flex;
        align-items: center;
        padding: 11px;
        border-radius: 25px;
        cursor: pointer;
        transition: 300ms ease;
        &:hover {
          border-color: #a6b8ff;
          box-shadow: 0 0 10px #a6b8ff;
        }
        & svg {
          color: #ff0000;
          width: 3rem;
          height: 3rem;
        }
      }
      .searchInput {
        background-color: #fff;
        box-shadow: 0px 0px 4px 0px #a3a3a3;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap: 10px;
        padding: 12px 16px;
        border-radius: 50px;
        width: 100%;
        transition: all 0.3s ease; /* Adiciona transição */

        & svg {
          color: #ff0000;
          width: 3rem;
          height: 3rem;
          cursor: pointer;
        }

        & #searchInput {
          all: unset;
          font-size: 1.8rem;
          width: 100%;
        }

        &:focus-within {
          border-color: #a6b8ff;
          box-shadow: 0 0 10px #a6b8ff;
        }
      }
    }
  }
  & .allCookies {
    display: grid;
    grid-template-columns: repeat(3, 33rem);
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    & .boxCookie {
      width: 32rem;
      height: 38rem;
      border-radius: 2.5rem;
      position: relative;
      border: 1px solid #ddd;
      box-shadow: 0px 0px 4px 1px #ddd;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: baseline;
      justify-content: space-between;
      & .header {
        display: flex;
        align-items: baseline;
        justify-content: end;
        height: 15rem;
        & img {
          width: 22rem;
          object-fit: contain;
          position: absolute;
          top: -4rem;
          left: -5rem;
          filter: drop-shadow(5px 5px 6px rgba(45, 45, 45, 0.336));
        }
        & .boxAvaliation {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          position: absolute;
          right: 2rem;
          top: 5rem;
          display: flex;
          justify-content: center;
          align-items: center;
          column-gap: 0.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          background-color: #ff3900;
          color: #fff;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          & i {
            font-size: 2.5rem;
            color: #fff;
          }
          & .avaliation {
            font-size: 1.8rem;
            font-weight: 500;
            color: #fff;
          }
        }
      }
      & .contador {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        & .buttons {
          display: flex;
          align-items: center;
          justify-content: space-between;
          column-gap: 1.5rem;
          & button {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            background-color: transparent;
            border: 2px solid #0c0c0c;
            width: 3.5rem;
            height: 2.5rem;
            cursor: pointer;
            & i {
              font-size: 2.4rem;
              cursor: pointer;
              transition: 300ms ease;
              &:hover {
                color: var(--color-font-details);
              }
            }
          }
          & .valorProduto {
            font-size: 1.6rem;
          }
        }
        & #value {
          font-size: 1.8rem;
          font-weight: 600;
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & i {
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .encomendar {
          background-color: var(--color-details-black);
          padding: 0.8rem 1.2rem;
          border-radius: 1rem;
          cursor: pointer;
          & p {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            color: #fff;
            letter-spacing: -0.7px;
            text-transform: uppercase;
            font-weight: 900;
          }
        }
        & .promotion {
          background-color: var(--color-font-details);
          padding: 0.8rem 1.2rem;
          border-radius: 1rem;
          cursor: pointer;
          position: absolute;
          top: -2rem;
          right: -4rem;
          rotate: 25deg;
          z-index: 999;
          & p {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            color: #000;
            letter-spacing: -0.7px;
            text-transform: uppercase;
            font-weight: 900;
          }
        }
        & .valueBefore {
          background-color: var(--color-font-details);
          padding: 0.8rem 1.2rem;
          border-radius: 1rem;
          position: absolute;
          bottom: -2rem;
          right: 0rem;
          rotate: -25deg;
          z-index: 999;
          & p {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            color: #000;
            letter-spacing: -0.7px;
            text-transform: uppercase;
            font-weight: 900;
          }
        }
      }

      & .title {
        & h3 {
          font-size: 2rem;
          text-transform: uppercase;
          font-weight: 900;
          letter-spacing: -2px;
          height: 4rem;
        }
        & p {
          font-size: 1.6rem;
        }
      }

      & .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        & .add {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          background-color: #ff3900;
          padding: 0.8rem 1.2rem;
          border-radius: 1.5rem;
          border: 1px solid #ddd;
          box-shadow: 0px 0px 4px 1px #ddd;
          cursor: pointer;
          & p {
            font-size: 1.8rem;
            font-weight: 600;
            color: #fff;
          }
          & svg {
            fill: #fff;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
        & .price {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 0.5rem;
          & svg {
            fill: #0c0c0c;
            width: 2.8rem;
            height: 2.8rem;
          }
        }
      }
    }
  }
}
@media (max-width: 1250px) {
  #galeria {
    & .headerSearch {
      margin: 0rem 0 8rem 0;
      top: 18px;
      & h2 {
        font-size: 60px;
        margin: 0 0 23px;
      }
      & p {
        font-size: 19px;
        margin-bottom: 15px;
      }
      & .searchInputFilter {
        column-gap: 15px;
        & .filter {
          padding: 11px;
          & svg {
            width: 3rem;
            height: 3rem;
          }
        }
        .searchInput {
          column-gap: 10px;
          padding: 12px 16px;
          & svg {
            width: 3rem;
            height: 3rem;
          }
          & #searchInput {
            font-size: 1.8rem;
          }
        }
      }
    }
    & .allCookies {
      grid-template-columns: repeat(3, 25rem);
      & .boxCookie {
        width: 25rem;
        height: 35rem;
        padding: 2rem;
        & .header {
          height: 13rem;
          & img {
            width: 18rem;
            top: -4rem;
            left: -5rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 2rem;
            top: 5rem;
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            & i {
              font-size: 2.2rem;
            }
            & .avaliation {
              font-size: 1.6rem;
            }
          }
        }
        & .contador {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              width: 3.5rem;
              height: 2.5rem;
              & i {
                font-size: 2.2rem;
              }
            }
            & .valorProduto {
              font-size: 1.6rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            font-weight: 600;
            column-gap: 0.5rem;
            & i {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .encomendar {
            padding: 0.8rem 1.2rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
          & .promotion {
            padding: 0.8rem 1.2rem;
            top: -2rem;
            right: -4rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
          & .valueBefore {
            padding: 0.8rem 1.2rem;
            bottom: -2rem;
            right: 0rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
        }

        & .title {
          & h3 {
            font-size: 1.8rem;
            height: 4rem;
          }
          & p {
            font-size: 1.6rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            & p {
              font-size: 1.6rem;
            }
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 1000px) {
  #galeria {
    margin-top: 1.5rem;
    & .headerSearch {
      margin: 0rem 0 8rem 0;
      top: 18px;
      & h2 {
        font-size: 45px;
        margin: 0 0 15px;
      }
      & p {
        font-size: 16px;
        margin-bottom: 15px;
      }
      & .searchInputFilter {
        column-gap: 15px;
        & .filter {
          padding: 11px;
          & svg {
            width: 3rem;
            height: 3rem;
          }
        }
        .searchInput {
          column-gap: 10px;
          padding: 12px 16px;
          & svg {
            width: 3rem;
            height: 3rem;
          }
          & #searchInput {
            font-size: 1.8rem;
          }
        }
      }
    }
    & .allCookies {
      grid-template-columns: repeat(2, 25rem);
      justify-content: center;
      gap: 6rem;
      & .boxCookie {
        width: 25rem;
        height: 35rem;
        padding: 2rem;
        & .header {
          height: 13rem;
          & img {
            width: 18rem;
            top: -4rem;
            left: -5rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 2rem;
            top: 5rem;
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            & i {
              font-size: 2.2rem;
            }
            & .avaliation {
              font-size: 1.6rem;
            }
          }
        }
        & .contador {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              width: 3.5rem;
              height: 2.5rem;
              & i {
                font-size: 2.2rem;
              }
            }
            & .valorProduto {
              font-size: 1.6rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            font-weight: 600;
            column-gap: 0.5rem;
            & i {
              width: 2.6rem;
              height: 2.6rem;
            }
          }
          & .encomendar {
            padding: 0.8rem 1.2rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
          & .promotion {
            padding: 0.8rem 1.2rem;
            top: -2rem;
            right: -4rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
          & .valueBefore {
            padding: 0.8rem 1.2rem;
            bottom: -2rem;
            right: 0rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
        }

        & .title {
          & h3 {
            font-size: 1.8rem;
            height: 4rem;
          }
          & p {
            font-size: 1.6rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            & p {
              font-size: 1.6rem;
            }
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2.4rem;
              height: 2.4rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 700px) {
  #galeria {
    margin-top: 1.5rem;
    & .headerSearch {
      margin: 0rem 0 8rem 0;
      top: 18px;
      & h2 {
        font-size: 30px;
        margin: 0 0 20px;
      }
      & p {
        font-size: 14px;
        margin-bottom: 15px;
      }
      & .searchInputFilter {
        column-gap: 15px;
        & .filter {
          padding: 11px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
        }
        .searchInput {
          column-gap: 10px;
          padding: 12px 16px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
          & #searchInput {
            font-size: 1.6rem;
          }
        }
      }
    }
    & .allCookies {
      grid-template-columns: repeat(2, 20rem);
      justify-content: center;
      gap: 4rem;
      & .boxCookie {
        width: 20rem;
        height: 30rem;
        padding: 1rem;
        & .header {
          height: 11rem;
          & img {
            width: 16rem;
            top: -2rem;
            left: -4rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & i {
              font-size: 2rem;
            }
            & .avaliation {
              font-size: 1.4rem;
            }
          }
        }
        & .contador {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 2rem;
              }
            }
            & .valorProduto {
              font-size: 1.4rem;
            }
          }
          & #value {
            font-size: 1.4rem;
            column-gap: 0.5rem;
            & i {
              width: 2.2rem;
              height: 2.2rem;
            }
          }
          & .encomendar {
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.4rem;
              column-gap: 0.5rem;
            }
          }
          & .promotion {
            padding: 0.6rem 1rem;
            top: -2rem;
            right: -4rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
          & .valueBefore {
            padding: 0.6rem 1rem;
            bottom: -2rem;
            right: 0rem;
            & p {
              font-size: 1.4rem;
              column-gap: 0.5rem;
            }
          }
        }

        & .title {
          & h3 {
            font-size: 1.6rem;
            height: 4rem;
          }
          & p {
            font-size: 1.4rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.4rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 550px) {
  #galeria {
    margin-top: 1.5rem;
    & .headerSearch {
      margin: 0rem 0 8rem 0;
      top: 18px;
      & h2 {
        font-size: 25px;
        margin: 0 0 20px !important;
      }
      & p {
        font-size: 12px;
        margin-bottom: 25px !important;
      }
      & .searchInputFilter {
        column-gap: 15px;
        & .filter {
          padding: 11px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
        }
        .searchInput {
          column-gap: 10px;
          padding: 12px 16px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
          & #searchInput {
            font-size: 1.6rem;
          }
        }
      }
    }
    & .allCookies {
      grid-template-columns: repeat(1, 25rem);
      justify-content: center;
      gap: 4rem;
      & .boxCookie {
        width: 25rem;
        height: 35rem;
        padding: 1rem;
        & .header {
          height: 11rem;
          & img {
            width: 18rem;
            top: -2rem;
            left: -4rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            & i {
              font-size: 2rem;
            }
            & .avaliation {
              font-size: 1.6rem;
            }
          }
        }
        & .contador {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 2rem;
              }
            }
            & .valorProduto {
              font-size: 1.6rem;
            }
          }
          & #value {
            font-size: 1.6rem;
            column-gap: 0.5rem;
            & i {
              width: 2.2rem;
              height: 2.2rem;
            }
          }
          & .encomendar {
            padding: 0.8rem 2rem;
            & p {
              font-size: 1.4rem;
              column-gap: 0.5rem;
            }
          }
          & .promotion {
            padding: 0.8rem 1.2rem;
            top: -2rem;
            right: -4rem;
            & p {
              font-size: 1.6rem;
              column-gap: 0.5rem;
            }
          }
          & .valueBefore {
            padding: 0.6rem 1rem;
            bottom: -2rem;
            right: 0rem;
            & p {
              font-size: 1.4rem;
              column-gap: 0.5rem;
            }
          }
        }

        & .title {
          & h3 {
            font-size: 1.6rem;
            height: 4rem;
          }
          & p {
            font-size: 1.4rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.4rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 300px) {
  #galeria {
    & .headerSearch {
      margin: 0rem 0 8rem 0;
      top: 18px;
      & h2 {
        font-size: 25px;
        margin: 0 0 20px !important;
      }
      & p {
        font-size: 12px;
        margin-bottom: 25px !important;
      }
      & .searchInputFilter {
        column-gap: 15px;
        & .filter {
          padding: 11px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
        }
        .searchInput {
          column-gap: 10px;
          padding: 12px 16px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
          & #searchInput {
            font-size: 1.6rem;
          }
        }
      }
    }
  }
}
@media (max-width: 550px) {
  #galeria {
    margin-top: 1.5rem;
    & .headerSearch {
      margin: 0rem 0 8rem 0;
      top: 18px;
      & h2 {
        font-size: 20px;
        margin: 0 0 10px;
      }
      & p {
        font-size: 11px;
        margin-bottom: 15px;
      }
      & .searchInputFilter {
        column-gap: 15px;
        & .filter {
          padding: 11px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
        }
        .searchInput {
          column-gap: 10px;
          padding: 10px 14px;
          & svg {
            width: 2.5rem;
            height: 2.5rem;
          }
          & #searchInput {
            font-size: 1.4rem;
          }
        }
      }
    }
    & .allCookies {
      grid-template-columns: repeat(1, 20rem);
      justify-content: center;
      gap: 4rem;
      & .boxCookie {
        width: 20rem;
        height: 35rem;
        padding: 1rem;
        & .header {
          height: 9rem;
          & img {
            width: 16rem;
            top: -2rem;
            left: -4rem;
          }
          & .boxAvaliation {
            column-gap: 0.5rem;
            right: 1rem;
            top: 1rem;
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & i {
              font-size: 1.8rem;
            }
            & .avaliation {
              font-size: 1.4rem;
            }
          }
        }
        & .contador {
          & .buttons {
            column-gap: 1.5rem;
            & button {
              width: 3rem;
              height: 2rem;
              & i {
                font-size: 1.8rem;
              }
            }
            & .valorProduto {
              font-size: 1.4rem;
            }
          }
          & #value {
            font-size: 1.4rem;
            column-gap: 0.5rem;
            & i {
              width: 1.8rem;
              height: 1.8rem;
            }
          }
          & .encomendar {
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.2rem;
              column-gap: 0.5rem;
            }
          }
          & .promotion {
            padding: 0.6rem 1rem;
            top: -2rem;
            right: -4rem;
            & p {
              font-size: 1.4rem;
              column-gap: 0.5rem;
            }
          }
          & .valueBefore {
            padding: 0.6rem 1rem;
            bottom: -2rem;
            right: 0rem;
            & p {
              font-size: 1.2rem;
              column-gap: 0.5rem;
            }
          }
        }

        & .title {
          & h3 {
            font-size: 1.4rem;
            height: 4rem;
          }
          & p {
            font-size: 1.2rem;
          }
        }
        & .row {
          & .add {
            column-gap: 0.5rem;
            padding: 0.6rem 1rem;
            & p {
              font-size: 1.2rem;
            }
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
          & .price {
            column-gap: 0.5rem;
            & svg {
              width: 2rem;
              height: 2rem;
            }
          }
        }
      }
    }
  }
}

#addProduto {
  height: 100%;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  & .col1 {
    width: 100%;
    & .headerAdd {
      display: flex;
      align-items: baseline;
      flex-direction: column;
      width: 100%;
      margin-bottom: 8rem;
      & h1 {
        color: #0c0c0c;
        font-size: 60px;
        font-weight: 900;
        letter-spacing: -3.9px;
        line-height: 86.5%;
        margin: 0 0 23px;
        text-transform: uppercase;
      }
      & p {
        font-size: 18px;
        font-weight: 700;
      }
    }
    & .container {
      display: flex;
      column-gap: 2rem;
      justify-content: center;
      & .boxCookie {
        width: 32rem;
        height: 38rem;
        border-radius: 2.5rem;
        position: relative;
        border: 1px solid #ddd;
        box-shadow: 0px 0px 4px 1px #ddd;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: space-between;
        & .header {
          display: flex;
          align-items: baseline;
          justify-content: end;
          height: 15rem;
          & .inputImg {
            width: 22rem;
            object-fit: contain;
            position: absolute;
            top: -5rem;
            left: -5rem;
            filter: drop-shadow(5px 5px 6px rgba(45, 45, 45, 0.336));
            & svg {
              width: 12rem;
              height: 12rem;
            }
            & img {
              width: 24rem;
              object-fit: contain;
            }
            & input {
              display: none;
            }
          }
          & .boxAvaliation {
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            position: absolute;
            right: 2rem;
            top: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            column-gap: 0.5rem;
            border: 1px solid #ddd;
            box-shadow: 0px 0px 4px 1px #ddd;
            background-color: #ff3900;
            color: #fff;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            & i {
              font-size: 2.5rem;
              color: #fff;
            }
            & .avaliation {
              font-size: 1.8rem;
              font-weight: 500;
              color: #fff;
            }
          }
        }
        & .contador {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
          & .buttons {
            display: flex;
            align-items: center;
            justify-content: space-between;
            column-gap: 1.5rem;
            & button {
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 30px;
              background-color: transparent;
              border: 2px solid #0c0c0c;
              width: 3.5rem;
              height: 2.5rem;
              cursor: pointer;
              & i {
                font-size: 2.4rem;
                cursor: pointer;
                transition: 300ms ease;
                &:hover {
                  color: var(--color-font-details);
                }
              }
            }
            & .valorProduto {
              font-size: 1.6rem;
            }
          }
          & #value {
            font-size: 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            position: relative;
            left: 2rem;
            & i {
              width: 2.8rem;
              height: 2.8rem;
            }
            & p {
              display: flex;
              align-items: center;
              column-gap: 1rem;
              & #priceCookie {
                all: unset;
                width: 5rem;
              }
            }
          }
          & .encomendar {
            background-color: var(--color-details-black);
            padding: 0.8rem 1.2rem;
            border-radius: 1rem;
            cursor: pointer;
            & p {
              font-size: 1.8rem;
              font-weight: 600;
              display: flex;
              align-items: center;
              justify-content: center;
              column-gap: 0.5rem;
              color: #fff;
              letter-spacing: -0.7px;
              text-transform: uppercase;
              font-weight: 900;
            }
          }
          & .promotion {
            background-color: var(--color-font-details);
            padding: 0.8rem 1.2rem;
            border-radius: 1rem;
            cursor: pointer;
            position: absolute;
            top: -2rem;
            right: -4rem;
            rotate: 25deg;
            z-index: 999;
            & p {
              font-size: 1.8rem;
              font-weight: 600;
              display: flex;
              align-items: center;
              justify-content: center;
              column-gap: 0.5rem;
              color: #000;
              letter-spacing: -0.7px;
              text-transform: uppercase;
              font-weight: 900;
            }
          }
          & .valueBefore {
            background-color: var(--color-font-details);
            padding: 0.8rem 1.2rem;
            border-radius: 1rem;
            position: absolute;
            bottom: -2rem;
            right: 0rem;
            rotate: -25deg;
            z-index: 999;
            & p {
              font-size: 1.8rem;
              font-weight: 600;
              display: flex;
              align-items: center;
              justify-content: center;
              column-gap: 0.5rem;
              color: #000;
              letter-spacing: -0.7px;
              text-transform: uppercase;
              font-weight: 900;
            }
          }
        }

        & .title {
          & #title {
            all: unset;
            font-size: 2rem;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: -2px;
            height: 4rem;
            color: #0c0c0c !important;
          }
          & #descriptionCookie {
            all: unset;
            font-size: 1.6rem;
          }
        }

        & .row {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;

          & .add {
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            background-color: #ff3900;
            padding: 0.8rem 1.2rem;
            border-radius: 1.5rem;
            border: 1px solid #ddd;
            box-shadow: 0px 0px 4px 1px #ddd;
            cursor: pointer;
            & p {
              font-size: 1.8rem;
              font-weight: 600;
              color: #fff;
            }
            & svg {
              fill: #fff;
              width: 2.8rem;
              height: 2.8rem;
            }
          }
          & .price {
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
            & svg {
              fill: #0c0c0c;
              width: 2.8rem;
              height: 2.8rem;
            }
          }
        }
      }
      & .boxData {
        width: 32rem;
        height: 38rem;
        border-radius: 2.5rem;
        border: 1px solid #ddd;
        box-shadow: 0px 0px 4px 1px #ddd;
        padding: 2rem;
        & h3 {
          color: #0c0c0c;
          font-size: 2rem;
          font-weight: 900;
          letter-spacing: -2.5px;
          line-height: 86.5%;
          margin: 0 0 23px;
          text-transform: uppercase;
        }
        & .bodyData {
          width: 100%;
          height: 89%;
          display: flex;
          flex-direction: column;
          align-items: baseline;
          justify-content: space-between;

          & button {
            border: none;
            color: white;
            background-color: #0c0c0c;
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            font-family: "Montserrat", sans-serif;
            padding: 0.8rem 1.2rem;
            border-radius: 2.5rem;
            width: max-content;
            cursor: pointer;
          }
          & .formGroup {
            display: flex;
            flex-direction: column;
            width: 100%;
            row-gap: 1rem;
            & label {
              font-size: 1.6rem;
            }
            & input {
              all: unset;
              width: 100%;
              border-bottom: 1px solid #0c0c0c;
              font-size: 1.4rem;
            }
          }
        }
      }
    }
  }
}

@media (max-width: 1100px) {
  #addProduto {
    height: 100%;
    width: 90%;
    & .col1 {
      width: 100%;
      & .headerAdd {
        width: 100%;
        margin-bottom: 6rem;
        margin-top: 2rem;
        & h1 {
          font-size: 50px;
          letter-spacing: -3.9px;
          line-height: 86.5%;
          margin: 0 0 23px;
        }
        & p {
          font-size: 16px;
          font-weight: 700;
        }
      }
      & .container {
        column-gap: 1.8rem;
        & .boxCookie {
          width: 28rem;
          height: 35rem;
          border-radius: 2.5rem;
          padding: 1.8rem;
          & .header {
            height: 13rem;
            & .inputImg {
              width: 20rem;
              top: -5rem;
              left: -5rem;
              & svg {
                width: 11rem;
                height: 11rem;
              }
              & img {
                width: 22rem;
              }
              & input {
              }
            }
            & .boxAvaliation {
              column-gap: 0.5rem;
              right: 2rem;
              top: 2rem;
              column-gap: 0.5rem;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
              & i {
                font-size: 2.2rem;
              }
              & .avaliation {
                font-size: 1.8rem;
              }
            }
          }
          & .contador {
            width: 100%;
            & .buttons {
              column-gap: 1.5rem;
              & button {
                border-radius: 30px;
                width: 3.5rem;
                height: 2.5rem;
                & i {
                  font-size: 2.2rem;
                }
              }
              & .valorProduto {
                font-size: 1.5rem;
              }
            }
            & #value {
              font-size: 1.7rem;
              left: 2rem;
              column-gap: 0.5rem;
              & i {
                width: 2.5rem;
                height: 2.5rem;
              }
              & p {
                column-gap: 1rem;
                & #priceCookie {
                  width: 5rem;
                }
              }
            }
            & .encomendar {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              & p {
                font-size: 1.7rem;
                column-gap: 0.5rem;
              }
            }
            & .promotion {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              top: -2rem;
              right: -4rem;
              & p {
                font-size: 1.7rem;
                column-gap: 0.5rem;
              }
            }
            & .valueBefore {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              bottom: -2rem;
              right: 0rem;
              & p {
                font-size: 1.7rem;
                column-gap: 0.5rem;
              }
            }
          }
          & .title {
            & #title {
              font-size: 1.8rem;
              height: 4rem;
            }
            & #descriptionCookie {
              font-size: 1.5rem;
            }
          }
          & .row {
            width: 100%;
            & .add {
              column-gap: 0.5rem;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
              & p {
                font-size: 1.7rem;
              }
              & svg {
                width: 2.6rem;
                height: 2.6rem;
              }
            }
            & .price {
              column-gap: 0.5rem;
              & svg {
                width: 2.6rem;
                height: 2.6rem;
              }
            }
          }
        }
        & .boxData {
          width: 30rem;
          height: 35rem;
          padding: 1.8rem;
          & h3 {
            font-size: 1.8rem;
            letter-spacing: -2.5px;
            line-height: 86.5%;
            margin: 0 0 23px;
          }
          & .bodyData {
            width: 100%;
            height: 89%;
            & button {
              font-size: 1.7rem;
              padding: 0.8rem 1.2rem;
            }
            & .formGroup {
              width: 100%;
              row-gap: 1rem;
              & label {
                font-size: 1.5rem;
              }
              & input {
                width: 100%;
                font-size: 1.3rem;
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 750px) {
  #addProduto {
    height: 100%;
    width: 90%;
    & .col1 {
      width: 100%;
      & .headerAdd {
        width: 100%;
        margin-bottom: 6rem;
        & h1 {
          font-size: 35px;
          letter-spacing: -3.9px;
          line-height: 86.5%;
          margin: 0 0 23px;
        }
        & p {
          font-size: 14px;
          font-weight: 700;
        }
      }
      & .container {
        column-gap: 1.8rem;
        & .boxCookie {
          width: 24rem;
          height: 30rem;
          border-radius: 2rem;
          padding: 1.6rem;
          & .header {
            height: 11rem;
            & .inputImg {
              width: 18rem;
              top: -4rem;
              left: -4rem;
              & svg {
                width: 10rem;
                height: 10rem;
              }
              & img {
                width: 20rem;
              }
              & input {
              }
            }
            & .boxAvaliation {
              column-gap: 0.5rem;
              right: 2rem;
              top: 2rem;
              column-gap: 0.5rem;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
              & i {
                font-size: 2rem;
              }
              & .avaliation {
                font-size: 1.6rem;
              }
            }
          }
          & .contador {
            width: 100%;
            & .buttons {
              column-gap: 1.5rem;
              & button {
                border-radius: 30px;
                width: 3.5rem;
                height: 2.5rem;
                & i {
                  font-size: 2rem;
                }
              }
              & .valorProduto {
                font-size: 1.4rem;
              }
            }
            & #value {
              font-size: 1.5rem;
              left: 2rem;
              column-gap: 0.5rem;
              & i {
                width: 2.3rem;
                height: 2.3rem;
              }
              & p {
                column-gap: 1rem;
                & #priceCookie {
                  width: 5rem;
                }
              }
            }
            & .encomendar {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
            & .promotion {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              top: -2rem;
              right: -4rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
            & .valueBefore {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              bottom: -2rem;
              right: 0rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
          }
          & .title {
            & #title {
              font-size: 1.6rem;
              height: 4rem;
            }
            & #descriptionCookie {
              font-size: 1.4rem;
            }
          }
          & .row {
            width: 100%;
            & .add {
              column-gap: 0.5rem;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
              & p {
                font-size: 1.5rem;
              }
              & svg {
                width: 2.3rem;
                height: 2.3rem;
              }
            }
            & .price {
              column-gap: 0.5rem;
              & svg {
                width: 2.3rem;
                height: 2.3rem;
              }
            }
          }
        }
        & .boxData {
          width: 24rem;
          height: 30rem;
          padding: 1.6rem;
          & h3 {
            font-size: 1.6rem;
            letter-spacing: -2.5px;
            line-height: 86.5%;
            margin: 0 0 23px;
          }
          & .bodyData {
            width: 100%;
            height: 87%;
            & button {
              font-size: 1.5rem;
              padding: 0.8rem 1.2rem;
            }
            & .formGroup {
              width: 100%;
              row-gap: 1rem;
              & label {
                font-size: 1.3rem;
              }
              & input {
                width: 100%;
                font-size: 1.2rem;
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 600px) {
  #addProduto {
    height: 100%;
    width: 90%;
    & .col1 {
      width: 100%;
      & .headerAdd {
        width: 100%;
        margin-bottom: 6rem;
        margin-top: 2rem;
        align-items: center;
        justify-content: center;
        & h1 {
          font-size: 30px;
          letter-spacing: -1.9px;
          line-height: 86.5%;
          margin: 0 0 15px;
          text-align: center;
        }
        & p {
          font-size: 13px;
          font-weight: 700;
          text-align: center;
        }
      }
      & .container {
        flex-direction: column;
        column-gap: 1.8rem;
        row-gap: 1.8rem;
        align-items: center;
        & .boxCookie {
          width: 24rem;
          height: 30rem;
          border-radius: 2rem;
          padding: 1.6rem;
          & .header {
            height: 11rem;
            & .inputImg {
              width: 16rem;
              top: -2rem;
              left: -2rem;
              & svg {
                width: 10rem;
                height: 10rem;
              }
              & img {
                width: 16rem;
              }
              & input {
              }
            }
            & .boxAvaliation {
              right: 1rem;
              top: 1rem;
              column-gap: 0.4rem;
              padding: 0.6rem 1rem;
              border-radius: 1rem;
              & i {
                font-size: 1.8rem;
              }
              & .avaliation {
                font-size: 1.5rem;
              }
            }
          }
          & .contador {
            width: 100%;
            & .buttons {
              column-gap: 1.5rem;
              & button {
                border-radius: 30px;
                width: 3rem;
                height: 2rem;
                & i {
                  font-size: 1.8rem;
                }
              }
              & .valorProduto {
                font-size: 1.4rem;
              }
            }
            & #value {
              font-size: 1.4rem;
              left: 2rem;
              column-gap: 0.5rem;
              & i {
                width: 2.3rem;
                height: 2.3rem;
              }
              & p {
                column-gap: 0.8rem;
                & #priceCookie {
                  width: 5rem;
                }
              }
            }
            & .encomendar {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
            & .promotion {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              top: -2rem;
              right: -4rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
            & .valueBefore {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              bottom: -2rem;
              right: 0rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
          }
          & .title {
            & #title {
              font-size: 1.5rem;
              height: 3rem;
            }
            & #descriptionCookie {
              font-size: 1.3rem;
            }
          }
          & .row {
            width: 100%;
            & .add {
              column-gap: 0.5rem;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
              & p {
                font-size: 1.5rem;
              }
              & svg {
                width: 2.3rem;
                height: 2.3rem;
              }
            }
            & .price {
              column-gap: 0.5rem;
              & svg {
                width: 2.3rem;
                height: 2.3rem;
              }
            }
          }
        }
        & .boxData {
          width: 24rem;
          height: 30rem;
          padding: 1.6rem;
          & h3 {
            font-size: 1.6rem;
            letter-spacing: -2.5px;
            line-height: 86.5%;
            margin: 0 0 23px;
          }
          & .bodyData {
            width: 100%;
            height: 87%;
            & button {
              font-size: 1.3rem;
              padding: 0.6rem 1rem;
            }
            & .formGroup {
              width: 100%;
              row-gap: 0.4rem;
              & label {
                font-size: 1.3rem;
              }
              & input {
                width: 100%;
                font-size: 1.2rem;
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 310px) {
  #addProduto {
    height: 100%;
    width: 90%;
    & .col1 {
      width: 100%;
      & .headerAdd {
        width: 100%;
        margin-bottom: 6rem;
        margin-top: 5rem;
        align-items: center;
        justify-content: center;
        & h1 {
          font-size: 25px;
          letter-spacing: -0.9px;
          line-height: 86.5%;
          margin: 0 0 10px;
          text-align: center;
        }
        & p {
          font-size: 12px;
          font-weight: 700;
          text-align: center;
        }
      }
      & .container {
        flex-direction: column;
        column-gap: 1.8rem;
        row-gap: 1.8rem;
        align-items: center;
        & .boxCookie {
          width: 22rem;
          height: 28rem;
          border-radius: 2rem;
          padding: 1.6rem;
          & .header {
            height: 11rem;
            & .inputImg {
              width: 14rem;
              top: -1rem;
              left: -1rem;
              & svg {
                width: 10rem;
                height: 10rem;
              }
              & img {
                width: 15rem;
              }
              & input {
              }
            }
            & .boxAvaliation {
              right: 1rem;
              top: 1rem;
              column-gap: 0.4rem;
              padding: 0.6rem 1rem;
              border-radius: 1rem;
              & i {
                font-size: 1.6rem;
              }
              & .avaliation {
                font-size: 1.4rem;
              }
            }
          }
          & .contador {
            width: 100%;
            & .buttons {
              column-gap: 1.5rem;
              & button {
                border-radius: 30px;
                width: 2.6rem;
                height: 1.8rem;
                & i {
                  font-size: 1.6rem;
                }
              }
              & .valorProduto {
                font-size: 1.3rem;
              }
            }
            & #value {
              font-size: 1.3rem;
              left: 2rem;
              column-gap: 0.5rem;
              & i {
                width: 2.3rem;
                height: 2.3rem;
              }
              & p {
                column-gap: 0.8rem;
                & #priceCookie {
                  width: 5rem;
                }
              }
            }
            & .encomendar {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
            & .promotion {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              top: -2rem;
              right: -4rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
            & .valueBefore {
              padding: 0.8rem 1.2rem;
              border-radius: 1rem;
              bottom: -2rem;
              right: 0rem;
              & p {
                font-size: 1.5rem;
                column-gap: 0.5rem;
              }
            }
          }
          & .title {
            & #title {
              font-size: 1.4rem;
              height: 3rem;
              letter-spacing: -1px;
            }
            & #descriptionCookie {
              font-size: 1.2rem;
            }
          }
          & .row {
            width: 100%;
            & .add {
              column-gap: 0.5rem;
              padding: 0.8rem 1.2rem;
              border-radius: 1.5rem;
              & p {
                font-size: 1.5rem;
              }
              & svg {
                width: 2.3rem;
                height: 2.3rem;
              }
            }
            & .price {
              column-gap: 0.5rem;
              & svg {
                width: 2.3rem;
                height: 2.3rem;
              }
            }
          }
        }
        & .boxData {
          width: 22rem;
          height: 28rem;
          padding: 1.4rem;
          & h3 {
            font-size: 1.5rem;
            letter-spacing: -1.5px;
            line-height: 86.5%;
            margin: 0px 0 10px;
          }
          & .bodyData {
            width: 100%;
            height: 90%;
            & button {
              font-size: 1.2rem;
              padding: 0.4rem 0.8rem;
            }
            & .formGroup {
              width: 100%;
              row-gap: 0.4rem;
              & label {
                font-size: 1.3rem;
              }
              & input {
                width: 100%;
                font-size: 1.1rem;
              }
            }
          }
        }
      }
    }
  }
}

#login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  & form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    & .headerLogin {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      row-gap: 1rem;
      margin-bottom: 1rem;
      & h1 {
        font-size: 4rem;
        margin-bottom: 3rem;
      }
      & p {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
      }
    }
    & .auth {
      border: 2px solid #aaa;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34rem;
      padding: 1rem;
      border-radius: 5rem;
      column-gap: 0.8rem;
      margin-bottom: 2.5rem;
      & i {
        font-size: 3rem;
      }
      & p {
        font-size: 1.5rem;
        font-weight: 500;
      }
    }
    & ul {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1rem;
      list-style: none;
      margin-bottom: 2.5rem;

      & li {
        font-size: 1.5rem;
        font-weight: 400;
        color: #555;
      }
    }
    & .form-group {
      border: 2px solid #aaa;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34rem;
      padding: 1.55rem 2.5rem;
      border-radius: 5rem;
      column-gap: 1rem;
      margin-bottom: 2rem;

      & input {
        all: unset;
        font-size: 1.6rem;
        width: 100%;
      }
    }
    & .remenberRequest {
      display: flex;
      align-items: center;
      justify-content: space-between;
      column-gap: 4rem;
      margin: 0.5rem 0 3rem 0;
      & .remember {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 0.5rem;
        & input {
          width: 1.5rem;
          height: 1.5rem;
        }
        & p {
          font-size: 1.4rem;
          font-weight: 500;
        }
      }

      & .request {
        & a {
          font-size: 1.4rem;
        }
      }
    }
    & button {
      all: unset;
      font-family: "Montserrat", sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30rem;
      padding: 1.8rem 2rem;
      border-radius: 5rem;
      column-gap: 0.8rem;
      font-size: 1.5rem;
      font-weight: 500;
      color: #fff;
      background-color: #ff3900;
      margin-bottom: 1.8rem;
    }
    & .dontAccount {
      & p {
        font-size: 1.5rem;
        & span {
          color: #0c0c0c;
          font-weight: 500;
        }
      }
    }
  }
}

@media (max-width: 1100px) {
  #login {
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 3.5rem;
          margin-bottom: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
          margin-bottom: 1.2rem;
        }
      }
      & .auth {
        width: 31rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 2rem;
        & i {
          font-size: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
        }
      }
      & ul {
        column-gap: 1rem;
        margin-bottom: 2rem;

        & li {
          font-size: 1.4rem;
        }
        & .line {
          width: 13.5rem;
        }
      }
      & .form-group {
        width: 31rem;
        padding: 1.45rem 2.3rem;
        border-radius: 5rem;
        column-gap: 1rem;
        margin-bottom: 2rem;

        & input {
          font-size: 1.5rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        column-gap: 3rem;
        margin: 0.5rem 0 2.5rem 0;
        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1.2rem;
            height: 1.2rem;
          }
          & p {
            font-size: 1.3rem;
          }
        }

        & .request {
          & a {
            font-size: 1.3rem;
          }
        }
      }
      & button {
        width: 27rem;
        padding: 1.6rem 1.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.4rem;
        }
      }
    }
  }
}
@media (max-width: 900px) {
  #login {
    margin-top: 2rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 3.5rem;
          margin-bottom: 2rem;
        }
        & p {
          font-size: 1.4rem;
          margin-bottom: 1rem;
        }
      }
      & .auth {
        width: 31rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.8rem;
        & i {
          font-size: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
        }
      }
      & ul {
        column-gap: 1rem;
        margin-bottom: 1.8rem;

        & li {
          font-size: 1.4rem;
        }
        & .line {
          width: 13.5rem;
        }
      }
      & .form-group {
        width: 31rem;
        padding: 1.45rem 2.3rem;
        border-radius: 5rem;
        column-gap: 1rem;
        margin-bottom: 1.8rem;

        & input {
          font-size: 1.5rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        column-gap: 1rem;
        margin: 0.5rem 0 2rem 0;
        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1.2rem;
            height: 1.2rem;
          }
          & p {
            font-size: 1.3rem;
          }
        }

        & .request {
          & a {
            font-size: 1.3rem;
          }
        }
      }
      & button {
        width: 27rem;
        padding: 1.6rem 1.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.4rem;
        }
      }
    }
  }
}
@media (max-width: 700px) {
  #login {
    margin-top: 2rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 3rem;
          margin-bottom: 1.8rem;
        }
        & p {
          font-size: 1.4rem;
          margin-bottom: 1rem;
        }
      }
      & .auth {
        width: 28rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.8rem;
        & i {
          font-size: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
        }
      }
      & ul {
        column-gap: 1rem;
        margin-bottom: 1.6rem;

        & li {
          font-size: 1.4rem;
        }
        & .line {
          width: 11.5rem;
        }
      }
      & .form-group {
        width: 28rem;
        padding: 1.2rem 2rem;
        border-radius: 5rem;
        column-gap: 1rem;
        margin-bottom: 1.5rem;

        & input {
          font-size: 1.5rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        column-gap: 1rem;
        margin: 0.5rem 0 2rem 0;
        flex-direction: column;
        row-gap: 1rem;

        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1.2rem;
            height: 1.2rem;
          }
          & p {
            font-size: 1.3rem;
          }
        }

        & .request {
          & a {
            font-size: 1.3rem;
          }
        }
      }
      & button {
        width: 24rem;
        padding: 1.4rem 1.6rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.6rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.4rem;
        }
      }
    }
  }
}
@media (max-width: 500px) {
  #login {
    margin-top: 4rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 2.5rem;
          margin-bottom: 1.6rem;
        }
        & p {
          font-size: 1.3rem;
          margin-bottom: 0.8rem;
        }
      }
      & .auth {
        width: 25rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.6rem;
        & i {
          font-size: 2rem;
        }
        & p {
          font-size: 1.3rem;
        }
      }
      & ul {
        column-gap: 0.8rem;
        margin-bottom: 1.4rem;

        & li {
          font-size: 1.3rem;
        }
        & .line {
          width: 10.5rem;
        }
      }
      & .form-group {
        width: 25rem;
        padding: 1rem 1.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.2rem;

        & input {
          font-size: 1.4rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        margin: 0.5rem 0 1.5rem 0;
        flex-direction: column;
        row-gap: 1rem;

        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1rem;
            height: 1rem;
          }
          & p {
            font-size: 1.2rem;
          }
        }

        & .request {
          & a {
            font-size: 1.2rem;
          }
        }
      }
      & button {
        width: 22rem;
        padding: 1.2rem 1.4rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.4rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.3rem;
        }
      }
    }
  }
}
@media (max-width: 300px) {
  #login {
    margin-top: 6rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 2.2rem;
          margin-bottom: 1.4rem;
        }
        & p {
          font-size: 1.2rem;
          margin-bottom: 0.8rem;
        }
      }
      & .auth {
        width: 20rem;
        padding: 0.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.4rem;
        & i {
          font-size: 1.8rem;
        }
        & p {
          font-size: 1.2rem;
        }
      }
      & ul {
        column-gap: 0.8rem;
        margin-bottom: 1.2rem;

        & li {
          font-size: 1.2rem;
        }
        & .line {
          width: 8.5rem;
        }
      }
      & .form-group {
        width: 20rem;
        padding: 0.8rem 1.6rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.2rem;

        & input {
          font-size: 1.3rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        margin: 0.5rem 0 1.2rem 0;
        flex-direction: column;
        row-gap: 1rem;

        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1rem;
            height: 1rem;
          }
          & p {
            font-size: 1.1rem;
          }
        }

        & .request {
          & a {
            font-size: 1.1rem;
          }
        }
      }
      & button {
        width: 18rem;
        padding: 1rem 1.2rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.2rem;
          letter-spacing: -0.4px;
        }
      }
    }
  }
}

#register {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  & form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    & .headerLogin {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      row-gap: 1rem;
      margin-bottom: 1rem;
      & h1 {
        font-size: 4rem;
        margin-bottom: 3rem;
      }
      & p {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
      }
    }
    & .auth {
      border: 2px solid #aaa;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34rem;
      padding: 1rem;
      border-radius: 5rem;
      column-gap: 0.8rem;
      margin-bottom: 2.5rem;
      & i {
        font-size: 3rem;
      }
      & p {
        font-size: 1.5rem;
        font-weight: 500;
      }
    }
    & ul {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1rem;
      list-style: none;
      margin-bottom: 2.5rem;

      & li {
        font-size: 1.5rem;
        font-weight: 400;
        color: #555;
      }
    }
    & .row {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1rem;
      & .form-group {
        width: 16.5rem;
      }
    }
    & .form-group {
      border: 2px solid #aaa;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34rem;
      padding: 1.55rem 2.5rem;
      border-radius: 5rem;
      column-gap: 1rem;
      margin-bottom: 2rem;

      & input {
        all: unset;
        font-size: 1.6rem;
        width: 100%;
      }
    }
    & .remenberRequest {
      display: flex;
      align-items: center;
      justify-content: space-between;
      column-gap: 4rem;
      margin: 0.5rem 0 3rem 0;
      & .remember {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 0.5rem;
        & input {
          width: 1.5rem;
          height: 1.5rem;
        }
        & p {
          font-size: 1.4rem;
          font-weight: 500;
        }
      }

      & .request {
        & a {
          font-size: 1.4rem;
        }
      }
    }
    & button {
      all: unset;
      font-family: "Montserrat", sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30rem;
      padding: 1.8rem 2rem;
      border-radius: 5rem;
      column-gap: 0.8rem;
      font-size: 1.5rem;
      font-weight: 500;
      color: #fff;
      background-color: #ff3900;
      margin-bottom: 1.8rem;
    }
    & .dontAccount {
      & p {
        font-size: 1.5rem;
        & span {
          color: #0c0c0c;
          font-weight: 500;
        }
      }
    }
  }
}

@media (max-width: 1100px) {
  #register {
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 3.5rem;
          margin-bottom: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
          margin-bottom: 1.2rem;
        }
      }
      & .auth {
        width: 31rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 2rem;
        & i {
          font-size: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
        }
      }
      & ul {
        column-gap: 1rem;
        margin-bottom: 2rem;

        & li {
          font-size: 1.4rem;
        }
        & .line {
          width: 13.5rem;
        }
      }
      & .row {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        & .form-group {
          width: 15rem;
        }
      }
      & .form-group {
        width: 31rem;
        padding: 1.45rem 2.3rem;
        border-radius: 5rem;
        column-gap: 1rem;
        margin-bottom: 2rem;

        & input {
          font-size: 1.5rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        column-gap: 3rem;
        margin: 0.5rem 0 2.5rem 0;
        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1.2rem;
            height: 1.2rem;
          }
          & p {
            font-size: 1.3rem;
          }
        }

        & .request {
          & a {
            font-size: 1.3rem;
          }
        }
      }
      & button {
        width: 27rem;
        padding: 1.6rem 1.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.4rem;
        }
      }
    }
  }
}
@media (max-width: 900px) {
  #register {
    margin-top: 2rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 3.5rem;
          margin-bottom: 2rem;
        }
        & p {
          font-size: 1.4rem;
          margin-bottom: 1rem;
        }
      }
      & .auth {
        width: 31rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.8rem;
        & i {
          font-size: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
        }
      }
      & ul {
        column-gap: 1rem;
        margin-bottom: 1.8rem;

        & li {
          font-size: 1.4rem;
        }
        & .line {
          width: 13.5rem;
        }
      }
      & .row {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        & .form-group {
          width: 15rem;
        }
      }
      & .form-group {
        width: 31rem;
        padding: 1.45rem 2.3rem;
        border-radius: 5rem;
        column-gap: 1rem;
        margin-bottom: 1.8rem;

        & input {
          font-size: 1.5rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        column-gap: 1rem;
        margin: 0.5rem 0 2rem 0;
        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1.2rem;
            height: 1.2rem;
          }
          & p {
            font-size: 1.3rem;
          }
        }

        & .request {
          & a {
            font-size: 1.3rem;
          }
        }
      }
      & button {
        width: 27rem;
        padding: 1.6rem 1.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.4rem;
        }
      }
    }
  }
}
@media (max-width: 700px) {
  #register {
    margin-top: 2rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 3rem;
          margin-bottom: 1.8rem;
        }
        & p {
          font-size: 1.4rem;
          margin-bottom: 1rem;
        }
      }
      & .auth {
        width: 28rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.8rem;
        & i {
          font-size: 2.5rem;
        }
        & p {
          font-size: 1.4rem;
        }
      }
      & ul {
        column-gap: 1rem;
        margin-bottom: 1.6rem;

        & li {
          font-size: 1.4rem;
        }
        & .line {
          width: 11.5rem;
        }
      }
      & .row {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        & .form-group {
          width: 13.5rem;
        }
      }
      & .form-group {
        width: 28rem;
        padding: 1.2rem 2rem;
        border-radius: 5rem;
        column-gap: 1rem;
        margin-bottom: 1.5rem;

        & input {
          font-size: 1.5rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        column-gap: 1rem;
        margin: 0.5rem 0 2rem 0;
        flex-direction: column;
        row-gap: 1rem;

        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1.2rem;
            height: 1.2rem;
          }
          & p {
            font-size: 1.3rem;
          }
        }

        & .request {
          & a {
            font-size: 1.3rem;
          }
        }
      }
      & button {
        width: 24rem;
        padding: 1.4rem 1.6rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.6rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.4rem;
        }
      }
    }
  }
}
@media (max-width: 500px) {
  #register {
    margin-top: 4rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 2.5rem;
          margin-bottom: 1.6rem;
        }
        & p {
          font-size: 1.3rem;
          margin-bottom: 0.8rem;
        }
      }
      & .auth {
        width: 25rem;
        padding: 1rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.6rem;
        & i {
          font-size: 2rem;
        }
        & p {
          font-size: 1.3rem;
        }
      }
      & ul {
        column-gap: 0.8rem;
        margin-bottom: 1.4rem;

        & li {
          font-size: 1.3rem;
        }
        & .line {
          width: 10.5rem;
        }
      }
      & .row {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        & .form-group {
          width: 12rem;
        }
      }
      & .form-group {
        width: 25rem;
        padding: 1rem 1.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.2rem;

        & input {
          font-size: 1.4rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        margin: 0.5rem 0 1.5rem 0;
        flex-direction: column;
        row-gap: 1rem;

        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1rem;
            height: 1rem;
          }
          & p {
            font-size: 1.2rem;
          }
        }

        & .request {
          & a {
            font-size: 1.2rem;
          }
        }
      }
      & button {
        width: 22rem;
        padding: 1.2rem 1.4rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.4rem;
        margin-bottom: 1.4rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.3rem;
        }
      }
    }
  }
}
@media (max-width: 300px) {
  #register {
    margin-top: 6rem;
    & form {
      & .headerLogin {
        row-gap: 1rem;
        margin-bottom: 1rem;
        & h1 {
          font-size: 2.2rem;
          margin-bottom: 1.4rem;
        }
        & p {
          font-size: 1.2rem;
          margin-bottom: 0.8rem;
        }
      }
      & .auth {
        width: 20rem;
        padding: 0.8rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.4rem;
        & i {
          font-size: 1.8rem;
        }
        & p {
          font-size: 1.2rem;
        }
      }
      & ul {
        column-gap: 0.8rem;
        margin-bottom: 1.2rem;

        & li {
          font-size: 1.2rem;
        }
        & .line {
          width: 8.5rem;
        }
      }
      & .row {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        & .form-group {
          width: 9.5rem;
        }
      }
      & .form-group {
        width: 20rem;
        padding: 0.8rem 1.6rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        margin-bottom: 1.2rem;

        & input {
          font-size: 1.3rem;
          width: 100%;
        }
      }
      & .remenberRequest {
        margin: 0.5rem 0 1.2rem 0;
        flex-direction: column;
        row-gap: 1rem;

        & .remember {
          column-gap: 0.5rem;
          & input {
            width: 1rem;
            height: 1rem;
          }
          & p {
            font-size: 1.1rem;
          }
        }

        & .request {
          & a {
            font-size: 1.1rem;
          }
        }
      }
      & button {
        width: 18rem;
        padding: 1rem 1.2rem;
        border-radius: 5rem;
        column-gap: 0.8rem;
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
      }
      & .dontAccount {
        & p {
          font-size: 1.2rem;
          letter-spacing: -0.4px;
        }
      }
    }
  }
}

.side {
  transform: translateX(-14%) !important;
}
& .border {
  text-decoration: line-through;
  color: #ff0000;
}
.line {
  border-bottom: 2px solid #aaa;
  width: 15.5rem;
}
