*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #050505;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}


header{
    position: relative;
    z-index: 1000;

    width: 100%;
    padding: 25px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;

    background: rgba(0,0,0,0.3);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo img{
    width: 140px;

    position: relative;
    left: -20px;
}

.logo span{
    color: #7d3cff;
}

nav{
    display: flex;
    gap: 30px;
}

nav{
    display: flex;
    gap: 18px;
}

nav a{

    position: relative;

    color: white;
    text-decoration: none;

    padding: 12px 22px;

    border-radius: 14px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition: 0.35s ease;

    overflow: hidden;

    font-weight: 500;

    letter-spacing: 0.5px;
}

nav a::before{

    content: "";

    position: absolute;

    width: 0%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(125,60,255,0.25),
        transparent
    );

    top: 0;
    left: -100%;

    transition: 0.6s;
}

nav a:hover::before{

    width: 220%;

}

nav a:hover{

    transform: translateY(-4px);

    border-color: rgba(125,60,255,0.5);

    color: #ffffff;

    box-shadow:
    0 0 20px rgba(125,60,255,0.18),
    inset 0 0 20px rgba(125,60,255,0.08);

    background: rgba(125,60,255,0.08);
}

nav a:active{

    transform: scale(0.96);

}


.hero{
    width: 100%;
    min-height: 110vh;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 8%;
}

.hero-text{
    width: 50%;
}

.hero-text h1{

    text-shadow:
0 0 25px rgba(255,255,255,0.05);

    font-size: 70px;
    line-height: 1.1;

    margin-bottom: 25px;

    font-weight: 800;
    letter-spacing: -2px;
}

.hero-text h1 span{

    background: linear-gradient(
        135deg,
        #ffffff,
        #7d3cff,
        #b15cff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.hero-text p{

    max-width: 600px;

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 35px;
}

.hero-text button{

    position: relative;

    padding: 20px 38px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        #5f00ff,
        #8b5cf6,
        #b15cff
    );

    background-size: 300% 300%;

    color: white;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow:
    0 0 30px rgba(125,60,255,0.25);

    animation: gradientMove 5s ease infinite;
}

/* BRILHO PASSANDO */

.hero-text button::before{

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transform: skewX(-25deg);

    transition: 0.7s;
}

.hero-text button:hover::before{

    left: 120%;
}

/* HOVER PREMIUM */

.hero-text button:hover{

    transform:
    translateY(-6px)
    scale(1.03);

    box-shadow:
    0 0 45px rgba(125,60,255,0.45),
    0 0 90px rgba(125,60,255,0.2);

}

/* CLIQUE */

.hero-text button:active{

    transform:
    scale(0.96);

}

.hero-image{
    width: 450px;
    height: 450px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.triangle-container{
 animation: floating 4s ease-in-out infinite;

    perspective: 1000px;

    transition: transform 0.1s linear;
}

.triangle{
    
    transition: transform 0.15s ease;
transform-style: preserve-3d;

    box-shadow:
0 0 60px rgba(125,60,255,0.45);

position: relative;
    width: 220px;
    height: 220px;

    background: linear-gradient(135deg,#5f00ff,#b15cff);

    clip-path: polygon(0 0, 100% 50%, 0 100%);

}
.triangle::before{

    content: "";

    position: absolute;

    inset: -20px;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.08);

    filter: blur(10px);

}

@keyframes floating{

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-25px);
    }

}
.reveal{
    opacity: 0;

    transform: translateY(80px);

    transition: all 1s ease;
}

.reveal.active{
    opacity: 1;

    transform: translateY(0px);
}

#particles-js{
    position: fixed;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    z-index: -1;

    pointer-events: none;
}

.mouse-glow{

    width: 500px;
    height: 500px;

    position: fixed;

    background: radial-gradient(
        circle,
        rgba(125,60,255,0.22) 0%,
        rgba(125,60,255,0.12) 25%,
        transparent 70%
    );

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: -1;

    filter: blur(40px);

    transition:
    width 0.3s ease,
    height 0.3s ease;
}

