@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --rich-black-fogra-29: hsl(217, 28%, 9%);
    --bittersweet: hsl(5, 100%, 69%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --ff-poppins: 'poppins';
    --ff-bebas: 'Bebas Neue';
    --fs-1: 3rem;
    --fs-2: 2.6rem;
    --fs-3: 2.2rem;
    --fs-4: 2rem;
    --fs-5: 1.8rem;
    --fs-6: 1.6rem;
    --fs-7: 1.4rem;
    --fs-8: 1.2rem;
    --fw-300: 300;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);
    --section-padding: 60px;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    --border: 2rem solid rgba(0, 0, 0, .1);
    --outline: 1rem solid rgba(0, 0, 0, .1);
    --outline-hover: 2rem solid rgba(0, 0, 0);
}

h2 {
    font-family: var(--ff-bebas);
    font-size: var(--fs-1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


img,
span,
table,
tbody,
button,
ion-icon {
    display: block;
}

button,
input {
    font: inherit;
    background: none;
    border: none;
}

input {
    width: 100%;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
    line-height: 1.8;
}

html {
    font-family: var(--ff-poppins);
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    background: var(--white);
    font-size: 1.6rem;
    padding-block-start: 90px;
    width: 100%;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 70%);
}

.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10rem;
    padding: 1.5rem 3%;
    background-image: linear-gradient(to right, rgb(255, 209, 249), rgb(134, 142, 255));
    box-shadow: var(--box-shadow);
}

nav .active {
    font-weight: bold;
    color: var(--bittersweet) !important;
}

.header .logo {
    width: 23rem;
    margin-top: 4px;
    margin-bottom: -4px;
}

@media (max-width: 600px) {
    .header .logo {
        width: 23rem;
        margin-top: 8px;
        margin-bottom: -8px;
    }
}

.header .navbar a {
    font-size: 1.8rem;
    margin: 0 1.5rem;
    color: black;
    font-family: "poppins";
    text-decoration: none;
}

.header .navbar a:hover {
    color: hsl(5, 100%, 69%);
    transition: 0.2s;
}

.header .icons div {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: #ffffff;
    color: black;
    font-size: 2rem;
    margin-left: .3rem;
    text-align: center;
    cursor: pointer;
}

.header .icons div:hover {
    color: hsl(5, 100%, 69%);
}

#menu-btn {
    display: none;
}

.header .search-form.active {
    right: 2rem;
    transition: .3s linear;
}

.header .search-form {
    position: absolute;
    top: 110%;
    right: -110%;
    width: 50rem;
    background: white;
    height: 5rem;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.header .search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: black;
    padding: 0 1rem;
    outline: none;
    border: none;
}

.header .search-form label {
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: black;
    cursor: pointer;
}

.header .search-form label:hover {
    color: var(--bittersweet);
}



@media (min-width: 1200px) {

    :root {
        --fs-1: 5rem;
        --fs-2: 3.6rem;
    }

    .container {
        max-width: 1280px;
    }

}

.carousel {
    position: relative;
    width: 80%;
    max-width: 1300px;
    height: 80%;
    max-height: 700px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 6px 10px rgb(255, 255, 255);
    overflow: hidden;
    margin: 0 auto;
    margin-top: 2%;
}

@media screen and (max-width: 500px) {
    .carousel {
        height: 20%;
    }
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #000;
    cursor: pointer;
    z-index: 1;
}

.carousel .arrow.left {
    left: 10px;
}

.carousel .arrow.right {
    right: 10px;
}

.carousel .dots {
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.carousel .dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 15px;
    background-color: #ffffff00;
    border: 3px solid #000000;
    cursor: pointer;
    margin: 0 5px;
    transition: 0.5s;
    margin-top: 100px;
}

.carousel .dots .dot.active {
    background-color: #e70303;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

#service .se-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.200);
    border: 1px solid #dadada;
    border-radius: 4px;
    margin: 15px 0;
}

