.hero{
    position:relative;
    overflow:hidden;
    padding:86px 0 74px;
}

.hero-area{
    min-height: auto;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:42px;
}

.hero-text{
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    margin-bottom:18px;
    padding:9px 16px;
    border-radius:999px;
    color:var(--rosa-3);
    background:rgba(255,255,255,.62);
    border:1px solid rgba(255,255,255,.78);
    font-size:13px;
    font-weight:900;
    box-shadow:var(--shadow-soft);
}

.hero-text h1{
    max-width:720px;
    font-family:'Playfair Display', serif;
    font-size:clamp(46px, 7vw, 82px);
    line-height:.95;
    letter-spacing:-2px;
    color:#7b087c;
}

.banner-slider{
    width:92%;
    max-width:700px;
    aspect-ratio:16 / 5;
    margin:25px auto;
    border-radius:0px;
    overflow:hidden;
    height: 300px;
    border-radius: 12px;

    position:relative;
    background:transparent;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.banner-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease;
}


.banner-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.hero-text p{
    max-width:610px;
    margin-top:22px;
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
    font-weight:600;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:34px;
    flex-wrap:wrap;
}

.hero-image{
    position:relative;
    min-height:520px;
    display:grid;
    place-items:center;
}

.hero-glow{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:999px;
    background:
        radial-gradient(circle, rgba(255,111,216,.42), transparent 66%),
        radial-gradient(circle, rgba(147,51,234,.28), transparent 72%);
    filter:blur(10px);
    animation:pulseGlow 4s ease-in-out infinite alternate;
}

.hero-image img{
    position:relative;
    z-index:2;
    width:min(520px, 100%);
    max-height:520px;
    object-fit:contain;
    filter:
        drop-shadow(0 38px 42px rgba(91,18,104,.25))
        drop-shadow(0 8px 18px rgba(217,70,196,.24));
    animation:floatHero 4.8s ease-in-out infinite;
}

.categorias-section{
    padding:38px 0 76px;
}

.categorias-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:18px;
}

.categoria-card{
    min-height:150px;
    padding:24px 18px;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    text-align:center;
    background:rgba(255,255,255,.58);
    border:1px solid rgba(255,255,255,.82);
    box-shadow:var(--shadow-soft);
    transition:.25s;
}

.categoria-card span{
    width:58px;
    height:58px;
    border-radius:22px;
    display:grid;
    place-items:center;
    font-size:27px;
    background:linear-gradient(135deg, rgba(255,111,216,.28), rgba(200,107,255,.22));
}

.categoria-card h3{
    font-size:16px;
    font-weight:900;
}

.categoria-card:hover{
    transform:translateY(-7px);
    background:white;
    box-shadow:var(--shadow);
}

.produtos-section{
    padding:72px 0;
}

.produtos-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:26px;
}

.produto-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:12px;
    background:rgba(255,255,255,.62);
    border:1px solid rgba(255,255,255,.82);
    box-shadow:var(--shadow-soft);
    transition:.25s;
}

.produto-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.produto-img{
    position:relative;
    overflow:hidden;
    height:260px;
    border-radius:24px;
    background:#f8dff4;
}

.produto-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.produto-card:hover .produto-img img{
    transform:scale(1.06);
}

.produto-badge{
    position:absolute;
    top:14px;
    left:14px;
    padding:7px 12px;
    border-radius:999px;
    color:white;
    background:linear-gradient(135deg, var(--rosa-1), var(--lilas-2));
    font-size:11px;
    font-weight:900;
    box-shadow:0 10px 22px rgba(0,0,0,.13);
}

.produto-info{
    padding:16px 6px 4px;
}

.produto-info h3{
    min-height:42px;
    font-size:16px;
    line-height:1.3;
    font-weight:900;
    color:var(--texto);
}

.produto-preco{
    margin-top:10px;
    color:#8a007c;
    font-size:18px;
    font-weight:900;
}

