* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Outfit", serif;
}

:root {
    --main-color: #000000;
    --sec-color: #FFFFFF;
    --bg-1-color: #F5F5F5;
    --hov-color: #E53637;
    --icon-color: #FFA534;
    --p-color: #3D3D3D;
    

    --h1-font: 4rem;
    --h2-font: 2.25rem;
    --h3-font: 1.563rem;
    --h4-font: 1.125rem;
    --p-font: 1rem;
    --sm-font: 0.875rem;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 13%;
}

.logo img {
    width: 100px;
    height: auto;
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation a {
    color: black;
    font-size: var(--p-color);
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: all .42s;
}

.navigation a:hover {
    color: var(--hov-color);
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-icon {
    color: var(--main-color);
    font-size: var(--h3-font);
    margin-right: 12px;
    transition: all .42s;
}

.nav-icon i:hover {
    color: var(--hov-color);
}

#menu-iocn {
    color: var(--main-color);
    font-size: var(--h2-font);
    z-index: 10001;
    cursor: pointer;
    display: none;
}

/* Home Section CSS */
section {
    padding: 100px 13% 80px;
}

.home {
    width: 100%;
    height: 100vh;
    background-image: url(imagens/image/banner.png);
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    align-items: center;
}

.home-text h4{
    color: var(--hov-color);
    font-size: var(--h4-font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.home-text h1 {
    color: var(--main-color);
    font-size: var(--h1-font);
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 16px;
}

.home-text p {
    max-width: 480px;
    color: var(--p-color);
    font-size: var(--h4-font);
    line-height: 28px;
    margin-bottom: 40px;
}

.home-btn {
    display: flex;
    align-items: center;
}

.home-btn a {
    display: inline-block;
    color: var(--sec-color);
    font-size: var(--p-font);
    text-transform: uppercase;
    font-weight: 500;
    background-color: var(--main-color);
    padding: 12px 30px;
    border-radius: 5px;
    letter-spacing: 1px;
    margin-right: 20px;
    transition: all .42s;
}

.home-btn .btn-2 {
    background-color: var(--sec-color);
    color: var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0pc 1px 4px;
}

.home-btn .btn-2:hover {
    background-color: var(--main-color);
    color: var(--sec-color);
}

.home-btn .btn-1:hover {
    background-color: var(--sec-color);
    color: var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0pc 1px 4px;
}

.infinite {
    background-color: var(--main-color);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 15px;
}

.infi-logo {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    animation: 30s slide infinite linear;
}

.infi-logo h4 {
    color: var(--sec-color);
    font-size: var(--h2-font);
    font-weight: 600;
    margin-right: 72px;
    cursor: pointer;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Sticky header css */
header.sticky {
    background-color: var(--bg-1-color);
    padding: 15px 13%;
    box-shadow: 0px 5px 15px rgba(0 0 0 / 8%);
    transition: all .42s;
}

/* Produto adicionado recentemente css */
.added-product {
    background-color: var(--bg-1-color);
}

.product-title {
    text-align: center;
    margin-bottom: 65px;
}

.product-title h2 {
    font-size: var(--h2-font);
    color: var(--main-color);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.product-title p {
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 400;
}

.main-product {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 2rem;
}

.pro-detls {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    background-color: var(--sec-color);
    border: 1px solid var(--main-color);
    cursor: pointer;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all .42s;
}

.product img {
    width: 120px;
    height: auto;
}

.pro-detls:hover {
    transform: translateY(-5px);
}

.pro-img {
    background-color: var(--bg-1-color);
}

.product {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pro-icon i {
    color: var(--icon-color);
    font-size: var(--sm-font);
}

.pro-text h4 {
    color: var(--main-color);
    font-size: var(--h4-font);
    margin: 4px 0px;
}

.pro-text h5 {
    font-weight: 700;
    font-size: var(--p-font);
}

.pro-text span {
    text-decoration: line-through;
    font-size: var(--p-font);
    color: var(--p-color);
    font-weight: 600;
    margin-right: 5px;
}

.pro-text .cart {
    position: absolute;
    bottom: 0;
    right: 0;
}

.cart {
    background-color: var(--main-color);
    padding: 8px 10px;
    border-top-left-radius: 15px;
}

.cart h3 {
    color: var(--sec-color);
    font-size: var(--sm-font);
}

/* Novo produto section css */
.new-product {
    background-color: var(--sec-color);
}

.humb-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, auto));
    gap: 2.5rem;
}

.new-top h2 {
    color: var(--main-color);
    font-size: var(--h2-font);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.new-top p {
    color: var(--p-color);
    font-size: var(--h4-font);
    font-weight: 400;
}

.new-top {
    text-align: center;
    margin-bottom: 65px;
}

.row {
    position: relative;
    transition: all .42s;
}

.row img {
    overflow: hidden;
}

.row-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    cursor: pointer;
}

.row-img:hover img {
    transform: scale(1.07);
}

.main-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price h4 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 500;
    text-transform: capitalize;
    margin: 10px 0px 6px 0px;
}

.ratting i {
    color: var(--icon-color);
    font-size: var(--sm-font);
    margin-bottom: 5px;
}

.price h6 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 600;
}

.size a {
    color: var(--main-color);
    font-size: 8px;
    font-weight: 600;
    border: 1px solid var(--main-color);
    padding: 4px 5px;
    border-radius: 2px;
    margin-right: 4px;
    transition: all .42s;
}

.size a:hover {
    background-color: var(--main-color);
    color: var(--sec-color);
}

.hover-icons {
    position: absolute;
    top: 3%;
    right: 3%;
}

.row .hover-icons i {
    display: block;
    margin: 10px;
    background: var(--sec-color);
    font-size: var(--h4-font);
    color: var(--main-color);
    border-radius: 4px;
    transition: all .42s;
    padding: 8px;
    opacity: 0;
}

.row .hover-icons i:hover {
    background-color: var(--main-color);
    color: var(--sec-color);
}

.row:hover .hover-icons i {
    opacity: 1;
}

/* Desconto Section Css */

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

.dis-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: var(--sec-color);
    margin-bottom: 80px;
}

