*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

section{
    scroll-snap-align: start;
}

@keyframes fadein{
    from {opacity: 0;}
    to {opacity: 1;}
}

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

@keyframes slideinright{
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    } 
}

.menu{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    animation: fadein 1.5s ease-out 0.6s;
    animation-fill-mode: backwards;
}

    .left{
        display: flex;
        gap: 30px;
    }

    .right{
        display: flex;
        gap: 5px;
        margin-left: 40px;
    }

    .menu a{
        text-decoration: none;
        color: #FFFFFF;
    }

    .menu img.icon{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
        width: 60px;
    } 

    .menu img.user{
        position: static;
        left: 50%;
        display: block;
        top: 10px;
        width: 30px;
        
    }

    .menu ul{
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .menu ul li{
        justify-content: center;
        position: relative;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px 35px;
        margin: 10px;
        font-family: "Helvetica", Verdana, sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #F5D1D1;
        cursor: pointer;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }


    .menu ul li::after{
        content: "";
        background: #D46D9A;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        position: absolute;
        inset: 0;
        z-index: -1;
        transition: 0.3s;
        opacity: 0;
    }

    .menu ul li:hover{
        color: #FFF5E4;
    }

    .menu ul li:hover::after{
        opacity: 1;
    }

.hero{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #E0A8A8;
}
    .hero::before{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
        126deg,rgba(224, 168, 168, 0.6) 22%, rgba(255, 209, 209, 0.5) 64%, rgba(255, 245, 228, 0.4) 100%);
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .img_hero{
        position: absolute;
        height: 100vh;
        width: 100%;
        object-fit: cover;
        z-index: 0;
        animation: fadein 0.5s ease-out;
    }

    .htext{
        position: relative;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        z-index: 2;
    }

    .hero h1{
        font-family: "Helvetica", Verdana, sans-serif;
        font-size: 100px;
        color: #E0A8A8;
        text-shadow: 2px 2px 4px rgba(224, 168, 168, 0.359);
        animation: fadein 1s ease-out 0.2s;
        animation-fill-mode: backwards;
    }

    .hero h1:hover{
        text-shadow: 2px 2px 4px rgba(224, 168, 168, 0.40);
        transform: translateY(-2px);
    }

    .hero h2{
        font-family: "Arial", Times, serif;
        font-size: 40px;
        color: #FFFFFF;
        text-shadow: 2px 2px 2px rgba(240, 228, 180, 0.426);
        animation: fadein 1.5s ease-out 0.4s;
        animation-fill-mode: backwards;
    }

#sobre{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #FFF5E4;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 40px;
    padding: 60px;
    box-sizing: border-box;
    overflow: hidden;
}

    .stext{
        display: flex;
        flex-direction: column;
        justify-content: center;
        animation: slideinleft 1s ease-out;
        animation-fill-mode: backwards;
    }

        .stext h2{
            font-family: "Helvetica", Verdana, Arial, sans-serif;
            font-size: 70px;
            color: #D46D9A;
            text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.10);
            top: 20px;
        }

        .stext p{
            font-family: "Verdana", Arial, Helvetica, sans-serif;
            font-size: 20px;
            color: #E0A8A8;
            text-align: justify;
            margin-top: 20px;
            max-width: 500px;
        }

    .simg{
        display: grid;
        grid-template-columns: 1.3fr 0.7fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 15px;
        height: calc(100vh - 120px);
        align-self: center;
        animation: slideinright 1s ease-out;
        animation-fill-mode: backwards;
    }

        .img_sobre{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            display: block;
            min-height: 0;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.20);
        }

        .img_sobre:hover{
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            transform: translateY(-2px);
        }

        .simg img:nth-child(1){
            grid-column: 1/3;
            grid-row: 1;
        }

        .simg img:nth-child(2){
            grid-column: 3;
            grid-row: 1;
        }
        
        .simg img:nth-child(3){
            grid-column: 1;
            grid-row: 2;
        }        


        .simg img:nth-child(4){
            grid-column: 2/4;
            grid-row: 2;
        }

