:root {
    --main-bg-color: #fff;
    --second-bg-color: #f5f5f5;
    --third-bg-color: #e3e3e3;
    --grey: #4b4b4b;
    --black: #000;
    --pale-spring-bud: rgb(0, 175, 239);
  /**
   *--pale-spring-bud: rgb(255, 51, 153);
   */
    --hoockers-green: rgb(16, 20, 39);
    --verde: rgb(12,248,182);
    --top-header-size: 30px;
    --mid-header-size: 80px;
    --bottom-header-size: 45px;
    --btn-bg: #000;
    --btn-border-color: #000;
    --btn-color: #fff;
    --cultured-1: hsl(0, 0%, 97%);
    --white: hsl(0, 0%, 100%);
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
    --gray-web: hsl(0, 0%, 49%);
    --brancogelo: rgb(245, 245, 245);

    --white_30: hsl(0, 0%, 100%, 0.3);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_15: hsla(0, 0%, 0%, 0.15);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_5: hsla(0, 0%, 0%, 0.05);


    /**
   * shadow
   */

  --shadow-1: 0 8px 16px var(--black_15);
  --shadow-2: 0 4px 10px var(--black_5);

  /**
   * radius
   */

  --radius-3: 3px;

  /**
   * transition
   */

   --transition-1: 0.25s ease;
   --transition-2: 0.5s ease;
   --transition-3: 1s ease;
   --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
   --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}



body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    position: relative;
    background-color: var(--main-bg-color);
    overflow-x: hidden;
}

button {
    cursor: pointer;
}

a {
    display: inline-block;
    text-decoration: none;
    color: unset;
}

li {
    list-style-type: none;
}

.social-list {
    display: flex;
    gap: 20px;

}

.social-link {
    color: #000;
    font-size: 24px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin-top: 20px;
    transition: var(--transition-1);
}

img {
    max-width: 100%;
}

.container-app {
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.alert {
    background-color: var(--pale-spring-bud);
    color: var(--black);
    font-size: var(--fs-7);
    text-transform: uppercase;
    font-weight: var(--fw-700);
    letter-spacing: 2px;
    text-align: center;
    padding-block: 8px;
}

.alert .alert-text {
    font-weight: 500;
}

.hidden {
    display: none;
}

.badge {
    max-width: max-content;
    background-color: var(--hoockers-green);
    color: var(--white);
    font-weight: var(--fw-700);
    padding-inline: 12px;
    border-radius: var(--radius-3);
}

.bg-second {
    background-color: var(--second-bg-color);
}

.bg-main {
    background-color: var(--main-bg-color);
}

.text-red {
    color: var(--hoockers-green);
}

html {
    
    scroll-behavior: smooth;
  }

.mobile-menu {
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    display: none;
}

.mb-menu-close {
    display: none;
}

.top-header {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header ul {
    display: flex;
}

.top-header a {
    font-size: 13px;
}

ul.devided>li {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid;
}

ul.devided>li:last-child {
    border-right: none;
}

/* dropdown */
.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-content {
    display: flex;
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    /* display: flex; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 10px);
    background-color: #fff;
    flex-direction: column;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.dropdown-content>li>a {
    padding: 10px;
}

.dropdown-content>li:hover {
    color: var(--hoockers-green);
}

/* end dropdown */

.mid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background-color: var(--main-bg-color);
    margin-left: 40px;
    margin-right: 40px;
}

.mid-header .logo2 {
    margin-top: 10px;
}



.logo {
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
}

.footer .logo-footer {
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
}

.mb-logo {
    font-size: 25px;
    font-weight: 700;
}

.search {
    width: 600px;
    height: 40px;
    position: relative;
}

.search2 {
    width: 100%;
    height: 0px;
    margin-bottom: 20px;
    margin-top: -30px;
    display: none;
    position: relative;
}

.search3 {
    width: 100%;
    height: 0px;
    margin-bottom: 20px;
    margin-top: -30px;
    display: none;
    position: relative;
}

.search3 input {
    height: 100%;
    width: 100%;
    font-size: 16px;
    outline: 0;
    padding: 0 20px;
    border-radius: 10px;
    border: 2px solid var(--hoockers-green);
    background-color: var(--white);
}

.search3 i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    cursor: pointer;
    font-size: 25px;
    color: var(--pale-spring-bud);
}


.search2 input {
    height: 100%;
    width: 100%;
    font-size: 16px;
    outline: 0;
    padding: 0 20px;
    border-radius: 10px;
    border: 2px solid var(--hoockers-green);
    background-color: var(--white);
}

.search2 i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    cursor: pointer;
    font-size: 25px;
    color: var(--pale-spring-bud);
}

