@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;900&display=swap');

  :root 
        {
            --primary: #5d00a0;
            --secondary: #4CAF50;
            --highlight: #b13bff;
            --dark: #0a0a0a;
            --light: #ffffff;
            --glass: rgba(255, 255, 255, 0.1);
        }

        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        body 
        {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

       
        header 
        {
            position: fixed; 
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);        
        }

        .logo-text 
        {
            font-weight: 900;
            font-size: 1.5rem;
            letter-spacing: -1px;
            color: var(--light);
        }

        .btn-top 
        {
            background: var(--highlight);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.9rem;
            transition: transform 0.3s;
        }

    
        .viewport
        {
            height: 100vh;
            width: 100vw;
            position: relative;
            overflow: hidden;
            cursor: grab;
        }

        .viewport:active { cursor: grabbing; }

        .slider-track 
        {
            display: flex;
            height: 100%;
            transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .slide 
        {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide::before 
        {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
        }

        .content 
        {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 10%;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            transition: all 0.8s ease 0.2s;
        }

        .slide.active .content 
        {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .content h2 
        {
            font-size: clamp(3rem, 10vw, 6rem);
            margin: 0;
            line-height: 0.9;
            text-transform: uppercase;
            font-weight: 900;
        }

        .content p 
        {
            font-size: 1.2rem;
            margin: 20px auto;
            max-width: 500px;
            font-weight: 300;
        }

        .cta {
            display: inline-block;
            background: var(--light);
            color: var(--dark);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 1px;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .cta:hover { transform: scale(1.05); background: var(--highlight); }

        .nav-progress
        {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 100;
        }

        .bar 
        {
            width: 60px;
            height: 3px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
        }

        .bar-inner 
        {
            width: 0%;
            height: 100%;
            background: var(--light);
        }

        .bar.active .bar-inner 
        {
            animation: progressRun 8s linear forwards;
        }

        @keyframes progressRun 
        {
            from { width: 0%; }
            to { width: 100%; }
        }

        .hidden-section 
        {
            display: none;
            padding: 100px 8%;
            background: var(--dark);
            min-height: 100vh;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn 
        {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-title 
        {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--highlight);
        }


        footer 
        {
            padding: 50px;
            text-align: center;
            font-size: 0.8rem;
            opacity: 0.6;
            border-top: 1px solid var(--glass);
        }

.wpp-float 
{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.wpp-float:hover 
{
    transform: scale(1.1);
}

.wpp-icon 
{
    width: 30px;
    height: 30px;
    fill: white;
}


.insta-link 
{
    display: block;
    margin: 10px 0;
    color: var(--highlight);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.insta-link:hover 
{
    opacity: 0.8;
}

#form-revendedor input, 
#form-revendedor select,
#form-revendedor textarea
{
    width: 100%; 
    padding: 12px; 
    border-radius: 10px; 
    border: 2px solid #222; 
    background: #222; 
    color: white; 
    transition: 0.3s;
    outline: none; 
    box-sizing: border-box; 
    font-size: 16px; 
}

#form-revendedor input:focus, 
#form-revendedor select:focus 
{
    border-color: var(--highlight) !important;
    box-shadow: 0 0 8px rgba(177, 59, 255, 0.2);
}

#revendedor 
{
    display: none; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#revendedor > div 
{
    width: 90%; 
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) 
{
    header 
    {
        position: fixed !important; 
    }
}

.btn-order-float 
{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px; 
    right: 20px;
    background-color: var(--highlight);
    color: var(--dark);
    border-radius: 50%;
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
}


@media (max-width: 768px) 
{
    header.scrolled 
    {
        background: transparent !important; 
        box-shadow: none; 
        padding: 15px 5%;
    }
   @media (max-width: 768px) 
   {
   
    .logo-text 
    {
        position: relative;
        width: 150px; 
        height: 50px;
        display: flex;
        align-items: center;
        transition: all 0.4s ease-in-out;
    }

  
    .logo-text::after 
    {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        background: url('logo.jpeg') no-repeat center;
        background-size: contain;
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }

    header.scrolled .logo-text 
    {
        font-size: 0; 
        width: 50px;
    }

    header.scrolled .logo-text::after 
    {
        opacity: 1;
        transform: scale(1);
    }

    header.scrolled .btn-top 
    {
        display: none !important;
    }
}

    .btn-order-float.show 
    {
        display: flex;
        animation: fadeIn 0.3s;
    }
}


header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-left 
{
    display: flex;
    align-items: center;
    gap: 40px; 
}


.sidebar 
{
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #111; 
    border-right: 2px solid var(--highlight);
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 60px 20px;
    transition: left 0.4s ease;
    z-index: 10000;
}

.sidebar.active 
{
    left: 0;
}


.sidebar-logo 
{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.sidebar-logo img 
{
    width: 160px; 
    border-radius: 25px;
}


.nav-links 
{
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
}

.nav-links li 
{
    margin-bottom: 30px;
}

.nav-links a 
{
    color: var(--highlight) !important; 
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover 
{
    color: white !important;
    letter-spacing: 4px;
}



.btn-top 
{
    background: var(--secondary); 
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(177, 59, 255, 0.3);
}



.menu-toggle 
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
}

.menu-toggle span 
{
    width: 30px;
    height: 3px;
    background: var(--highlight);
    border-radius: 2px;
    transition: 0.3s;
}


@media (max-width: 360px) 
{
    .btn-top 
    {
        font-size: 0.65rem;
        padding: 10px 15px;
    }
    .header-left 
    {
        gap: 15px; 
    }
}

.btn-top 
{
    background: #b13bff !important; 
    color: white !important;
    
   
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem; 
    white-space: nowrap; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(177, 59, 255, 0.3);
}

header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
   
}

.header-left 
{
    display: flex;
    align-items: center;
    gap: 15px; 
}

.container-produtos 
{
    padding: 100px 20px;
    text-align: center;
    perspective: 1500px; 
    width: 100%;
}

.titulo-produtos 
{
    color: var(--highlight); 
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    letter-spacing: 8px;
    text-transform: uppercase;
}


.grid-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; 
    flex-direction: row; 
    flex-wrap: wrap; 
    width: 100%;
}

.card-info 
{
    margin-top: 30px;
    transform: translateZ(50px);
    transition: 0.5s;
}

.card-info span {
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes flutuarGeral 
{
    0%, 100% {
        transform: rotateY(-5deg) translateY(0);
        -webkit-transform: rotateY(-5deg) translateY(0);
    }
    50% {
        transform: rotateY(10deg) translateY(-20px);
        -webkit-transform: rotateY(10deg) translateY(-20px);
    }
}

@media (max-width: 768px) {
    .grid-3d {
        flex-direction: column; 
    }
    
    .titulo-produtos {
        font-size: 2rem;
        margin-bottom: 30px;
        letter-spacing: 4px;
    }
}

#produtos 
{
    padding: 100px 20px;
    background: var(--dark);
    display: none; 
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    overflow: visible !important;
}

.container-produtos {
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding: 60px 20px;
    width: 100%;
}


.card-3d-wrapper 
{
    width: 280px; 
    height: 400px;
    position: relative;
    display: block; 
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.card-3d 
{
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: flutuarGeral 4s ease-in-out infinite;
    animation: flutuarGeral 4s ease-in-out infinite;
}


.img-3d 
{
    width: 100%;
    max-width: 250px; 
    height: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: translateZ(30px);
    transform: translateZ(30px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-3d h3 
{
    text-align: center;
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--light);
    font-weight: 900;
    -webkit-transform: translateZ(60px);
    transform: translateZ(60px);
    display: block !important;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}


.card-3d-wrapper:hover .img-3d 
{
    -webkit-transform: translateZ(120px) translateY(-30px) scale(1.1);
    transform: translateZ(120px) translateY(-30px) scale(1.1);
}


@keyframes flutuarGeral 
{
    0%, 100% {
        -webkit-transform: rotateY(-5deg) translateY(0);
        transform: rotateY(-5deg) translateY(0);
    }
    50% {
        -webkit-transform: rotateY(10deg) translateY(-20px);
        transform: rotateY(10deg) translateY(-20px);
    }
}