.menu_prod{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    animation: fadein 0.5s ease-out 0.6s;
    animation-fill-mode: backwards;
}

    .left{
        display: flex;
        gap: 20px;
    }

    .right{
        display: flex;
        gap: 5px;
        margin-left: 40px;
    }

    .menu_prod .left{
        gap: 2px;
    }

    .menu_prod a{
        text-decoration: none;
        color: #FFFFFF;
    }

    .menu_prod img.icon{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
        width: 60px;
    } 

    .menu_prod img.user{
        position: static;
        left: 50%;
        display: block;
        top: 10px;
        width: 30px;
        
    }

    .menu_prod ul{
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .menu_prod ul li{
        justify-content: center;
        position: relative;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 13px 35px;
        margin: 10px;
        font-family: "Helvetica", Verdana, sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #F5D1D1;
        cursor: pointer;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }


    .menu_prod ul li::after{
        content: "";
        background: #D46D9A;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        position: absolute;
        inset: 0;
        z-index: -1;
        transition: 0.3s;
        opacity: 0;
    }

    .menu_prod ul li:hover{
        color: #FFF5E4;
    }

    .menu_prod ul li:hover::after{
        opacity: 1;
    }
        
#produtos{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #E0A8A8;
}

    .img_produtos{
        position: absolute;
        height: 100vh;
        width: 100%;
        object-fit: cover;
        z-index: 0;
    }

#apple{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #f5dad2; 
    display: flex;
    flex-direction: column; 
    padding: 2.5vh 3vw 2vh 1.5vw;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

#apple::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/produtos/img_bc1.png");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

#teclado{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #E0A8A8; 
    display: flex;
    flex-direction: column; 
    padding: 2.5vh 3vw 2vh 1.5vw;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

#teclado::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/produtos/img_bc2.png");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

    #teclado .ptext h1{
        color: #FFF5E4;
        text-shadow: none;
    }

    #teclado .ptext p{
        color: #FFFFFF;
    }

#mouse{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #F5D1D1; 
    display: flex;
    flex-direction: column; 
    padding: 2.5vh 3vw 2vh 1.5vw;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

#mouse::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/produtos/img_bc1.png");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

    #mouse .ptext h1{
        color: #E0A8A8;
        text-shadow: none;
    }

    #mouse .ptext p{
        color: #D46D9A;
    }

#headphone{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #FFF5E4; 
    display: flex;
    flex-direction: column; 
    padding: 2.5vh 3vw 2vh 1.5vw;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

#headphone::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/produtos/img_bc2.png");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

    #headphone .ptext h1{
        color: #D46D9A;
    }

    #headphone .ptext p{
        color: #E0A8A8;
    }


    .ptext h2{
        text-align: center;
        margin-top: 20px;
        font-family: "Helvetica", Arial, sans-serif;
        color: #D46D9A;
        font-size: 50px;
        text-shadow: 0px 2px 10px #f8f5f692;
        margin-bottom: 10px;
    }

    .ptext p{
        text-align: center;
        font-family: "Arial", Helvetica, sans-serif;
        color: #E0A8A8;
        font-size: 25px;
        text-shadow: 0px 4px 15px #f0e4e4c2;
        margin-bottom: 5px;
    }

    .grid{
        display: grid;
        align-items: start;
        justify-content: center;
        margin-top: 20px;
        grid-template-columns: repeat(3, 300px);
        grid-template-rows: repeat(1, 1fr);
        gap: 2.5vh 4vw;
        flex: 1;
        width: 100%;
    }

    .cards{
        background-color: #FFFFFF;
        border-radius: 20px;
        width: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5vh;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .cards:hover{
        transform: translateY(-5px);
        box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.20);
    }

    .cards_img{
        width: 100%;
        height: 40vh;
        object-fit: cover;
        clip-path: inset(2px round 12px);
        margin-top: -4px;
        transition: transform 0.4s ease;
    }
 
    .cards:hover .cards_img {
      transform: scale(1.05); 
    }

    .cards_txt{
        font-family: Verdana, Tahoma, sans-serif;
        font-size: 2.5vh;
        color: #E0A8A8;
        text-align: left;
        line-height: 1.3;
        width: 100%;
    }

    .cards_marca{
        text-transform: uppercase;
        font-family: "Arial", Helvetica, sans-serif;
        font-size: 1.5vh;
        color: #b4b4b4;
        letter-spacing: 0.05em;
        text-align: left;
        width: 100%;
        margin-top: -4px;
    }

    .cards_preco{
        font-family: "Arial", Helvetica, sans-serif;
        font-size: 3vh;
        color: #E0A8A8;
        text-align: left;
        width: 100%;
    }

    .cards_cart{
        width: 100%;
        height: 5vh;
        border-radius: 10px;
        border: none;
        background-color: #F5D1D1;
        cursor: pointer;
        background-image: url("assets/img_cart.png");
        background-size: 2vh 2vh;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.2s ease;
    }

    .cards_cart:hover{
        background-color: #E0A8A8;
        transform: scale(1.02);
    }