.dis-top h4 {
    color: var(--main-color);
    font-size: var(--h3-font);
    font-weight: 600;
    text-transform: capitalize;
}

.dis-top span {
    color: var(--hov-color);
    text-decoration: underline;
    font-weight: 700;
}

.dis-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dis-btn i {
    color: var(--hov-color);
    font-size: var(--h3-font);
    margin-right: 2px;
}

.dis-btn span {
    font-size: var(--p-font);
    text-transform: capitalize;
    font-weight: 700;
}

.main-dis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 2.5rem;
}

.dis-img img {
    max-width: 100%;
    width: 300px;
    height: auto;
    cursor: pointer;
    transition: all .42s;
}

.dis-img:hover {
    filter: brightness(70%);
}

.method img {
    width: 300px;
    height: auto;
    cursor: pointer;
}

.deliv-img img {
    width: 50px;
    height: auto;
}

.dis-text h3 {
    color: var(--main-color);
    font-size: var(--h3-font);
    line-height: 1.4;
    font-weight: 700;
    text-transform: capitalize;
}

.dis-text p {
    max-width: 400px;
    color: var(--p-color);
    font-size: var(--p-font);
    line-height: 26px;
    margin: 30px 0px;
}

.dis-text hr {
    width: 100%;
    margin-bottom: 30px;
}

.dis-text h5 {
    color: var(--main-color);
    font-size: var(--h3-font);
    font-weight: 700;
    margin-bottom: 8px;
}

.dis-text h6 {
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin-bottom: 20px;
}

.deliv-1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    border: 1px solid var(--main-color);
    padding: 15px 15px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    transition: all .42s;
}

.deliv-text h5 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.deliv-text p {
    color: var(--p-color);
    font-size: var(--p-font);
    line-height: 24px;
}

.deliv-1:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Seção de Look Inteira CSS */
.entire {
    background-color: var(--sec-color);
}

.main-entire  {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}

.entire-img img {
    width: 400px;
    height: auto;
}

.img-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.img-1 img {
    width: 90px;
    height: auto;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    transition: transform 0.5s;
}

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

.main-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 20px;
}

.entire-text h2 {
    color: var(--main-color);
    font-size: var(--h2-font);
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.entire-text p {
    color: var(--p-color);
    font-size: var(--p-font);
    margin-bottom: 50px;
}

.text-1 h4 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.text-1 h5 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 600;
    margin-bottom: 10px;
}