#service .se-box:hover {
    box-shadow: 20px 20px 54px rgba(70, 62, 221, 0.1);
}

#service .se-box img {
    width: 55%;
    margin-left: 25px;
    margin-bottom: 10px;
}

#service .se-box:nth-child(3) img {
    width: 40%;
    margin-left: 40px;
    margin-bottom: 10px;
}

#service .se-box:nth-child(1) img {
    width: 55%;
    height: 10%;
    margin-left: 30px;
    margin-bottom: 15px;
    margin-top: 15px;
}

#service .se-box:nth-child(4) img {
    width: 45%;
    margin-left: 35px;
    margin-bottom: 10px;
}

#service .se-box:nth-child(2) img {
    width: 55%;
    margin-left: 35px;
    margin-bottom: 10px;
}

#service .se-box h5 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    color: #088178;
    background-color: #fddde4;
}

#service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#product1 .pro {
    margin-bottom: 30px;
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.03);
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
    width: 24%;
    transition: 0.3s ease;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding-top: 10px 0;

}

#product1 .pro .des span {
    color: #8a8a8a;
    font-size: 13px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 15px;
}

#product1 .pro .des i {
    font-size: 12px;
    color: rgb(255, 217, 0);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #009b5a;
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    color: #088178;
    border: 1px solid #e8f6ea;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(imagens/b1.jpg);
    background-size: cover;
    width: 100%;
    height: 40vh;
    background-position: center;
}

#banner1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(imagens/b1.2.png);
    background-size: cover;
    width: 100%;
    height: 45vh;
    color: #ffffff;
    background-position: center;
}

#banner2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(imagens/b1.3.png);
    background-size: cover;
    width: 100%;
    height: 45vh;
    color: #000000;
    background-position: center;
}

#banner h4 {
    color: white;
    font-size: 16px;
}

#banner h2 {
    color: white;
    font-size: 30px;
    display: inline;
    padding: 10px 0;
}

#banner span {
    color: rgb(0, 199, 10);
}

button.normal {
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
    color: #ffffff;
    background-color: #00000057;
    cursor: pointer;
    border: 2px solid #fff;
    outline: none;
    transition: 0.2s;
}

#banner button:hover {
    background-color: #009b5a;
    color: #fff;
}

#banner1 button:hover {
    background-color: #009b5a;
    color: #fff;
}

#banner2 button:hover {
    background-color: #009b5a;
    color: #fff;
}

#sm-banner {
    display: flex;
}

#sm-banner .banner-box:hover button {
    background: #088178;
    border: 1px solid #088178;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(imagens/b3.webp);
    background-size: cover;
    min-width: 580px;
    height: 50vh;
    background-position: center;
    padding: 30px;
    margin-left: 20px;
    text-shadow: 0.2em 0.1em 0.1em #000000;
}

#sm-banner .banner-box2 {
    background-image: url(imagens/b4.webp);
    text-shadow: 0.2em 0.1em 0.1em #000000;
}

#sm-banner h4 {
    color: #fff;

}

#sm-banner h2 {
    color: #fff;
}

#sm-banner span {
    color: #fff;
    padding-bottom: 15px;
}

#banner3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(imagens/b7.jpg);
    background-size: cover;
    max-width: 30%;
    height: 30vh;
    background-position: center;
    justify-content: space-between;
    padding: 10px;
    color: #fff;
    text-shadow: 0.2em 0.1em 0.1em #000000;
}

#banner3 .banner-box4 {
    background-image: url(imagens/b5.webp);
    color: #fff;
    text-shadow: 0.2em 0.1em 0.1em #000000;
}

.banner-box1 {
    background-image: url(imagens/b10.webp) !important;
    color: #fff;
    text-shadow: 0.2em 0.1em 0.1em #000000;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
    min-width: 10%;
    margin: 2%;
}

#banner3 .h2 {
    color: #fff;
    padding-bottom: 15px;
}

