@media (max-width: 768px){

    .kit-hero{
        padding: 4rem 0;
    }

    .hero-features{
        flex-direction: column;
        align-items: center;
    }

    .feature-item{
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

}
/* ========================================
   HERO
======================================== */

.kit-hero{
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.kit-hero h1{
    background: linear-gradient(
        90deg,
        #ffffff,
        #ffb347,
		#ff0000
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kit-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(255,140,0,.15),
        transparent 40%);
    pointer-events: none;
}

.hero-content{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge{
    display: inline-block;
    padding: .75rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
}

.kit-hero h1{
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.kit-hero p{
    max-width: 750px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
}

.hero-features{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item{
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1.25rem;
    border-radius: 50px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.feature-item i{
    color: var(--primary);
    font-size: 1rem;
}

.feature-item span{
    font-size: .95rem;
    font-weight: 500;
}
.btn-kits{
	padding: 10px 24px;
	box-shadow: 0 0 40px rgba(218,165,32,.35);
}
.btn-kits:hover{
	box-shadow: 0 0 40px rgba(143,21,21,.35);
}
.btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover{
    transform: translateY(-3px);
}
.kit-intro{
    margin-bottom: 5rem;
}

.section-header{
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag{
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2{
    max-width: 800px;
    margin: 0 auto;
}

.intro-content{
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p{
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.kit-products{
    margin-bottom: 5rem;
}

.kit-grid{
    display:grid;
    gap:2rem;
    margin-top:3rem;
}

.kit-card{
    padding:2rem;
    border-radius:20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.kit-card:hover{
    transform:translateY(-5px);
}

.kit-card-icon{
    font-size:2rem;
    margin-bottom:1rem;
}

.kit-card h3{
    margin-bottom:1rem;
}

.kit-card p{
    margin:0;
    line-height:1.7;
}

@media(min-width:768px){

    .kit-grid{
        grid-template-columns:repeat(3,1fr);
    }

}
.kit-benefits{
    margin: 5rem 0;
}

.benefits-grid{
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card{
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: .3s;
}

.benefit-card:hover{
    transform: translateY(-6px);
}

.benefit-card i{
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3{
    margin-bottom: 1rem;
}

.benefit-card p{
    line-height: 1.8;
    margin: 0;
}

@media(min-width:768px){

    .benefits-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(min-width:1200px){

    .benefits-grid{
        grid-template-columns: repeat(4,1fr);
    }

}

.kit-for{
    margin: 5rem 0;
}

.for-grid{
    display:grid;
    gap:2rem;
    margin-top:3rem;
}

.for-card{
    padding:2rem;
    border-radius:20px;
    text-align:center;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.for-card:hover{
    transform:translateY(-6px);
}

.for-card i{
    font-size:2.5rem;
    color:var(--primary);
    margin-bottom:1.25rem;
}

.for-card h3{
    margin-bottom:1rem;
}

.for-card p{
    margin:0;
    line-height:1.8;
}

@media(min-width:768px){

    .for-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(min-width:1200px){

    .for-grid{
        grid-template-columns:repeat(4,1fr);
    }

}
.kit-gift{
    margin:5rem 0;
}

.gift-content{
    display:grid;
    gap:3rem;
    align-items:center;
}

.gift-text p{
    margin-bottom:1.5rem;
    line-height:1.8;
}

.gift-list{
    list-style:none;
    padding:0;
    margin:2rem 0 0;
}

.gift-list li{
    padding:.75rem 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.gift-list li:last-child{
    border-bottom:none;
}

.gift-highlight{
    display:flex;
    justify-content:center;
}

.highlight-card{
    width:100%;
    max-width:400px;
    padding:3rem 2rem;
    text-align:center;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.highlight-card i{
    font-size:3rem;
    color:var(--primary);
    margin-bottom:1.5rem;
}

.highlight-card h3{
    margin-bottom:1rem;
}

.highlight-card p{
    margin:0;
    line-height:1.8;
}

@media(min-width:992px){

    .gift-content{
        grid-template-columns:2fr 1fr;
    }

}
.kit-faq{
    margin:5rem 0;
}

.faq-container{
    max-width:900px;
    margin:3rem auto 0;
}

.faq-item{
    margin-bottom:1rem;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.faq-item summary{
    cursor:pointer;
    padding:1.25rem 1.5rem;
    font-weight:600;
    list-style:none;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item p{
    padding:0 1.5rem 1.5rem;
    margin:0;
    line-height:1.8;
}

/* ========================================
   CTA FINAL
======================================== */

.kit-cta{
    margin:5rem 0 2rem;
    padding:4rem 2rem;
    border-radius:30px;
    text-align:center;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );
    border:1px solid rgba(255,255,255,.1);
}

.cta-content{
    max-width:800px;
    margin:0 auto;
}

.cta-content h2{
    margin:1rem auto 1.5rem;
    font-size:clamp(2rem,4vw,3rem);
}

.cta-content p{
    max-width:650px;
    margin:0 auto 2rem;
    line-height:1.8;
    color:var(--gray);
}

.cta-content .btn-primary{
    margin-top:1rem;
}
/* ========================================
   PRODUTOS INCLUSOS
======================================== */
.product-card-kits img{
	width: 100%;
	box-sizing: border-box;
	object-fit: cover;
}

.kit-products{
    margin:5rem 0;
}


.kit-product-wrapper{
    margin-top:3rem;
}


.kit-product-card{
    display:grid;
    gap:2rem;
    align-items:center;
    padding:2rem;
    border-radius:25px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}


.kit-image img{
    width:100%;
    border-radius:20px;
    display:block;
}


.kit-product-info h3{
    font-size:2rem;
    margin-bottom:1.5rem;
}


.kit-items{
    list-style:none;
    padding:0;
    margin:0 0 2rem;
}


.kit-items li{
    display:flex;
    align-items:center;
    gap:.75rem;
    margin-bottom:1rem;
}


.kit-items i{
    color:var(--primary);
}


.kit-price{
    margin-bottom:1.5rem;
}


.kit-price strong{
    font-size:2rem;
}


@media(min-width:900px){

    .kit-product-card{
        grid-template-columns:1fr 1fr;
        padding:3rem;
    }

}

