/* =====================================================
   HOME V2 - JERBEL
===================================================== */

.home-v2-hero{
    position:relative;
    overflow:hidden;
    padding:80px 0;
    background:linear-gradient(135deg,#fff8fb,#fffdf9,#f8f5ff);
}

.home-v2-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 10% 15%,rgba(255,120,180,.18),transparent 28%),
        radial-gradient(circle at 90% 18%,rgba(167,140,255,.15),transparent 28%),
        radial-gradient(circle at 70% 85%,rgba(173,255,221,.13),transparent 32%);
}

.home-v2-wrap{
    width:min(1320px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

.home-v2-tag{
    display:inline-block;
    background:#fff;
    padding:10px 18px;
    border-radius:999px;
    color:#d85f93;
    font-weight:700;
    margin-bottom:18px;
}

.home-v2-copy h1{
    font-family:var(--title);
    font-size:clamp(44px,5vw,72px);
    line-height:1;
    margin-bottom:22px;
}

.home-v2-copy h1 em{
    color:#d85f93;
    font-style:italic;
}

.home-v2-copy p{
    max-width:520px;
    font-size:18px;
    line-height:1.8;
    color:var(--muted);
    margin-bottom:34px;
}

.home-v2-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.home-v2-showcase{
    position:relative;
    height:470px;
    display:grid;
    place-items:center;
}

.home-v2-card-main{
    width:310px;
    height:410px;
    border-radius:34px;
    background:linear-gradient(150deg,#ff93c0,#ffc4a7,#efe2ff);
    box-shadow:0 35px 90px rgba(214,98,150,.28);
    display:grid;
    place-items:center;
    text-align:center;
    color:#fff;
    transform:rotate(-7deg);
}

.home-v2-card-main strong{
    display:block;
    font-size:60px;
    font-family:var(--title);
}

.home-v2-card-main small{
    font-size:30px;
}

.home-v2-floating{
    position:absolute;
    background:rgba(255,255,255,.9);
    padding:14px 20px;
    border-radius:18px;
    backdrop-filter:blur(10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    font-weight:700;
}

.home-v2-floating.one{
    top:40px;
    right:20px;
}

.home-v2-floating.two{
    left:0;
    bottom:50px;
}

/* =============================== */

.home-v2-collections,
.home-v2-products{
    padding:90px 0;
}

.home-v2-section-head{
    width:min(1320px,92%);
    margin:auto;
    text-align:center;
    margin-bottom:55px;
}

.home-v2-section-head span{
    color:#d85f93;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-weight:700;
}

.home-v2-section-head h2{
    font-family:var(--title);
    font-size:clamp(36px,4vw,60px);
    margin:16px 0;
}

.home-v2-section-head p{
    color:var(--muted);
}

.home-v2-collection-grid{
    width:min(1320px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.home-v2-collection-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 22px 65px rgba(210,90,150,.12);
    transition:.35s;
}

.home-v2-collection-card:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 85px rgba(210,90,150,.20);
}

.home-v2-collection-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.home-v2-card-placeholder{
    height:260px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#ffd3e8,#ffe9cf,#ece4ff);
    font-size:46px;
}

.home-v2-collection-card div:last-child{
    padding:26px;
}

.home-v2-collection-card h3{
    font-family:var(--title);
    font-size:28px;
    margin-bottom:12px;
}

.home-v2-collection-card p{
    color:var(--muted);
    line-height:1.7;
    margin-bottom:18px;
}

.home-v2-collection-card span:last-child{
    color:#d85f93;
    font-weight:700;
}

/* =============================== */

.products-grid{
    width:min(1320px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* =============================== */

@media(max-width:1000px){

.home-v2-wrap{
grid-template-columns:1fr;
}

.home-v2-collection-grid,
.products-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.home-v2-collection-grid,
.products-grid{
grid-template-columns:1fr;
}

.home-v2-showcase{
height:320px;
}

.home-v2-card-main{
width:220px;
height:300px;
}

.home-v2-card-main strong{
font-size:44px;
}

}/* BANNER DINÂMICO DA HOME */

.home-banner-image{
  width:100%;
  max-width:590px;
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 32px 90px rgba(216,111,166,.22);
}

.home-banner-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

@media(max-width:980px){
  .home-banner-image{
    max-width:680px;
    margin:0 auto;
  }

  .home-banner-image img{
    height:430px;
  }
}

@media(max-width:560px){
  .home-banner-image{
    border-radius:24px;
  }

  .home-banner-image img{
    height:340px;
  }
}