#banner3 .h3 {
    color: #fff;
    padding-bottom: 15px;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #000;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2px;
}

footer .logo {
    margin-top: -2%;
    margin-bottom: 2%;
    margin-left: -8%;
    width: 20rem;
}

footer h4 {
    font-size: 15px;
    padding-bottom: 2px;
    color: #ffffff;
}

footer p {
    font-size: 13px;
    margin: 2px;
    color: #ffffff;
}

footer a {
    text-decoration: none;
    color: #dac400;
    font-size: 13px;
    margin: 0 0 8px 0;
    cursor: pointer;
}

footer .redes i {
    color: #ffffff;
    padding-right: 4px;
    cursor: pointer;
}

footer .redes i:hover,
footer a:hover {
    color: #1676ad;
}

footer .install .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
    width: 20rem;
}

footer .copyright {
    text-align: center;
    width: 100%;
}

header {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .logo {
        margin-right: 10px;
    }

    .menu-toggle {
        margin-left: 5px;
    }
}

@media (max-width: 480px) {
    .logo {
        margin-right: 13rem;
    }

    .menu-toggle {
        margin-left: 0;
    }
}

@media (max-width: 799px) {

    .section-p1 {
        padding: 40px 40px;
    }

    #service {
        justify-content: center;
    }

    #service .se-box {
        margin: 15px 15px;
    }

    #product1 .pro-container {
        justify-content: center;
    }

    #product1 .pro {
        margin: 20px;
    }

    .banner-box {
        margin-bottom: 5%;
    }

    #banner {
        height: 25vh;
    }

    #banner .banner-box {
        height: 25vh;
    }

    #sm-banner {
        flex-direction: column;
    }

    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
    }

    #banner3 {
        padding: 0 40px;
    }

    #banner3 .banner-box {
        width: 28%;
    }

}

@media (max-width: 575px) {
    #banner3 {
        padding: 0 40px;
        flex-wrap: wrap;
    }

    #banner3 .banner-box {
        width: 100%;
    }

    #banner3 h3 {
        font-size: 1.3rem;
    }

    #service {
        justify-content: space-between;
    }

    #service .se-box {
        width: 135px;
        margin: 0 0 15px 0;
    }

    #product .pro {
        width: 100%;
    }

}

@media (max-width: 400px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    #sm-banner .banner-box {
        font-size: 1.7rem;
        margin-left: -1rem;
    }

    #sm-banner .banner-box h2 {
        font-size: 2.2rem;
    }

    #banner h2 {
        font-size: 2rem;
    }

    #banner h4 {
        font-size: 1.8rem;
    }

    #banner .button.normal {
        font-size: 0.5rem;
    }

    #banner button {
        width: 1.5rem;
        height: 2rem;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #banner3 {
        padding: 0 40px;
        flex-wrap: wrap;
    }

    #banner3 .banner-box {
        width: 100%;
    }

    #banner3 h3 {
        font-size: 1rem;
    }

    #service {
        justify-content: space-between;
    }

    #service .se-box {
        width: 135px;
        margin: 0 0 15px 0;
    }

}

#cart-btn {
    position: relative;
}

#cart-count {
    position: absolute;
    height: 30px;
    width: 30px;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    padding: 0;
    margin: 0;
    display: none;
}

#cart-btn {
    cursor: pointer;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow: scroll;
}

