* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'poppins';
}

.logo {
    width: 250px;
    height: auto;
    padding: 0;
    margin: 0;
}

.header-inner-content {
    margin-left: auto;
    margin-right: auto;
}


.nome-site {
    color: #fff;
}

.nome-site span {
    color: #9e2fe2;
    font-weight: normal;
}


.navbar {
    background-color: #000;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    box-shadow: 10px 0px 10px #323232;
    z-index: 99;
}

nav ul li a {
    text-decoration: none; 
    color: inherit; 
    font-weight: normal; 
}

.navbar>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-icon-container {
    position: absolute;
    right: 20px;
    top: 15px;
    display: none;
    color: #9e2fe2;
}

.menu-button {
    display: none;
}

nav ul li {
    color: #ffff;
    margin-right: 1.5rem;
    cursor: pointer;
}

nav ul li:hover {
    transform: translateY(-5px);
    transition: all 0.2s;
    font-weight: bold;
}

.logo-adjust {
    position: relative;
    top: -10px;
    left: 10px;
}



.header-inner-content-banner {
    background-color: #e8e8e8;
    border: none;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    box-shadow: 10px 10px 10px #b2afaf;
}

.header-bottom-side {
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 1rem;

}

.header-bottom-side-left h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.header-bottom-side-left p {
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.header-bottom-side-left button {
    background-color: #9e2fe2;
    border: none;
    cursor: pointer;
    padding: 0.8rem 3.8rem;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.2;
}

.header-bottom-side-left button:hover {
    background-color: #9f5dc2;

}

.header-bottom-side-left {
    height: 100%;
    flex-basis: 50%;
    margin-left: 1rem;
}


.header-bottom-side-right {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-bottom-side-right img {
    width: 50%;
    position: relative;
}


/* main produto */

main {
    background-color: #fff;
}

.cols {
    display: grid;
    justify-content: space-between;
    padding: 4rem 1rem;
}

.cols-3 img {
    max-width: 100%;
    max-height: 100%;
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.cols>* {
    cursor: pointer;
    transition: all 0.2s;
}

.cols>*:hover {
    transform: translateY(-5px);
}

.section-title {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.8rem;
}

.sec{
    text-align: center;
    margin-top: 0rem;
    font-size: 1.8rem;
}

.subtitle-underline {
    width: 100px;
    height: 5px;
    background-color: #9e2fe2;
    border-radius: 9999px;
    margin: 8px auto 0 auto;

}

.product {
    color: #2c2c2c;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.product-link {
    text-decoration: none; 
    color: inherit;
    display: block;
}


.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 4px 10px 20px #6c6a6a;
}

.product-name {
    font-weight: 600;
    margin-top: 0.4rem;
}

.rate {
    color: #9e2fe2;
    font-size: 1.2rem;
    font-weight: bold;
}

.product-price {
    font-size: 1.2rem;
}

.product-price del {
    color: #999;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-price span {
    color: #2c2c2c;
    font-weight: bold;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: -25px;
    margin-bottom: 2rem;
}

.see-all {
    background-color: #9e2fe2;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
}

.see-all:hover {
    background-color: #5a099d;
}


/* categorias */

.categories-content {
    background-color: #DCDCDC;
    padding: 4rem 1rem;
    text-align: center; 
    width: 100%;
}


.categories-container {
    display: flex; 
    justify-content: center; 
    gap: 9rem; 
    margin-top: 2rem; 
    flex-wrap: wrap; 

}

.categories {
    background-color: #fff;
    border-radius: 15px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px #6c6a6a;
    border-left: 8px solid #9e2fe2;
    width: 200px; 
    padding: 0 1rem; 
    cursor: pointer;
    transition: all 0.2s;
}

.categories i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #9e2fe2;
}

.categories p {
    margin: 0;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}

.categories:hover{
    transform: translateY(-5px);
}



/* Seção de convencimento */
.convince-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.convince-content {
    max-width: 50%;
}

.convince-content h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
}

.convince-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.convince-content .cta-button {
    background-color: #9e2fe2;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.convince-content .cta-button:hover {
    background-color: #7b1fa2;
}

.convince-image img {
    width: 450px;
}



.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-media {
    margin-top: 10px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.social-link:hover {
    text-decoration: underline;
}


@media (max-width: 800px) {
    
    .header-bottom-side {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-top: 4rem;
        display: flex;
        justify-content: center; 
        gap: 2rem; 
    }


    .header-bottom-side-left,
    .header-bottom-side-right {
        width: 100%; 
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .header-bottom-side-right img {
        margin-top: 0; 
        max-width: 80%; 
    }

    
    .nav-icon-container {
        display: block;
    }

    nav {
        position: absolute;
        background-color: #000;
        width: 100%;
        top: 46px;
        display: none;
    }

    .show-menu nav {
        display: block;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        text-align: center;
        padding: 0.8rem;
    }

    .menu-button {
        display: block;
    }

   
    .cols.cols-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        gap: 2rem; 
    }

    .product {
        width: 80%; 
        text-align: center;
    }

    
    .convince-section {
        flex-direction: column;
        text-align: center;
    }

    .convince-content {
        max-width: 100%; 
        margin-bottom: 2rem;
    }

    .convince-image img {
        max-width: 80%; 
    }
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  