.bg-blur{

    position: fixed;

    border-radius: 50%;

    filter: blur(120px);

    z-index: -2;

    opacity: 0.5;

    animation: floatingBlur 12s ease-in-out infinite;
}

.blur1{

    width: 400px;
    height: 400px;

    background: #5f00ff;

    top: -100px;
    left: -100px;
}

.blur2{

    width: 350px;
    height: 350px;

    background: #8f44ff;

    bottom: -100px;
    right: -100px;

    animation-delay: 3s;
}

.blur3{

    width: 300px;
    height: 300px;

    background: #3700ff;

    top: 40%;
    left: 50%;

    animation-delay: 6s;
}

@keyframes floatingBlur{

    0%,100%{

        transform:
        translateY(0px)
        translateX(0px);
    }

    50%{

        transform:
        translateY(-30px)
        translateX(20px);
    }

}

/* ANIMAÇÃO DO GRADIENTE */

@keyframes gradientMove{

    0%{
        background-position: 0% 50%;
    }

    50%{
        background-position: 100% 50%;
    }

    100%{
        background-position: 0% 50%;
    }

}
/* ABOUT PAGE */

.about-page{

    width: 100%;
    min-height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-direction: column;

    text-align: center;

    padding: 0 10%;
}

.about-page h1{

    font-size: 80px;

    margin-bottom: 30px;
}

.about-page p{

    max-width: 800px;

    color: #c7c7c7;

    line-height: 1.8;

    font-size: 20px;

    margin-bottom: 40px;
}

.about-page button{

    padding: 18px 34px;

    border: none;

    border-radius: 16px;

    background: #7d3cff;

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.about-page button:hover{

    transform: translateY(-5px);

    box-shadow:
    0 0 35px rgba(125,60,255,0.4);
}
/* SERVICES HERO */

.services-hero{

    width: 100%;

    min-height: 45vh;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-direction: column;

    text-align: center;

    padding: 0 10%;
}

.services-hero h1{

    font-size: 90px;

    margin-top: 105px;

    margin-bottom: 25px;

    font-weight: 800;

    letter-spacing: -3px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #7d3cff,
        #b15cff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.services-hero p{

    margin-top: -20px;

    white-space: nowrap;

    color: #bdbdbd;

    line-height: 1.8;

    font-size: 18px;
}

/* SERVICES GRID */

.services-grid{

    width: 100%;

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(320px,1fr));

    gap: 35px;

    margin-top: 40px;

    padding:
    0 10% 120px 10%;
}

/* SERVICE CARD */

.service-card{

    text-decoration: none;

    position: relative;

    padding: 40px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    overflow: hidden;

    transition: 0.45s ease;

    cursor: pointer;

    box-shadow:
    0 0 25px rgba(125,60,255,0.06);

    text-decoration: none;
    color: inherit;
}

/* BRILHO INTERNO */

.service-card::before{

    content: "";

    position: absolute;

    width: 200%;
    height: 200%;

    background:
    linear-gradient(
        135deg,
        transparent,
        rgba(125,60,255,0.08),
        transparent
    );

    top: -50%;
    left: -50%;

    transform: rotate(25deg);

    transition: 0.7s;
}

/* HOVER */

.service-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    border:
    1px solid rgba(125,60,255,0.3);

    box-shadow:
    0 0 45px rgba(125,60,255,0.16),
    0 0 90px rgba(125,60,255,0.08);
}

.service-card:hover::before{

    transform:
    rotate(25deg)
    translateX(20%);
}

/* TITULO */

.service-card h2{

    font-size: 30px;

    margin-bottom: 20px;

    font-weight: 700;

    color: white;
}

/* TEXTO */

.service-card p{

    color: #cfcfcf;

    line-height: 1.8;

    font-size: 16px;
}
/* PRODUCTS HERO */

.products-hero{

    width: 100%;

    min-height: 40vh;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-direction: column;

    text-align: center;

    padding:
    120px 10% 80px 10%;
}