#contato{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #f5dad2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

#contato::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/contato/img_contato.png");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

    .ctext{
        display: flex;
        flex-direction: column;
        justify-content: center;
        animation: slideinleft 1s ease-out;
        animation-fill-mode: backwards;
    }

        .ctext h2{
            font-family: "Helvetica", Verdana, Arial, sans-serif;
            font-size: 50px;
            color: #D46D9A;
        }

        .ctext p{
            font-family: "Helvetica", Verdana, Arial, sans-serif;
            font-size: 25px;
            color: #E0A8A8;
            text-align: justify;
            margin-top: 20px;
            max-width: 600px;
            margin-bottom: 15px;
        }

        .ctext h3{
            font-family: "Helvetica", Verdana, Arial, sans-serif;
            font-size: 30px;
            color: #D46D9A;
            margin-bottom: 15px;
        }

    .form{
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    background-color: #f5d1d1;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px #e0a8a8d6;
    transition: 0.5s;
    animation: fadein 1.5s ease-out;
    }

    .form:hover{
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        transform: translateY(-3px);
    }

    input, select, textarea{
        width: 100%;
        padding: 6px;
        border-radius: 5px;
        border: none;
    }

    textarea{
        height: 40px;
    }

    .title_form{
        text-align: center;
        font-size: 40px;
        margin-bottom: 10px;
        text-shadow: 0px 4px 15px #f0c2c2;

    }

    .subt_form{
        text-align: center;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .campos{
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        gap: 3px;
        
    }

    .campos_check{
        display: flex;
        margin-bottom: 8px;
        gap: 3px;
    }

    .campos_check input{
        width: auto;
    }

    .campos_termos{
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .campos_termos input{
        padding: 8px 10px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        background-color: #E0A8A8;
        transition: 0.2s;
    }

    .campos_termos input:hover{
        background-color: #D46D9A;
        transform: translateY(-2px);
    }

.footer{
    position: relative;
    height: 50vh;
    width: 100%;
    background-color: #F5D1D1;
    font-family: "Verdana", Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #D46D9A;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

    .footer figure{
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer li{
        margin-bottom: 8px;
    }

    .footer .left{
        display: list-item;
        list-style: none;
        padding: 40px;
    }

    .footer .right{
        display: list-item;
        align-items: center;
        margin-left: auto;
        list-style: none;
        padding: 40px;
        margin-top: 20px;
    }

    .footer .right img{
        height: 25px;
        width: auto;
    }

    .footer .logo{
        display: flex;
        align-items: center;
        list-style: none;
        padding: 40px; 
        gap: 40px; 
    }

    .footer .logo img{
        height: 60px;
        width: auto;
    }

    .logo figcaption{
        font-size: 25px;
    }

    .footer .redes{
        display: flex;
        margin-left: auto;
        margin-right: 150px;
        list-style: none;
        gap: 30px;
        margin-top: 20px;
    }

    .footer .redes img{
        height: 25px;
        width: auto;
    }

    .footer .bottom{
        background-color: #FFFFFF;
        color: #E0A8A8;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 1/-1;
    }