.sidebar-content {
    padding: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-image {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.checkout-btn {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

.checkout-btn:hover {
    background-color: #218838;
}

.sidebar.active {
    right: 0;
}

.close-btn {
    background-color: var(--bittersweet);
    color: white;
    border: none;
    padding: 1px;
    width: 5rem;
    cursor: pointer;
    font-size: 3rem;
    margin-bottom: 10px;
}

.close-btn:hover {
    background-color: #f70000;
}

.checkout-btn {
    margin-top: 20px;
    padding: 10px;
    background-color: #2e89ff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.total-price {
    font-size: 20px;

}

.pro img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.des {
    display: flex;
    flex-direction: column;
}

.des h5 {
    margin: 0;
    font-size: 14px;
}

.des h4 {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.sidebar-content h2 {
    font-size: 3.5rem;
    display: flex;
    justify-content: center;
    margin: 2rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: .5rem;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-image {
    width: 50px;
    height: auto;
}

.product-details {
    flex-grow: 1;
    margin-left: 10px;
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff0000;
    font-size: 1.7rem;
    margin: 3px;
}

h4 {
    font-size: 1.5rem;
    font-family: var(--ff-poppins);
}

.quantity-btn {
    background-color: #d3d3d3;
    color: #333;
    border: none;
    border-radius: 50%;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 6px;
}

.quantity-btn:hover {
    background-color: #c0c0c0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.quantity-btn:focus {
    outline: none;
}

.quantity-btn:active {
    transform: scale(0.95);
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 2rem;
    }

}

@media (max-width: 768px) {

    .header .navbar {
        position: absolute;
        top: 110%;
        right: -110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        border-radius: .5rem;
        background-image: linear-gradient(to right, rgb(255, 209, 249), rgb(134, 142, 255));
    }

    .header .search-form {
        width: 90%;
    }

    #menu-btn {
        display: inline-block;
    }

    .header .navbar.active {
        right: 2rem;
        transition: .4s linear;
    }

    .header .navbar a {
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }

}

@media (max-width: 500px) {
    html {
        font-size: 50%;
    }

    .header .icons {
        display: inline-flex;
    }

    .header .logo {
        display: inline-flex;
        margin: 0;
    }

}

.section-container {
    max-width: 1440px;
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.heading {
    font-size: 2.6rem;
    font-weight: 600;
    color: black;
    border-bottom: 1px solid gainsboro;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.heading ion-icon {
    font-size: 4rem;
}

.item-flex {
    display: flex;
    flex-grow: 1;
}

.checkout {
    width: 70%;
    padding: 40px;
    background: white;
    border-right: 1px solid gainsboro;
}

.section-heading {
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 300;
}

.payment-form {
    margin-bottom: 40px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.payment-method .method {
    border: 1px solid rgb(165, 163, 163);
    border-radius: 5px;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    gap: 20px;
    cursor: pointer;
}

.payment-method .method ion-icon {
    font-size: 20px;
}

.payment-method .selected {
    border-color: azure;
}

.payment-method .method .checkmark {
    margin-left: auto;
    color: rgb(102, 102, 102);
}

.payment-method .method .fill {
    color: rgb(12, 196, 196);
}

.label-default {
    padding-left: 10px;
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: #363636;
}

.input-default {
    background: #d3d3d3;
    border-radius: 5px;
    color: #141414;
}

.payment-form input {
    padding: 10px;
    border: 0.5px solid #888888;
    font-size: 1.5rem;
    font-weight: 500;
}

.cardholder-name,
.card-number {
    margin-bottom: 20px;
}

.card-number input,
.cvv input {
    letter-spacing: 3px;
}

.input-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.input-flex .expire-date,
.input-flex .cvv {
    width: 50%;
}

.expire-date,
.input-flex {
    color: #333;
    gap: 13px;
}

.expire-date,
.input-flex input {
    text-align: center;
}

.btn {
    border-radius: 5px;
}

.btn:active {
    transform: scale(0.96);
}

.btn:focus {
    color: white;
    background: rgb(5, 180, 192);
    outline: 2px solid azure;
    outline-offset: 2px;
}

.btn-primary {
    background: rgb(8, 175, 187);
    font-weight: 500;
    color: white;
    padding: 13px;
}

.btn-primary b {
    margin-right: 10px;
}

.carrinho {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cart-item-box {
    margin: 40px;
    margin-bottom: auto;
}

.product-card:not(:last-child) {
    margin-bottom: 20px;
}

.product-card .card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card .product-img {
    border-radius: 5px;
}

.card .detail .product-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card .detail .wrapper {
    display: flex;
    gap: 20px;
}

.product-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-qty button {
    background-color: #c0c0c0;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-qty button:active,
#product-close-btn:active ion-icon {
    transform: scale(0.95);
}

.product-qty button ion-icon {
    --ionicon-stroke-width: 60px;
    font-size: 10px;
}

#product-close-btn {
    position: absolute;
}

#product-close-btn ion-icon {
    font-size: 25px;
}

#product-close-btn:hover ion-icon {
    color: #2e89ff;
}

.discount-token {
    padding: 40px;
    border-top: 1px solid gainsboro;
    border-bottom: 1px solid gainsboro;
}

.wrapper-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.wrapper-flex input {
    padding: 12px 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-outline {
    padding: 10px 25px;
    border: 1px solid #2e89ff;
    color: #2e89ff;
}

.btn-outline:hover {
    background: #1676ad;
    color: white;
}

.amount {
    padding: 40px;
}

.amount>div {
    display: flex;
    justify-content: space-between;
}

.amount>div:not(:last-child) {
    margin-bottom: 10px;
}

.amount .total {
    font-size: 1.7rem;
    font-weight: 700;
    color: #333;
}

@media (max-width: 1200px) {
    .item-flex {
        flex-direction: column-reverse;
    }

    .checkout {
        width: 100%;
        border-right: none;
    }

    .btn-primary {
        width: 100%;
    }

    .carrinho {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        border-bottom: 1px solid gainsboro;
    }

    .carrinho .wrapper {
        margin-top: auto;
    }

    .carrinho .cart-item-box {
        border-right: 1px solid gainsboro;
        margin-bottom: 0;
    }

    .discount-token {
        border-top: none;
    }

}

@media (max-width: 768px) {

    .carrinho {
        grid-template-columns: 1fr;
    }

    .discount-token {
        border-top: 1px solid gainsboro;
    }

    .wrapper-flex {
        gap: 20px;
    }

}

@media (max-width: 567px) {

    .payment-method,
    .input-flex {
        flex-direction: column;
        gap: 20px;
    }

    .payment-method .method {
        width: 100%;
    }

    .input-flex .expire-date,
    .input-flex .cvv {
        width: 100%;
    }

    .expire-date .input-flex {
        flex-direction: row;
    }

}

img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

#clear-cart-button {
    background-color: red;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin: 10px;
    border-radius: 5px;
}

.container-login {
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
    margin: 0 auto;
    z-index: 1;
    margin-top: 6%;
    margin-bottom: 6%;
}

.container-login p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin: 20px 0;
}

.container-login span {
    font-size: 12px;
}

.container-login a {
    color: #333;
    font-size: 13px;
    text-decoration: none;
    margin: 15px 0 10px;
}

.container-login button {
    background-color: #db38b8;
    color: #000000;
    font-size: 12px;
    padding: 10px 45px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
}

.container-login button.hidden {
    background-color: transparent;
    border-color: #ffffff;
}

.container-login form {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    height: 100%;
}

.container-login input {
    background-color: #eee;
    border: none;
    margin: 8px 0;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 8px;
    width: 100%;
    outline: none;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in {
    left: 0;
    width: 50%;
    z-index: 2;
}

.container-login.active .sign-in {
    transform: translateX(100%);
}

.sign-up {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container-login.active .sign-up {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: move 0.6s;
}

@keyframes move {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    border: 1px solid #ccc;
    border-radius: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
    width: 40px;
    height: 40px;
}

.toggle-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    border-radius: 150px 0 0 100px;
    z-index: 1000;
}

.container-login.active .toggle-container {
    transform: translateX(-100%);
    border-radius: 0 150px 100px 0;
}

.toggle {
    background-color: #512da8;
    height: 100%;
    background-image: linear-gradient(to right, rgb(255, 209, 249), rgb(134, 142, 255));
    color: #000000;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.container-login.active .toggle {
    transform: translateX(50%);
}

.toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.toggle-left {
    transform: translateX(-200%);
}

.container-login.active .toggle-left {
    transform: translateX(0);
}

.toggle-right {
    right: 0;
    transform: translateX(0);
}

.container-.container-login.active .toggle-right {
    transform: translateX(200%);
}

@media (max-width: 620px) {

    .container-login {
        height: calc(100vh - 40px);
    }

    .form-container{
        bottom: 0;
        width: 100%;
        height: 70%;
    }

    .toggle-container{
        left: 0;
        top: -270%;
        width: 100%;
        height: 300%;
    }

    .container-login.active .form-container{
        right: 0;
        bottom: -30%;
    }

    .toggle-left{
        top: 0;
    }

    .toggle-panel{
        width: 100%;
        height: 30%;
    }

    .toggle{
        display: none;
    }

    .form-container{
        margin-top: 30%;
    }

    .form-container h1{
        font-size: 3rem;
    }

    .container-login.active{
        top: 10%;
        left: 0;
    }

    .container-login.active .toggle-panel.toggle-left{
        left: 0;
        top: -30%;
    }

    .container-login.active .toggle-panel.toggle-right{
        bottom: 0;
    }
}

#prodetails {
    display: flex;
}

#prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
}

.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    cursor: pointer;
    width: 20%;
}

#prodetails .single-pro-details {
    width: 50%;
    padding: 20px;
}