.products-hero h1{

    font-size: 90px;

    margin-bottom: 25px;

    font-weight: 800;

    letter-spacing: -3px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #7d3cff,
        #b15cff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.products-hero p{

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.8;
}

/* PRODUCTS GRID */

.products-grid{

    width: 100%;

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(320px,1fr));

    gap: 35px;

    padding:
    0 10% 120px 10%;
}

/* PRODUCT CARD */

.product-card{

    position: relative;

    padding: 40px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    overflow: hidden;

    transition: 0.45s ease;

    cursor: pointer;

    box-shadow:
    0 0 25px rgba(125,60,255,0.06);
}

/* BRILHO */

.product-card::before{

    content: "";

    position: absolute;

    width: 200%;
    height: 200%;

    background:
    linear-gradient(
        135deg,
        transparent,
        rgba(125,60,255,0.08),
        transparent
    );

    top: -50%;
    left: -50%;

    transform: rotate(25deg);

    transition: 0.7s;
}

/* HOVER */

.product-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    border:
    1px solid rgba(125,60,255,0.3);

    box-shadow:
    0 0 45px rgba(125,60,255,0.16),
    0 0 90px rgba(125,60,255,0.08);
}

.product-card:hover::before{

    transform:
    rotate(25deg)
    translateX(20%);
}

/* TITULO */

.product-card h2{

    font-size: 30px;

    margin-bottom: 20px;

    color: white;
}

/* TEXTO */

.product-card p{

    color: #cfcfcf;

    line-height: 1.8;

    font-size: 16px;
}
/* CONTACT HERO */

.contact-hero{

    width: 100%;

    min-height: 40vh;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-direction: column;

    text-align: center;

    padding:
    120px 10% 80px 10%;
}

.contact-hero h1{

    font-size: 90px;

    margin-bottom: 25px;

    font-weight: 800;

    letter-spacing: -3px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #7d3cff,
        #b15cff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.contact-hero p{

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.8;
}

/* CONTACT CONTAINER */

.contact-container{

    width: 100%;

    display: flex;

    justify-content: center;

    padding:
    0 10% 120px 10%;
}

/* CONTACT CARD */

.contact-card{

    width: 100%;

    max-width: 700px;

    padding: 50px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    box-shadow:
    0 0 40px rgba(125,60,255,0.08);
}

/* TITULO */

.contact-card h2{

    font-size: 40px;

    margin-bottom: 35px;

    color: white;

    text-align: center;
}

/* FORM */

.contact-card form{

    display: flex;

    flex-direction: column;

    gap: 25px;
}

/* INPUTS */

.contact-card input,
.contact-card textarea{

    width: 100%;

    padding: 18px 22px;

    border-radius: 18px;

    border:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.03);

    color: white;

    font-size: 16px;

    outline: none;

    transition: 0.3s ease;

    backdrop-filter: blur(10px);
}

/* TEXTAREA */

.contact-card textarea{

    min-height: 180px;

    resize: none;
}

/* FOCUS */

.contact-card input:focus,
.contact-card textarea:focus{

    border:
    1px solid rgba(125,60,255,0.5);

    box-shadow:
    0 0 20px rgba(125,60,255,0.15);
}

/* BOTÃO */

.contact-card button{

    padding: 18px;

    border: none;

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        #7d3cff,
        #b15cff
    );

    color: white;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.4s ease;

    box-shadow:
    0 0 25px rgba(125,60,255,0.2);
}

/* HOVER BOTÃO */

.contact-card button:hover{

    transform:
    translateY(-4px)
    scale(1.01);

    box-shadow:
    0 0 40px rgba(125,60,255,0.35);
}
/* FOOTER */

.footer{

    width: 100%;

    padding:
    80px 10% 40px 10%;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    border-top:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.02);

    backdrop-filter: blur(18px);
}

/* GLOW */