.search input {
    height: 100%;
    width: 100%;
    font-size: 16px;
    outline: 0;
    padding: 0 20px;
    border-radius: 10px;
    border: 2px solid var(--hoockers-green);
    background-color: var(--white);
}

.search i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    cursor: pointer;
    color: var(--pale-spring-bud);
    font-size: 25px;
}

.user-menu {
    display: flex;
}

.user-menu>li>a {
    font-size: 30px;
    margin-left: 15px;
}

.bottom-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu {
    display: flex;
    height: var(--bottom-header-size);
}

.main-menu>li>a {
    display: flex;
    align-items: center;
    margin: 0 0px;
    font-weight: 400;
    height: 100%;
}

.main-menu>li {
    border-bottom: 1px solid transparent;
    border-top: 2px solid transparent;
    margin-right: 40px;
    margin-left: 30px;
}

.main-menu>li:hover {
    border-bottom: 2px solid var(--hoockers-green);
}

/* mega menu */

.mega-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    background-color: var(--main-bg-color);
    width: 100%;
    top: calc(100% + 100px);
    z-index: 2;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mega-dropdown:hover .mega-content {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.mega-content h3 {
    margin: 20px 0;
    padding-left: 20px;
}

.mega-content ul {
    display: flex;
    flex-direction: column;
}

.mega-content ul>li>a {
    font-weight: normal;
    padding: 10px 0;
    border-bottom: 2px dashed #f5f5f5;
    transition: padding-left 0.2s ease-in-out;
    margin: 0 20px;
    text-transform: capitalize;
}

.mega-content ul>li>a:hover {
    padding-left: 10px;
}

.mega-content ul>li {
    border-bottom: 2px solid transparent;
}

.mega-content ul>li:hover {
    border-bottom: 2px solid var(--hoockers-green);
}

/* end mega menu */

.box {
    padding: 20px;
}

.box-2 {
    padding: 20px;
    min-height: 370px;
    display: block;
}

.hero {
    height: calc(100vh - (var(--top-header-size) + var(--mid-header-size) + var(--bottom-header-size)));
    padding: 0 20px;
}

.slider,
.slider .container {
    height: 100%;
    position: relative;
}

.slide {
    height: 0;
    position: absolute;
    display: flex;
    inset: 0;
    overflow: hidden;
    visibility: hidden;
}

.slide.active {
    visibility: visible;
    height: 100%;
}

.slide .info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.info-content h2 {
    font-size: 70px;
    margin: 10px 0 35px;
}

.info-content button {
    margin-top: 30px;
}

.slide .img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-flat {
    display: inline-block;
    border: 2px solid var(--btn-border-color);
    background-color: var(--btn-bg);
    color: var(--btn-color);
    padding: 15px 35px;
    font-size: 15px;
    outline: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-flat-details {
    display: inline-block;
    width: 270px;
    border: 2px solid var(--btn-border-color);
    background-color: var(--btn-bg);
    color: var(--btn-color);
    padding: 15px 35px;
    font-size: 12px;
    outline: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-flat-details-2 {
    display: inline-block;
    width: 270px;
    border: 2px solid var(--btn-border-color);
    background-color: var(--white);
    color: var(--black);
    padding: 15px 35px;
    font-size: 12px;
    outline: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-hover {
    transition: all 0.3s ease-in-out;
}

.btn-hover:hover {
    background-color: var(--btn-color);
    color: var(--btn-bg);
}

.slide-controll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    outline: 0;
    border: 0;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    align-items: center;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide-controll:hover {
    background-color: var(--btn-bg);
    color: var(--btn-color);
}

.slide-next {
    right: -80px;
}

.slide-prev {
    left: -80px;
}

.slider:hover .slide-next {
    right: 50px;
}

.slider:hover .slide-prev {
    left: 50px;
}

/* slide animation */
.top-down {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .top-down {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.right-left {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.active .right-left {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.left-right {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.copyright-menu { 
    font-size: var(--fs-7);
    margin-top: 40px;
    display: none;
    justify-content: center;
    cursor: pointer; }
    

.slide.active .left-right {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* end slide animation */

.texttitlecarrinho{
    font-weight: 600;
    font-size: 20px;
    margin-left: 30px;
    color: var(--pale-spring-bud);
    text-transform: uppercase;

}

.trans-delay-0-2 {
    transition-delay: 0.2s;
}

.trans-delay-0-4 {
    transition-delay: 0.4s;
}

.trans-delay-0-6 {
    transition-delay: 0.6s;
}

.trans-delay-0-8 {
    transition-delay: 0.8s;
}

.promotion {
    padding: 15px;
}

.promotion [class*="col-"] {
    padding: 15px;
}

.promotion-box {
    display: flex;
    background-color: var(--third-bg-color);
    position: relative;
}

.promotion-box .text {
    flex-grow: 1;
    padding: 20px;
}

.promotion-box .text h3 {
    font-size: 25px;
}

.promotion-box .text button {
    margin-top: 30px;
}

.promotion-box img {
    width: 150px;
    transition: transform 0.3s ease-in-out;
}

.promotion-box:hover img {
    transform: scale(1.1);
}

.section {
    padding: 60px 0;
}

.section-header,
.section-footer {
    text-align: center;
    margin: 80px 0 70px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 40px;
}

.product-card {
    background-color: var(--main-bg-color);
    transition: all 0.3s ease-in-out;
}

.product-card:hover {
    background-color: var(--white);
}

.product-card-img {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img img {
    max-height: 100%;
    transition: all 0.3s ease-in-out;
}

.product-card-img img:nth-child(2) {
    display: none;
}

.product-card:hover .product-card-img img:nth-child(1) {
    display: none;
}

.product-card:hover .product-card-img img:nth-child(2) {
    display: block;
}

.product-card-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.product-card-name {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card-price {
    font-size: 15px;
}

.product-card-price .curr-price {
    margin-left: 5px;
    font-size: 20px;
    font-weight: 600;
    color: var(--hoockers-green);
}

.product-btn {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.product-card:hover .product-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-btn>*~* {
    margin-left: 5px;
}

.btn-shop-now,
.btn-cart-add {
    font-size: 15px;
    padding: 5px 10px;
    line-height: 17px;
}

.sp-item-name {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 30px;
}

.sp-item-description {
    margin-bottom: 60px;
    text-align: justify;
}

.blog {
    display: flex;
    margin-bottom: 60px;
}

.blog-img,
.blog-info {
    width: 50%;
}

.blog-info {
    padding: 50px;
}

.blog-title {
    font-size: 30px;
    margin-bottom: 30px;
}

.blog-preview {
    text-align: justify;
    margin-bottom: 50px;
}

footer {

    width: 100%;
    background: var(--cultured-1);
}

footer .container-footer {
    background: var(--cultured-1);
}



.footer-bottom {
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-block-end: 20px;
}

.footer-head {
    margin-bottom: 20px;
    text-transform: uppercase;
}

footer ul li {
    margin-bottom: 10px;
}

.contact-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 38px;
}

.contact-socials {
    display: flex;
    justify-content: center;
}

.contact-socials a {
    font-size: 30px;
    margin: 0 10px;
}

.contact-socials a:hover {
    color: var(--grey);
}

.menu li a {
    text-transform: capitalize;
    transition: transform 0.3s ease-in-out;
}

.menu li a:hover {
    color: var(--hoockers-green);
    transform: translateX(10px);
}

.subscribe {
    position: relative;
    margin-top: 20px;
}

.subscribe input {
    width: 100%;
    height: 50px;
    outline: 0;
    border: 0;
    padding: 0 30px;
}

.subscribe button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    outline: 0;
    border: 0;
    background-color: var(--hoockers-green);
    color: var(--btn-color);
    padding: 10px;
    text-transform: uppercase;
}

.subscribe button:hover {
    background-color: var(--black);
}

.mb-menu-toggle {
    font-size: 25px;
    margin-right: 10px;
}

.btn-car {
    position: fixed;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    display: flex;
    bottom: 100px;
    right: 20px;
    background-color: var(--white);
    color: var(--black);
    font-size: 27px;
    padding: 13px;
    border-radius: 50%;
    box-shadow: var(--shadow-1);
}

.btn-car-detail {
    position: fixed;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    display: flex;
    bottom: 50px;
    right: 40px;
    background-color: var(--pale-spring-bud);
    color: var(--white);
    font-size: 27px;
    padding: 13px;
    border-radius: 50%;
    box-shadow: var(--shadow-1);
}

.btn-top {
    position: fixed;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    display: flex;
    bottom: 30px;
    right: 20px;
    background-color: var(--pale-spring-bud);
    color: var(--white);
    font-size: 27px;
    padding: 13px;
    border-radius: 50%;
    box-shadow: var(--shadow-1);
  }



  .btn-top2 {
    position: fixed;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    display: flex;
    bottom: 30px;
    right: 20px;
    background-color: var(--hoockers-green);
    color: var(--white);
    font-size: 27px;
    padding: 13px;
    border-radius: 50%;
    box-shadow: var(--shadow-1);
    z-index: 4;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
}



.breadcumb {
    font-weight: 600;
    padding-left: 20px;
}

.breadcumb a {
    text-transform: capitalize;
}

.breadcumb a:hover {
    color: var(--hoockers-green);
}

.breadcumb span {
    margin: 0 15px;
}

.filter-header {
    display: block;
    margin: 20px 0;
    font-weight: 600;
    text-transform: capitalize;
}

.filter-list>li {
    margin-bottom: 20px;
    cursor: pointer;
}

.filter-toggle-box {
    display: none;
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-range span {
    flex-grow: 1;
    text-align: center;
    margin: 0 10px;
}

.price-range input {
    width: 40%;
    outline: none;
    padding: 5px;
}

.group-checkbox {
    text-align: left;
}

.group-checkbox input {
    opacity: 0;
    height: 0;
    width: 0;
    cursor: pointer;
}

.group-checkbox label {
    cursor: pointer;
    padding-left: 40px;
    position: relative;
}

.group-checkbox label::before {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 22px;
    height: 22px;
    background-color: var(--main-bg-color);
    border: 2px solid #7b7979;
}

.group-checkbox label>i {
    position: absolute;
    left: 2px;
    top: -2px;
    color: var(--black);
    transform: scale(0);
    font-size: 21px;
    transition: transform 0.1s ease-in-out;
}

.group-checkbox input:checked+label i {
    transform: scale(1);
}

.rating i {
    color: #ffc107;
}

.rating5 i {
    color: #ffc107;
}

.rating4 i {
    color: #ffc107;
}

.rating3 i {
    color: #ffc107;
}

.rating2 i {
    color: #ffc107;
}

.rating1 i {
    color: #ffc107;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pagination>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-left: 5px;
    font-size: 20px;
}

.pagination>li>a.active {
    background-color: var(--black);
    color: var(--main-bg-color);
}

.pagination>li>a:hover {
    border: 2px solid var(--black);
}

.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img>img {
    max-width: 70%;
}

.product-img-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-item {
    width: 90px;
    cursor: pointer;
    margin: 0 10px;
    border: 1px solid var(--third-bg-color);
}

.product-img-item:hover {
    background-color: var(--second-bg-color);
}

.product-row {
    padding: 45px 0;
}

.product-info>*~* {
    margin-top: 25px;
    margin-right: 40px;
}

.product-info-detail-title {
    font-weight: 600;
    color: gray;
}

.product-description {
    font-size: 18px;
    text-align: justify;
}

.product-info-price {
    font-weight: 600;
    font-size: 30px;
    color: var(--hoockers-green);
}

.product-quantity-wrapper {
    display: flex;
    align-items: center;
}

.product-quantity {
    margin: 0 10px;
    font-size: 25px;
}

.product-quantity-btn {
    height: 30px;
    width: 30px;
    background-color: var(--pale-spring-bud);
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.product-quantity-btn i {
    font-size: 20px;
    color: var(--main-bg-color);
}

.box-header {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-left: 100px;
}

.product-detail-description {
    position: relative;
    margin-bottom: 90px;
}

.product-detail-description-content {
    text-align: justify;
    line-height: 26px;
    font-size: 16px;
    height: 300px;
    margin-left: 100px;
    margin-right: 100px;
    overflow-y: hidden;
    position: relative;
}

.product-detail-description-content.active {
    height: max-content;
}

.btn-view-description {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.user-rate {
    margin-bottom: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.user-avt {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.user-name {
    margin-left: 20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
}

.name {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.user-rate-content {
    line-height: 25px;
}

.social-list-menu {
    display: none;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: -20px;
    width: 100%;
    justify-content: center;

}



/* responsive */

@media only screen and (max-width: 1280px) {
    .mobile-menu {
        display: flex;
        padding-right: 60px;
    }

    .box-2 {
        padding: 20px;
        min-height: 900px;
    }

    .copyright-menu { 
        font-size: var(--fs-7);
        margin-top: 40px;
        display: flex;
        justify-content: center;
        cursor: pointer; }

    .header-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 100%;
        overflow-x: auto;
        position: fixed;
        top: 0;
        right: 100%;
        background-color: var(--brancogelo);
        z-index: 99;
        transition: right 0.3s ease-in-out;
    }

    .header-wrapper.active {
        right: 0;
    }

    .logo {
        font-size: 30px;
        cursor: pointer;
    }
    

    .logo-footer {
        font-size: 30px;
        cursor: pointer;
    }

    .mb-menu-close {
        display: block;
        position: absolute;
        right: 20px;
        top: 38px;
        z-index: 99;
        font-size: 25px;
    }

    .top-header {
        display: none;
    }

    .mid-header {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: -150px;
        height: unset;
        background-color: var(--brancogelo);

    }

    .mid-header>* {
        margin-top: 15px;
        margin-left: -100px;
    }

    .mid-header .logo {
        margin-top: 20px;
        margin-left: -40px;
    }

    .search {
        width: 100%;
    }

    .bottom-header {
        justify-content: flex-start;
        background: var(--brancogelo);
        display: block;
    }

    .main-menu {
        flex-direction: column;
        background: var(--brancogelo);
        height: unset;
    }




    .li-2 {
        list-style-type: none;
        list-style-position: inside;
        display: inline;
        margin-bottom: 10px;
    }

    .main-menu a {
        padding: 10px 0;
    }

    .mega-dropdown>a>i {
        display: none;
    }

    .mega-content {
        position: relative;
        opacity: 1;
        visibility: visible;
        box-shadow: unset;
        background-color: transparent;
        padding-left: 45px;
    }

    .mega-content h3 {
        font-size: 15px;
        padding: 5px 0;
        margin: unset;
    }

    .mega-content ul>li>a {
        padding: 5px 0;
    }

    .mega-content .img-row {
        display: none;
    }

    .hero {
        height: calc(80vh - (var(--top-header-size) + var(--mid-header-size) + var(--bottom-header-size)));
        margin-bottom: 60px;
    }

    .slide {
        flex-direction: column-reverse;
    }

    .slide>.info,
    .slide>.img {
        width: 100%;
    }

    .slide>.img>img {
        max-width: 300px;
    }

    .info-content p {
        display: none;
    }

    .info-content button {
        margin-top: unset;
    }

    .slide-next,
    .slider:hover .slide-next {
        right: 40%;
    }

    .slide-prev,
    .slider:hover .slide-prev {
        left: 40%;
    }

    .slide-next,
    .slide-prev {
        bottom: -70px;
        transform: unset;
        top: unset;
    }

    .product-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: relative;
        margin-bottom: 20px;
    }

    .sp-item-info {
        padding-right: 35px;
    }

    .blog {
        flex-wrap: wrap;
    }

    .blog-img,
    .blog-info {
        width: 100%;
    }

    .filter-toggle-box {
        display: block;
    }

    .filter-col {
        position: fixed;
        width: 100%;
        background-color: var(--main-bg-color);
        z-index: 98;
        left: 100%;
        height: 80vh;
        overflow-y: scroll;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transition: left 0.2s ease-in-out;
    }

    .filter-col.active {
        left: 0;
    }

    .pagination {
        justify-content: center;
    }

    footer {
        margin-top: 0px;
        width: 100%;
        background: var(--cultured-1);
    }

    footer .container-footer {
        background: var(--cultured-1);
    }


    footer .container-footer-2 {
        background: var(--cultured-1);
        position: fixed;
        top: 85%;
    }


    .footer-imglogo {
        display: none;
    }

    .footer-imgpaypal {
        margin-bottom: 40px;
    }

    .social-list {
        display: flex;
        gap: 20px;
        margin-top: -20px;
        margin-bottom: -20px;

    }

    .footer-bottom {
        margin-left: 40px;
        margin-right: 40px;
        display: flex;
    }

    .footer-bottom .wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        margin-block-end: 20px;
    }

    .product-detail-description-content {
        text-align: justify;
        line-height: 26px;
        font-size: 16px;
        height: 300px;
        margin-left: -20px;
        margin-right: 40px;
        overflow-y: hidden;
        position: relative;
    }

    .box-header {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 20px;
        margin-left: -20px;
    }

    .container {
        margin-left: 40px;
        margin-right: 20px;
    }

    .bg-second {
        background-color: var(--second-bg-color);
    
    }

    .alert,
    .search,
    .user-menu {
        display: none;
    }



    .social-list-menu {
        display: flex;
        gap: 20px;
        margin-bottom: -20px;
        width: 100%;
        justify-content: center;

    }

    .main-menu {
        margin-top: 40px;
        margin-left: -20px;
        background: var(--brancogelo);
        width: 100%;
    }

    .header-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 45%;
        overflow-x: auto;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        visibility: hidden;
        transform: translateX(-100%);
        background-color: var(--brancogelo);
        z-index: 6;
        transition: 0.25s var(--cubic-in);


    }

    .header-wrapper.active {
        visibility: visible;
        transform: translateX(0);
        transition: 0.4s var(--cubic-out);
        display: block;
    }

    .main-menu>li {
        border-bottom: 1px solid var(--gray-web);
        border-top: 2px solid transparent;
        margin-right: 40px;
        margin-left: 30px;
    }

    .texttitlecarrinho{
        font-weight: 600;
        font-size: 16px;
        margin-left: 10px;
        margin-top: 30px;
        color: var(--pale-spring-bud);
        text-transform: uppercase;
    
    }

    .search2 {
        width: 100%;
        height: 40px;
        margin-bottom: 20px;
        margin-top: -30px;
        display: block;
        position: relative;
    }
    
    .search2 input {
        height: 100%;
        width: 100%;
        font-size: 16px;
        outline: 0;
        padding: 0 20px;
        border-radius: 10px;
        border: 2px solid var(--hoockers-green);
        background-color: var(--white);
    }
    
    .search2 i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        cursor: pointer;
        font-size: 25px;
        color: var(--pale-spring-bud);
    }


    .search3 {
        width: 75%;
        height: 40px;
        margin-bottom: -30px;
        margin-top: 50px;
        margin-left: 50px;
        margin-right: 20px;
        display: block;
        position: relative;
    }
    
    .search3 input {
        height: 100%;
        width: 100%;
        font-size: 16px;
        outline: 0;
        padding: 0 20px;
        border-radius: 10px;
        border: 2px solid var(--hoockers-green);
        background-color: var(--white);
    }
    
    .search3 i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        cursor: pointer;
        font-size: 25px;
        color: var(--pale-spring-bud);
    }

}

@media only screen and (max-width: 750px) {
    .hero {
        height: calc(70vh - (var(--top-header-size) + var(--mid-header-size) + var(--bottom-header-size)));
        margin-bottom: 60px;
    }

    .box-2 {
        padding: 20px;
        min-height: 420px;
    }

    .mobile-menu {
        display: flex;
        padding-right: 30px;
        padding-left: 0px;
        background: var(--brancogelo);
    }

    .container {
        margin-left: 0px;
        margin-right: 0px;
    }

    .info-content h2 {
        margin: unset;
        font-size: 40px;
    }

    .box-header {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 20px;
        margin-left: 20px;
    }

    .product-detail-description-content {
        text-align: justify;
        line-height: 26px;
        font-size: 16px;
        height:max-content;
        max-height: 600px;
        margin-left: 20px;
        margin-right: 20px;
        overflow-y: hidden;
        position: relative;
    }

    .title-mobile {
        margin-left: 40px;
    }

    .product-info>*~* {
        margin-left: 40px;
    }

    .promotion {
        padding-top: 45px;
    }

    .promotion-box {
        height: unset;
    }

    .breadcumb {
        display: none;
    }

    footer {
        margin-top: 0px;
        width: 100%;
        background: var(--cultured-1);
        
    }



    footer .container-footer {
        background: var(--cultured-1);
    }

    footer .container-footer-2 {
        background: var(--cultured-1);
        position: fixed;
        top: 78%;
    }

    .footer-imglogo {
        display: none;
    }

    .footer-imgpaypal {
        margin-bottom: 40px;
    }

    .social-list {
        display: flex;
        gap: 20px;
        margin-top: -20px;
        margin-bottom: -20px;

    }

    .social-list-menu {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: -20px;
        width: 100%;
        justify-content: center;

    }

    .footer-bottom {
        margin-left: 40px;
        margin-right: 40px;
        display: block;
    }

    .footer-bottom .wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        margin-block-end: 20px;
    }

    .alert,
    .search,
    .user-menu {
        display: none;
    }

    .bottom-header .wrapper .logo {
        margin-top: 50px;
    }

    .main-menu {
        margin-top: 60px;
        margin-left: 20px;
        background: var(--brancogelo);
    }

    .li-2 {
        list-style-type: none;
        list-style-position: inside;
        display: inline;
        margin-bottom: 10px;
    }

    .header-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 80%;
        overflow-x: auto;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        visibility: hidden;
        transform: translateX(-100%);
        background-color: var(--brancogelo);
        z-index: 6;
        transition: 0.25s var(--cubic-in);


    }

    .header-wrapper.active {
        visibility: visible;
        transform: translateX(0);
        transition: 0.4s var(--cubic-out);
        display: block;
    }

    .main-menu>li {
        border-bottom: 1px solid var(--gray-web);
        border-top: 2px solid transparent;
        margin-right: 40px;
        margin-left: 30px;
    }

    
    .btn-car {
        position: fixed;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-items: center;
        justify-content: center;
        display: flex;
        bottom: 100px;
        right: 20px;
        background-color: var(--white);
        color: var(--black);
        font-size: 27px;
        padding: 13px;
        border-radius: 50%;
        box-shadow: var(--shadow-1);
    }


    .btn-top {
        position: fixed;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-items: center;
        justify-content: center;
        display: flex;
        bottom: 30px;
        right: 20px;
        background-color: var(--pale-spring-bud);
        color: var(--white);
        font-size: 27px;
        padding: 13px;
        border-radius: 50%;
        box-shadow: var(--shadow-1);
      }
    
    

      .btn-top2 {
        position: fixed;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-items: center;
        justify-content: center;
        display: flex;
        bottom: 30px;
        right: 20px;
        background-color: var(--hoockers-green);
        color: var(--white);
        font-size: 27px;
        padding: 13px;
        border-radius: 50%;
        box-shadow: var(--shadow-1);
        z-index: 4;
        transition: 0.5s ease;
      }


}