#prodetails .single-pro-details h3 {
    padding: 20px 0 15px 0;
    font-size: 2.6rem;
}

#prodetails .single-pro-details h2 {
    font-size: 3.6rem;

}

#prodetails .single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-family: var(--ff-poppins);
}

#prodetails .single-pro-details input {
    width: 50px;
    height: 47px;
    padding-left: 16px;
    font-size: 1.7rem;
    margin-right: 10px;
}

#prodetails .single-pro-details input:focus {
    outline: none;
}

#prodetails .single-pro-details button {
    background: #009b5a;
    color: #fff;
}

#prodetails .single-pro-details span {
    line-height: 25px;
}

.single-pro-details h4 {
    margin-top: 3rem;
}

.star-detail {
    color: #ecd60f;
    margin: 8px;
}

.img-sobre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(imagens/sobre-img.png);
    background-size: cover;
    width: 100%;
    height: 55vh;
    color: #ffffff;
    background-position: center;
}

.img-sobre-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(imagens/sobre-img2.png);
    background-size: cover;
    width: 100%;
    height: 55vh;
    color: #ffffff;
    background-position: center;
}

.img-sobre h1 {
    font-size: 5.5rem;
    font-weight: 700;
    text-shadow: #000 0px 2px 15px;
}

.img-sobre p {
    font-size: 3rem;
    font-weight: 500;
    text-shadow: #000 0px 2px 15px;
}