.footer::before{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background:
    radial-gradient(
        circle,
        rgba(125,60,255,0.12),
        transparent 70%
    );

    top: -200px;

    filter: blur(80px);

    z-index: 0;
}

/* CONTEÚDO */

.footer > *{

    position: relative;

    z-index: 2;
}

/* LOGO */

.footer-logo{

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}

.footer-logo img{

    width: 55px;
}

.footer-logo h2{

    font-size: 32px;

    color: white;

    letter-spacing: 4px;
}

/* TEXTO */

.footer-text{

    max-width: 650px;

    color: #bdbdbd;

    line-height: 1.8;

    margin-bottom: 40px;

    font-size: 16px;
}

/* LINKS */

.footer-links{

    display: flex;

    gap: 35px;

    margin-bottom: 40px;

    flex-wrap: wrap;

    justify-content: center;
}

.footer-links a{

    color: white;

    text-decoration: none;

    transition: 0.3s ease;

    position: relative;
}

/* HOVER */

.footer-links a:hover{

    color: #b15cff;
}

/* COPYRIGHT */

.footer-copy{

    color: #7a7a7a;

    font-size: 14px;
}
/* TEXTO CONTATO */

.contact-card p{

    color: #cfcfcf;

    line-height: 1.8;

    text-align: center;

    margin-bottom: 35px;

    font-size: 16px;
}

/* BOTÃO WHATSAPP */

.whatsapp-button{

    display: flex;

    width: fit-content;

    justify-content: center;
    align-items: center;

    margin: 0 auto;

    padding:
    18px 35px;

    border-radius: 18px;

    text-decoration: none;

    color: white;

    font-size: 18px;

    font-weight: 600;

    background:
    linear-gradient(
        135deg,
        #25D366,
        #1ebe5d
    );

    transition: 0.4s ease;

    box-shadow:
    0 0 30px rgba(37,211,102,0.25);
}

/* HOVER */

.whatsapp-button:hover{

    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 0 50px rgba(37,211,102,0.4);
}
/* RESPONSIVIDADE */

/* =========================
   MOBILE - MAV
========================= */

