@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
     :root {
        --orange: #ff7800;
        --black: #130f40;
        --light-color: #666;
        --box-shadow: 0 .5rem 1.5rem 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 var(--black);
    }
    
    * {
        font-family: 'Poppins', sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        outline: none;
        border: none;
        text-decoration: none;
        text-transform: capitalize;
        transition: all .2s linear;
    }
    
    html {
        font-size: 62.5%;
        overflow-x: hidden;
        scroll-behavior: smooth;
        scroll-padding-top: 7rem;
    }
    
    body {
        background: #eee;
    }
    
    section {
        padding: 2rem 9%;
    }
    
    .heading {
        text-align: center;
        padding: 2rem 0;
        padding-bottom: 3rem;
        font-size: 3.5rem;
        color: var(--black);
    }
    
    .heading span {
        background: var(--orange);
        color: #fff;
        display: inline-block;
        padding: .5rem 3rem;
        clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
    }
    
    .btn {
        margin-top: 1rem;
        display: inline-block;
        padding: .8rem 3rem;
        font-size: 1.7rem;
        border-radius: .5rem;
        border: .2rem solid var(--black);
        color: var(--black);
        cursor: pointer;
        background: none;
    }
    
    .btn:hover {
        background: var(--orange);
        color: #fff;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 9%;
        background: #fff;
        box-shadow: var(--box-shadow);
    }
    
    .header .logo {
        font-size: 2.5rem;
        font-weight: bolder;
        color: var(--black);
    }
    
    .header .logo i {
        color: var(--orange);
    }
    
    .header .navbar a {
        font-size: 1.7rem;
        margin: 0 1rem;
        color: var(--black);
    }
    
    .header .navbar a:hover {
        color: var(--orange);
    }
    
    .header .icons div {
        height: 4.5rem;
        width: 4.5rem;
        line-height: 4.5rem;
        border-radius: .5rem;
        background: #eee;
        color: var(--black);
        font-size: 2rem;
        margin-left: .3rem;
        cursor: pointer;
        text-align: center;
    }
    
    .header .icons div:hover {
        background: var(--orange);
        color: #fff;
    }
    
    #menu-btn {
        display: none;
    }
    
    .header .search-form {
        position: absolute;
        top: 110%;
        right: -110%;
        width: 50rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .header .search-form.active {
        right: 2rem;
        transition: .4s linear;
    }
    
    .header .search-form input {
        height: 100%;
        width: 100%;
        background: none;
        text-transform: none;
        font-size: 1.6rem;
        color: var(--black);
        padding: 0 1.5rem;
    }
    
    .header .search-form label {
        font-size: 2.2rem;
        padding-right: 1.5rem;
        color: var(--black);
        cursor: pointer;
    }
    
    .header .search-form label:hover {
        color: var(--orange);
    }
    
    .header .shopping-cart {
        position: absolute;
        top: 110%;
        right: -110%;
        padding: 1rem;
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        width: 35rem;
        background: #fff;
    }
    
    .header .shopping-cart.active {
        right: 2rem;
        transition: .4s linear;
    }
    
    .header .shopping-cart .box {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        margin: 1rem 0;
    }
    
    .header .shopping-cart .box img {
        height: 10rem;
    }
    
    .header .shopping-cart .box .fa-trash {
        font-size: 2rem;
        position: absolute;
        top: 50%;
        right: 2rem;
        cursor: pointer;
        color: var(--light-color);
        transform: translateY(-50%);
    }
    
    .header .shopping-cart .box .fa-trash:hover {
        color: var(--orange);
    }
    
    .header .shopping-cart .box .content h3 {
        color: var(--black);
        font-size: 1.7rem;
        padding-bottom: 1rem;
    }
    
    .header .shopping-cart .box .content span {
        color: var(--light-color);
        font-size: 1.6rem;
    }
    
    .header .shopping-cart .box .content .quantity {
        padding-left: 1rem;
    }
    
    .header .shopping-cart .total {
        font-size: 2.5rem;
        padding: 1rem 0;
        text-align: center;
        color: var(--black);
    }
    
    .header .shopping-cart .btn {
        display: block;
        text-align: center;
        margin: 1rem;
    }
    
    .dropdown {
        float: left;
        overflow: hidden;
    }
    
    .dropdown .dropbtn {
        font-size: 18px;
        border: none;
        outline: none;
        color: black;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
        text-align: center;
    }
    
    .navbar a:hover,
    .dropdown:hover .dropbtn {
        border-bottom: 3px solid #ff7800;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
    
    .dropdown-content a {
        float: none;
        color: black;
        padding: 14px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
    
    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .categories .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
        gap: 1.5rem;
    }
    
    .blogs .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
        gap: 1.5rem;
    }
    
    .blogs .box-container .box {
        overflow: hidden;
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        background: #fff;
    }
    
    .blogs .box-container .box .content {
        padding: 2rem;
    }
    
    .blogs .box-container .box .content .icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 1.5rem;
        margin-bottom: 1rem;
        border-bottom: var(--border);
    }
    
    .blogs .box-container .box .content .icons a {
        color: var(--light-color);
        font-size: 1.5rem;
    }
    
    .blogs .box-container .box .content .icons a:hover {
        color: var(--black);
    }
    
    .blogs .box-container .box .content .icons a i {
        color: var(--orange);
        padding-right: .5rem;
    }
    
    .blogs .box-container .box .content h3 {
        line-height: 1.8;
        color: var(--black);
        font-size: 2.2rem;
        padding: .5rem 0;
    }
    
    .blogs .box-container .box .content p {
        line-height: 1.8;
        color: var(--light-color);
        font-size: 1.5rem;
        padding: .5rem 0;
    }

    .footer {
        background: #fff;
    }
    
    .footer .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 1.5rem;
    }
    
    .footer .box-container .box h3 {
        font-size: 2.5rem;
        color: var(--black);
        padding: 1rem 0;
    }
    
    .footer .box-container .box h3 i {
        color: var(--orange);
    }
    
    .footer .box-container .box .links {
        display: block;
        font-size: 1.5rem;
        color: var(--light-color);
        padding: 1rem 0;
    }
    
    .footer .box-container .box .links i {
        color: var(--orange);
        padding-right: .5rem;
    }
    
    .footer .box-container .box .links:hover i {
        padding-right: 2rem;
    }
    
    .footer .box-container .box p {
        line-height: 1.8;
        font-size: 1.5rem;
        color: var(--light-color);
        padding: 1rem 0;
    }
    
    .footer .box-container .box .share a {
        height: 4rem;
        width: 4rem;
        line-height: 4rem;
        border-radius: .5rem;
        font-size: 2rem;
        color: var(--black);
        margin-right: .2rem;
        background: #eee;
        text-align: center;
    }
    
    .footer .box-container .box .share a:hover {
        background: var(--orange);
        color: #fff;
    }
    
    .footer .box-container .box .email {
        width: 100%;
        margin: .7rem 0;
        padding: 1rem;
        border-radius: .5rem;
        background: #eee;
        font-size: 1.6rem;
        color: var(--black);
        text-transform: none;
    }
    
    .footer .box-container .box .payment-img {
        margin-top: 2rem;
        height: 3rem;
        display: block;
    }
    
    .footer .credit {
        text-align: center;
        margin-top: 2rem;
        padding: 1rem;
        padding-top: 2.5rem;
        font-size: 2rem;
        color: var(--black);
        border-top: var(--border);
    }
    
    .footer .credit span {
        color: var(--orange);
    }
    h5 {
        display: flex;
        flex-direction: row;
    }
    
    h5:before,
    h5:after {
        content: "";
        flex: 1 1;
        border-bottom: 3px solid rgb(255, 153, 0);
        margin: auto;
    }
    
    h5:before {
        margin-right: 10px
    }
    
    h5:after {
        margin-left: 10px
    }
    a {
        text-decoration: none;
    }
    /* esconde as ancoras da tela */
    
    a.links {
        display: none;
    }
    
    .content {
        width: 500px;
        min-height: 560px;
        margin: 0px auto;
        position: relative;
    }
    
    h1 {
        font-size: 48px;
        color: #130f40;
        padding: 2px 0 10px 0;
        font-family: Arial, sans-serif;
        font-weight: bold;
        text-align: center;
        padding-bottom: 30px;
    }
    
    h1:after {
        content: ' ';
        display: block;
        width: 100%;
        height: 2px;
        margin-top: 10px;
    }
    
    p {
        margin-bottom: 15px;
    }
    
    .content p:first-child {
        margin: 0px;
    }
    
    label {
        color: #130f40;
        position: relative;
    }
    /* placeholder */
    
     ::-webkit-input-placeholder {
        color: #bebcbc;
        font-style: italic;
    }
    
    input:-moz-placeholder,
    textarea:-moz-placeholder {
        color: #bebcbc;
        font-style: italic;
    }
    
    input {
        outline: none;
    }
    /*estilo dos input,  menos o checkbox */
    
    input:not([type="checkbox"]) {
        width: 95%;
        margin-top: 4px;
        padding: 10px;
        border: 1px solid #b2b2b2;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
        box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }
    /*estilo do botão submit */
    
    input[type="submit"] {
        width: 100%!important;
        cursor: pointer;
        background: #130f40;
        padding: 8px 5px;
        color: #fff;
        font-size: 20px;
        border: 1px solid #fff;
        margin-bottom: 10px;
        text-shadow: 0 1px 1px #333;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        transition: all 0.2s linear;
    }
    /*estilo do botão submit no hover */
    
    input[type="submit"]:hover {
        background: #ff7800;
    }
    
    .link {
        position: absolute;
        color: #000000;
        left: 0px;
        height: 20px;
        width: 440px;
        padding: 17px 30px 20px 30px;
        font-size: 16px;
        text-align: right;
        border-top: 1px solid #dbe5e8;
        -webkit-border-radius: 0 0 5px 5px;
        border-radius: 0 0 5px 5px;
    }
    
    .link a {
        font-weight: bold;
        background: #f7f8f1;
        padding: 6px;
        color: #130f40;
        margin-left: 10px;
        border: 1px solid #130f40;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        -webkit-transition: all 0.4s linear;
        transition: all 0.4s linear;
    }
    
    .link a:hover {
        color: #ff7800;
        background: #f7f7f7;
        border: 1px solid #ff7800;
    }
    
    #cadastro,
    #login {
        position: absolute;
        top: 0px;
        width: 88%;
        padding: 18px 6% 60px 6%;
        margin: 0 0 35px 0;
        background: #f7f7f7;
        border: 1px solid #130f40;
        -webkit-box-shadow: 5px;
        border-radius: 5px;
        -webkit-animation-duration: 0.5s;
        -webkit-animation-timing-function: ease;
        -webkit-animation-fill-mode: both;
        animation-duration: 0.5s;
        animation-timing-function: ease;
        animation-fill-mode: both;
    }
    /* Efeito ao clicar no botão ( Ir para Login ) */
    
    #paracadastro:target~.content #cadastro,
    #paralogin:target~.content #login {
        z-index: 2;
        -webkit-animation-name: fadeInLeft;
        animation-name: fadeInLeft;
        -webkit-animation-delay: .1s;
        animation-delay: .1s;
    }
    /* Efeito ao clicar no botão ( Cadastre-se ) */
    
    #registro:target~.content #login,
    #paralogin:target~.content #cadastro {
        -webkit-animation-name: fadeOutLeft;
        animation-name: fadeOutLeft;
    }
    /*fadeInLeft*/
    
    @-webkit-keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-20px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
        }
    }
    
    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            transform: translateX(-20px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    /*fadeOutLeft*/
    
    @-webkit-keyframes fadeOutLeft {
        0% {
            opacity: 1;
            -webkit-transform: translateX(0);
        }
        100% {
            opacity: 0;
            -webkit-transform: translateX(-20px);
        }
    }
    
    @keyframes fadeOutLeft {
        0% {
            opacity: 1;
            transform: translateX(0);
        }
        100% {
            opacity: 0;
            transform: translateX(-20px);
        }
    }
    