.img-sobre-2 h1 {
    font-size: 5.5rem;
    font-weight: 700;
    text-shadow: #000 0px 2px 15px;
}

.img-sobre-2 p {
    font-size: 3rem;
    font-weight: 500;
    text-shadow: #000 0px 2px 15px;
}

.sobre-content {
    padding: 30px;
    width: 80vw;
    flex-direction: column;
    height: 100%;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
}

.sobre-content .sobre-title {
    text-align: left;
    padding: 10px;
    font-size: 2rem;
}

.sobre-text {
    padding: 10px;
    font-size: 1.7rem;
    margin-bottom: 5px;
}

.sobre-title-2 {
    text-align: center;
    padding: 10px;
    font-size: 2rem;
    width: 100%;
    background-image: linear-gradient(to right, rgb(255, 209, 249), rgb(134, 142, 255));
}

.mvv {
    padding: 30px;
    width: 85vw;
    height: 100%;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
}

.mvv-content {
    margin: 30px;
}

.cards-mvv {
    width: 30%;
    display: inline-block;
    margin: 15px;
    border: 3px solid hsl(313, 83%, 49%);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(255, 14, 235, 0.5);
}

.cards-mvv h1 {
    text-align: center;
    padding: 10px;
    padding-top: 10px;
}

.cards-mvv p {
    text-align: justify;
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-top: -50px;
    position: relative;
    margin-left: 85px;
    background-color: #fff;
    border-radius: 50%;
    width: 40%;
    padding: 10px;
    align-items: center;
    border: 3px solid hsl(313, 83%, 49%);
    box-shadow: 0 0 10px rgba(255, 14, 235, 0.5);
}