@media(max-width: 768px){

    body{
        overflow-x: hidden;
    }

    header{
        width: 100%;
        padding: 18px 5%;
        flex-direction: column;
        gap: 16px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .logo img{
        width: 75px;
        left: 0;
    }

    nav{
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    nav a{
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 12px;
    }

    /* HOME HERO */

    .hero{
        min-height: auto;
        padding: 210px 7% 80px 7%;
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-text{
        width: 100%;
    }

    .hero-text h1{
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-text p{
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-text button{
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 17px 24px;
    }

    .hero-image{
        width: 100%;
        height: auto;
    }

    .triangle{
        width: 170px;
        height: 170px;
    }

    /* PÁGINAS INTERNAS */

    .services-hero,
    .products-hero,
    .contact-hero{
        min-height: auto;
        padding: 160px 7% 60px 7%;
    }

    .services-hero h1,
    .products-hero h1,
    .contact-hero h1{
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 18px;
        margin-top: -20px;
    }

    .services-hero p,
    .products-hero p,
    .contact-hero p{
        font-size: 15px;
        line-height: 1.7;
        white-space: normal;
        margin-top: 0;
    }

    /* GRIDS */

    .services-grid,
    .products-grid{
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 35px;
        padding: 0 7% 80px 7%;
    }

    .service-card,
    .product-card{
        padding: 28px;
        border-radius: 24px;
    }

    .service-card h2,
    .product-card h2{
        font-size: 24px;
        line-height: 1.2;
    }

    .service-card p,
    .product-card p{
        font-size: 15px;
        line-height: 1.7;
    }

    /* CONTATO */

    .contact-container{
        padding: 0 7% 80px 7%;
    }

    .contact-card{
        padding: 32px 24px;
        border-radius: 26px;
    }

    .contact-card h2{
        font-size: 32px;
    }

    .contact-card p{
        font-size: 15px;
    }

    .whatsapp-button{
        width: 100%;
        max-width: 280px;
        font-size: 16px;
        padding: 17px 24px;
    }

    /* VÍDEO SOBRE */

    .video-container{
        max-width: 88%;
        margin: 190px auto 90px auto;
        border-radius: 26px;
    }

    .video-container iframe{
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    /* FOOTER */

    .footer{
        padding: 60px 7% 35px 7%;
    }

    .footer-logo{
        flex-direction: column;
        gap: 10px;
    }

    .footer-links{
        flex-direction: column;
        gap: 18px;
    }

    .footer-text{
        font-size: 14px;
    }

    .whatsapp-float{

    right: 6px;
    bottom: 6px;

    width: 40px;
    height: 40px;
}

.whatsapp-float img{
    width: 28px;
    height: 28px;
}

.whatsapp-float{
    right: 6px !important;
    bottom: 6px !important;

    width: 52px !important;
    height: 52px !important;
}

.design-hero{
    padding: 190px 7% 50px 7%;
}

.design-hero h1{
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
    padding: 0 10px;
}

.design-hero p{
    font-size: 15px;
}

.design-gallery{
    padding: 10px 5% 80px 5%;
    gap: 35px;
}

.design-gallery img{
    width: 100%;
    border-radius: 18px;
}

}
/* VIDEO YOUTUBE */

.video-container{

    width: 100%;

    max-width: 450px;

    margin:
    140px auto 120px auto;

    border-radius: 35px;

    overflow: hidden;

    border:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.03);

    backdrop-filter: blur(20px);

    box-shadow:
    0 0 50px rgba(125,60,255,0.12);
}

/* IFRAME */

.video-container iframe{

    width: 100%;

    aspect-ratio: 1 / 1;

    display: block;
}
/* WHATSAPP FLOAT */

.whatsapp-float{

    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 2000;

    transition: 0.3s ease;

    background: transparent;

    border: none;

    outline: none;

    box-shadow: none;

    text-decoration: none;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}

/* PNG */

.whatsapp-float{

    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 9999;

    display: inline-block;

    width: 62px;
    height: 62px;

    padding: 0;
    margin: 0;

    background: none !important;

    border: none !important;

    outline: none !important;

    box-shadow: none !important;

    text-decoration: none;

    -webkit-tap-highlight-color: transparent;
}

/* HOVER */

.whatsapp-float:hover{

    transform:
    translateY(-5px)
    scale(1.08);
}

.whatsapp-float img{

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    filter:
    drop-shadow(
    0 0 12px rgba(37,211,102,0.35)
    );
}

.whatsapp-float:hover{
    transform: translateY(-5px) scale(1.08);

    box-shadow:
    0 0 35px rgba(37,211,102,0.55),
    0 0 80px rgba(37,211,102,0.25);
}

.whatsapp-float:active{
    transform: scale(0.95);
}

/* WHATSAPP PULSE */

.whatsapp-float{
    animation: whatsappPulse 2.2s ease-in-out infinite;
}

@keyframes whatsappPulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1);
    }

}

.whatsapp-float::after{
    content: "";

    position: absolute;

    top: 2px;
    right: 2px;

    width: 13px;
    height: 13px;

    background: #ff2d55;

    border-radius: 50%;

    box-shadow: 0 0 12px rgba(255,45,85,0.8);

    animation: notifyPulse 1.4s ease-in-out infinite;
}

@keyframes notifyPulse{

    0%, 100%{
        transform: scale(1);
        opacity: 1;
    }

    50%{
        transform: scale(1.35);
        opacity: 0.65;
    }

}

/* DESIGN PAGE */

.design-hero{
    width: 100%;
    min-height: 40vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;

    padding: 170px 10% 70px 10%;
}

.design-hero h1{
    font-size: 85px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 22px;

    background: linear-gradient(135deg, #ffffff, #7d3cff, #b15cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.design-hero p{
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.8;
}

/* DESIGN GALLERY */

.design-gallery{
    width: 100%;

    padding: 20px 10% 120px 10%;

    display: flex;
    flex-direction: column;

    gap: 70px;
}

.design-gallery img{
    width: 85%;
    height: auto;

    margin: 0 auto;

    display: block;

    object-fit: contain;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.03);

    box-shadow:
    0 0 45px rgba(125,60,255,0.10);

    transition: 0.4s ease;
}

.design-gallery img:hover{
    transform: scale(1.015);

    box-shadow:
    0 0 60px rgba(125,60,255,0.18);
}

/* CORREÇÃO MOBILE - PÁGINA DESIGN */

@media(max-width: 768px){

    .design-hero{
        padding: 150px 6% 40px 6% !important;
        min-height: auto !important;
        overflow: hidden;
    }

    .design-hero h1{
        font-size: 38px !important;
        line-height: 1.05 !important;
        letter-spacing: -1px !important;

        width: 100%;
        max-width: 100%;

        text-align: center;

        margin: 0 auto 22px auto !important;

        word-break: normal;
    }

    .design-hero p{
        font-size: 15px !important;
        line-height: 1.7 !important;

        max-width: 90%;
        margin: 0 auto;

        text-align: center;
    }

    .design-gallery{
        padding: 20px 5% 80px 5% !important;
    }

    .whatsapp-float{
        position: fixed !important;

        right: 4px !important;
        bottom: 4px !important;

        width: 52px !important;
        height: 52px !important;

        z-index: 9999 !important;
    }
}

/* =========================
   REELS PAGE
========================= */

.reels-hero{

    width: 100%;

    min-height: 40vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;

    padding: 170px 10% 70px 10%;
}

.reels-hero h1{

    font-size: 85px;

    font-weight: 800;

    letter-spacing: -3px;

    margin-bottom: 22px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #7d3cff,
        #b15cff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reels-hero p{

    max-width: 850px;

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.8;
}

/* GRID */

.reels-gallery{

    width: 100%;

    padding: 150px 10% 120px 10%;

    display: grid;

    grid-template-columns:
    repeat(3, 1fr);

    gap: 35px;
}

/* CARD */

.reel-card{

    text-decoration: none;

    color: inherit;

    padding: 18px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    transition: 0.4s ease;

    overflow: hidden;
}

.reel-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    border-color:
    rgba(125,60,255,0.35);

    box-shadow:
    0 0 45px rgba(125,60,255,0.14),
    0 0 90px rgba(125,60,255,0.08);
}

/* THUMB */

.reel-thumb{

    width: 100%;

    aspect-ratio: 9 / 16;

    border-radius: 22px;

    margin-bottom: 22px;

    overflow: hidden;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.reel-thumb img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.reel-thumb::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    rgba(0,0,0,0.45);

    opacity: 0;

    transition: 0.4s ease;

    z-index: 1;
}

.reel-thumb span{

    position: absolute;

    z-index: 2;

    opacity: 0;

    color: white;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-size: 13px;

    transition: 0.4s ease;
}

/* HOVER */

.reel-card:hover .reel-thumb img{

    transform: scale(1.08);
}

.reel-card:hover .reel-thumb::before,
.reel-card:hover .reel-thumb span{

    opacity: 1;
}

/* TEXTOS */

.reel-card h2{

    font-size: 24px;

    margin-bottom: 10px;
}

.reel-card p{

    color: #bdbdbd;

    font-size: 15px;

    line-height: 1.7;
}

/* =========================
   MOBILE
========================= */

@media(max-width: 768px){

    .reels-hero{

        padding: 150px 7% 45px 7%;
    }

    .reels-hero h1{

        font-size: 36px;

        line-height: 1.1;

        letter-spacing: -1px;
    }

    .reels-hero p{

        font-size: 15px;

        line-height: 1.7;
    }

    .reels-gallery{

        grid-template-columns: 1fr;

        padding: 150px 7% 80px 7%;

        gap: 28px;
    }

    .reel-card{

        border-radius: 26px;

        padding: 16px;
    }

}