.text-1 h5 span {
    color: var(--p-color);
    text-transform: capitalize;
    margin-left: 6px;
}

.text-1 h6 {
    color: var(--hov-color);
    font-size: var(--p-font);
    font-weight: 500;
    text-transform: capitalize;
}

.view-btn a {
    display: inline-block;
    color: var(--main-color);
    font-size: var(--p-font);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: underline var(--main-color);
    transition: all .42s;
}

.view-btn a:hover {
    color: var(--hov-color);
    text-decoration: underline var(--hov-color);
    transform: translateY(-5px);
}

/* Blog Section CSS */
.blog {
    background-color: var(--bg-1-color);
}

.blog-top {
    text-align: center;
    margin-bottom: 65px
}

.blog-top h2 {
    font-size: var(--h2-font);
    color: var(--main-color);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.blog-top p {
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 400;
}

.main-blog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 1.5rem;
}

.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 200px;
    display: block;
    transition: transform 0.5s;
    cursor: pointer;
}

.blog-img:hover img {
    filter: brightness(70%);
    transform: scale(1.1);
}

.blog-text h6 {
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 500;
    text-transform: capitalize;
    margin: 12px 0px 8px 0px;
}

.blog-text h6 span {
    color: var(--main-color);
    font-weight: 600;
}

.blog-text h4 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all .42s;
}

.blog-text h4:hover {
    color: var(--hov-color);
}

.blog-text a {
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 600;
    text-decoration: underline var(--p-color);
    transition: all .42s;
}

.blog-text a:hover {
    color: var(--hov-color);
    text-decoration: underline var(--hov-color);
    transform: translateX(5px);
}

/* Contato Section CSS */
.contact {
    background-color: var(--bg-1-color);
    border-top: 1px solid var(--p-color);
}

.main-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    gap: 1.5rem;
}

.cont-1 img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.cont-1 p {
    max-width: 500px;
    font-size: var(--p-font);
    color: var(--p-color);
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 25px;
}

.cont-1 i{
    color: var(--main-color);
    font-size: var(--h3-font);
    margin-right: 18px;
    transition: all .42s;
}

.cont-1 i:hover {
    color: var(--hov-color);
    transform: translateY(-5px);
}

.cont h4 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 600;
    text-transform: capitalize;
    padding: 2px 0px;
    display: inline-block;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--main-color)
}

.cont a {
    display: block;
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 34px;
    transition: all .42s
}

.cont a:hover {
    color: var(--hov-color);
    transform: translateY(-5px);
}

.cont-4 h4 {
    color: var(--main-color);
    font-size: var(--h4-font);
    font-weight: 600;
    text-transform: capitalize;
    padding: 2px 0px;
    display: inline-block;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--main-color);
}

.cont-4 p {
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 400;
    text-transform: inherit;
    margin-bottom: 15px;
}

.cont-4 input {
    display: block;
    width: 100%;
    height: 40px;
    padding-left: 10px;
    outline: none;
    border: 1px solid var(--main-color);
    margin-bottom: 30px
}

::placeholder {
    font-size: var(--p-font);
}

.cont-btn {
    display: inline-block;
    color: var(--sec-color);
    font-size: var(--h4-font);
    font-weight: 400;
    border-radius: 4px;
    border: 2px solid var(--main-color);
    background-color: var(--main-color);
    padding: 10px 25px;
    margin: 0px 40px 20px 0px;
    transition: all .42s;
}

.cont-btn:hover {
    background-color: transparent;
    color: var(--main-color);
}

.up-icon i {
    width: 45px;
    height: 45px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    align-items: center;
    justify-content: center;
    display: inline-flex;
    font-size: var(--h4-font);
    border-radius: 30px;
    transition: all .42s;
}

.up-icon i:hover {
    background-color: var(--main-color);
    color: var(--sec-color);
    transform: translateY(-5px)
}

.footer {
    background-color: var(--bg-1-color);
    border-top: 1px solid var(--p-color);
    padding: 20px 13%;
}

.main-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 400;
    text-transform: inherit;
}

.footer-right a {
    color: var(--p-color);
    font-size: var(--p-font);
    font-weight: 400;
    text-transform: capitalize;
    transition: all .42s;
}

.footer-right a span {
    margin-left: 25px;
    color: var(--main-color);
}

.footer-right a:hover {
    color: var(--main-color);
}