.produto-actions{
    margin-top:14px;
    display:grid;
    grid-template-columns:1fr 46px;
    gap:10px;
}

.produto-actions .btn-ver{
    min-height:44px;
    border-radius:999px;
    display:grid;
    place-items:center;
    color:white;
    background:linear-gradient(135deg, var(--rosa-1), var(--rosa-3));
    font-size:13px;
    font-weight:900;
    transition:.25s;
}

.produto-actions .btn-cart{
    min-height:44px;
    border-radius:999px;
    display:grid;
    place-items:center;
    background:white;
    color:var(--rosa-3);
    box-shadow:0 10px 22px rgba(217,70,196,.14);
    transition:.25s;
}

.produto-actions button:hover,
.produto-actions a:hover{
    transform:translateY(-2px);
}

.cta-section{
    padding:42px 0 86px;
}

.cta-card{
    position:relative;
    overflow:hidden;
    min-height:250px;
    padding:42px;
    border-radius:38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:26px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.45), transparent 34%),
        linear-gradient(135deg, rgba(255,111,216,.88), rgba(147,51,234,.82));
    color:white;
    box-shadow:0 28px 70px rgba(147,51,234,.24);
}

.cta-card::before{
    content:"";
    position:absolute;
    right:-80px;
    top:-80px;
    width:250px;
    height:250px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
}

.cta-card div,
.cta-card a{
    position:relative;
    z-index:2;
}

.cta-card span{
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    opacity:.88;
}

.cta-card h2{
    margin-top:8px;
    font-size:clamp(30px, 4vw, 50px);
    line-height:1;
    letter-spacing:-1px;
}

.cta-card p{
    max-width:560px;
    margin-top:14px;
    font-size:16px;
    line-height:1.7;
    opacity:.9;
}

.cta-card .btn-primary{
    background:white;
    color:#9f0e97;
    white-space:nowrap;
}

@keyframes floatHero{
    0%,100%{
        transform:translateY(0) rotate(-1deg);
    }

    50%{
        transform:translateY(-18px) rotate(1deg);
    }
}

@keyframes pulseGlow{
    from{
        transform:scale(.95);
        opacity:.75;
    }

    to{
        transform:scale(1.08);
        opacity:1;
    }
}

@media(max-width:980px){
    .hero{
        padding:48px 0 46px;
    }

    .hero-area{
        min-height:auto;
        grid-template-columns:1fr;
        gap:20px;
        text-align:center;
    }

    .hero-text p{
        margin-inline:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-image{
        min-height:360px;
    }

    .hero-glow{
        width:320px;
        height:320px;
    }

    .hero-image img{
        max-height:360px;
    }

    .categorias-grid{
        grid-template-columns:repeat(3, 1fr);
    }

    .produtos-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:620px){
    .banner-slider{
    width:92%;
    max-width:1200px;
    max-height: 157px;
    aspect-ratio:16 / 5;
    margin:25px auto;
    border-radius:0px;
    overflow:hidden;
    position:relative;
    background:transparent;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-radius: 12px;
}

.banner-slide.active{
    opacity:1;
    z-index:2;
}

    .hero{
        padding:34px 0 34px;
    }

    .hero-area{
        text-align:left;
    }

    .hero-text h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .hero-text p{
        margin-inline:0;
        font-size:15px;
        line-height:1.65;
    }

    .hero-actions{
        justify-content:flex-start;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .hero-image{
        min-height:280px;
    }

    .hero-glow{
        width:260px;
        height:260px;
    }

    .hero-image img{
        max-height:285px;
    }

    .categorias-section,
    .produtos-section{
        padding:44px 0;
    }

    .categorias-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
    }

    .categoria-card{
        min-height:122px;
        border-radius:24px;
        padding:18px 12px;
    }

    .produtos-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .produto-img{
        height:300px;
    }

    .cta-card{
        padding:30px 22px;
        border-radius:30px;
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-card .btn-primary{
        width:100%;
    }
}