

:root{
    --primary:#6D3E89;
    --secondary:#8A5CA8;
    --dark:#0f172a;
    --light:#f8fafc;
}

*{
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.logo-box{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}


.navbar-brand{

    text-decoration:none;

    white-space:nowrap;

}

.navbar-brand h5{

    margin-bottom:2px;

    color:#111827;

}

.navbar-brand small{

    font-size:14px;

}

.logo-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.nav-link{
    font-weight:500;
    margin:0 10px;
}



/* HERO */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
    135deg,
    #f8f9ff,
    #ffffff
    );
    position:relative;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    color:#111827;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    color:#64748b;
    font-size:18px;
}

.feature-mini{
    display:flex;
    align-items:center;
    gap:10px;
}

.feature-mini i{
    width:45px;
    height:45px;
    background:white;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.btn-primary-custom{
    background:var(--primary);
    color:white;
    border:none;
    padding:14px 30px;
    border-radius:15px;
    font-weight:600;
}

.btn-outline-custom{
    background:white;
    border:none;
    padding:14px 30px;
    border-radius:15px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.hero-image{
    width:100%;
    max-width:700px;
}

.floating-card{
    position:absolute;
    top:25px;
    left:25px;
    z-index:10;

    background:white;
    padding:15px 25px;

    border-radius:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.floating-card h3{
    margin:0;
    font-weight:700;
}

/* SECTION */

.section-title{
    font-size:38px;
    font-weight:700;
}

.section-sub{
    color:#64748b;
}

.feature-card{
    background:white;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    width:70px;
    height:70px;
    background:#f3f1ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:28px;
    color:var(--primary);
}

/* PRODUCT */

.product-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.price{
    color:var(--primary);
    font-size:24px;
    font-weight:700;
}

.cta{
    position:relative;

    background:rgba(109,62,137,0.15);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(109,62,137,.20);

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(109,62,137,.12);

    color:#6D3E89;
}

.cta h2{
    color:#6D3E89;
    font-weight:700;
}

.cta p{
    color:#7B4D99;
}

.cta .btn{
    background:#6D3E89;
    color:white;
    border:none;
    border-radius:14px;
    transition:.3s;
}

.cta .btn:hover{
    background:#5b3272;
    transform:translateY(-3px);
}

.cta::before{
    background:rgba(109,62,137,.08);
}

.cta::after{
    background:rgba(138,92,168,.06);
}



/* FOOTER */

footer{
    background:linear-gradient(
        135deg,
        #4F2D66 0%,
        #6D3E89 100%
    );
    color:white;
    position:relative;
    overflow:hidden;
}

footer::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-120px;
    right:-80px;
}

footer h3{
    font-weight:700;
    margin-bottom:15px;
}

footer p{
    color:rgba(255,255,255,.85);
}



/* NAVBAR IMPROVEMENT */

.navbar{
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.95);
}

.nav-link{
    position:relative;
    font-weight:600;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary);
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* MENU NAVBAR */

.nav-link{
    font-weight:600;
    color:#111827;
    transition:.3s;
    padding:10px 16px !important;
}

.nav-link:hover{
    color:var(--primary);
}

/* LOGIN ADMIN */

.admin-link{
    color:var(--primary) !important;
    font-weight:600;
}

.admin-link:hover{
    color:var(--secondary) !important;
}

/* WHATSAPP */

.wa-link{
    color:#25D366 !important;
    font-weight:600;
}

.wa-link:hover{
    color:#1da851 !important;
}

/* DROPDOWN */


.dropdown-item{
    padding:12px 18px;
}

.dropdown-item:hover{
    background:#f8f9ff;
}

/* HERO IMAGE */

.hero-image{
    border-radius:30px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}


.hero-image{
    border-radius:30px;
    box-shadow:
    0 25px 50px rgba(0,0,0,.15);
}

.hero-slider{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;

    border-radius:30px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}

.hero-slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1s ease;
}
.hero-slide.active{
    opacity:1;
}

.hero{
    padding-top:60px;
}

@media(max-width:991px){

.hero-slider{
    height:350px;
    margin-top:40px;
}

}

.btn-primary-custom,
.btn-outline-custom{
    transition:.3s;
}

.btn-primary-custom:hover,
.btn-outline-custom:hover{
    transform:translateY(-3px);
}
.hero-right{
    position:relative;
}

.hero-blob{
    position:absolute;

    width:450px;
    height:450px;

    background:
    linear-gradient(
        135deg,
        rgba(92,46,118,.25),
        rgba(123,74,153,.15)
    );

    border-radius:50%;

    filter:blur(60px);

    top:40px;
    right:20px;

    z-index:0;
}

.hero-slider{
    position:relative;
    z-index:2;
}

.hero .col-lg-6{
    display:flex;
    flex-direction:column;
    justify-content:center;
}


.footer-custom{
    background:linear-gradient(
        135deg,
        #4F2D66,
        #6D3E89
    );

    color:white;

    padding:30px 0;
}

.footer-custom h3{
    font-size:28px;
    margin-bottom:8px;
}

.footer-custom p{
    margin-bottom:6px;
    font-size:14px;
    color:rgba(255,255,255,.85);
}