.card-icon img {
    width: 70px;
    margin: 5px;
}

.cards-mvv:hover {
    transform: scale(1.05);
    transition: 0.2s linear;
}

@media (max-width:500px) {

    .img-sobre {
        height: 30vh;
    }

    .img-sobre-2 {
        height: 30vh;
    }

    .mvv-content {
        margin: 0 auto;
    }

    .cards-mvv {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        border: 3px solid hsl(313, 83%, 49%);
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 0 10px rgba(255, 14, 235, 0.5);
        margin-bottom: 60px;
        margin-top: 60px;
    }

    .card-icon {
        display: flex;
        justify-content: center;
        margin-top: -70px;
        position: relative;
        margin-left: 80px;
        background-color: #fff;
        border-radius: 50%;
        width: 40%;
        padding: 10px;
        align-items: center;
        border: 3px solid hsl(313, 83%, 49%);
        box-shadow: 0 0 10px rgba(255, 14, 235, 0.5);
    }

}

@media (max-width:400px) {

    .card-icon {
        display: flex;
        justify-content: center;
        margin-top: -50px;
        position: relative;
        margin-left: 50px;
        background-color: #fff;
        border-radius: 50%;
        width: 50%;
        padding: 10px;
        align-items: center;
        border: 3px solid hsl(313, 83%, 49%);
        box-shadow: 0 0 10px rgba(255, 14, 235, 0.5);
    }

}

.slider-blog {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5%;
    margin-bottom: 5%;
}

.slider-blog img {
    width: 90%;
    border-radius: 15px;
    border: 3px solid hsl(313, 83%, 49%);
    box-shadow: 0 0 30px rgba(255, 14, 235, 0.8);
}

.blog-post {
    display: flex;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(196, 176, 176, 0.2);
    max-width: 900px;
    margin: 20px;
    border-radius: 10px;
    padding: 10px;
    height: 400px;
}

.post-img img {
    width: 92%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.post-content {
    padding: 10px;
    width: 60%;
    padding: 10px;
}

.blog-content-2 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    margin-top: 3%;
    margin-bottom: 3%;
}

.post-box {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(160, 152, 152, 0.8);
    margin: 0 auto;
    max-width: 18%;
    border-radius: 10px;
    padding: 10px;
    height: 400px;
}

.post-img-2 img {
    width: 100%;
    height: 25rem;
    padding: 5px;
    border-radius: 10px;
}

@media (max-width: 500px) {

    .blog-content-2 {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        margin-top: 3%;
        margin-bottom: 3%;
    }

    .post-box {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(160, 152, 152, 0.8);
        margin: 0 auto;
        max-width: 75%;
        border-radius: 10px;
        padding: 10px;
        height: 400px;
        margin-top: 3%;
        margin-bottom: 3%;
    }

    .blog-post {
        display: flex;
        flex-direction: column;
        overflow: scroll;
        width: 80%;
        margin: 0 auto;
        margin-top: 10%;
        margin-bottom: 10%;
    }

    .blog-post h1 {
        font-size: 2rem;
    }

    .post-content p {
        font-size: 1.5rem;
    }

    .post-content{
        width: 100%;
    }

}

@media (max-width: 500px) {
    
    #prodetails{
        display: flex;
        flex-direction: column;
    }

    #prodetails .single-pro-image{
        width: 100%;
        margin-right: 0;
    }

    #prodetails .single-pro-details{
        width: 100%;
    }

}