/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background:#000;
}

/* BORDA DEGRADÊ */
.page-wrapper{
    padding:10px;
    background: linear-gradient(
        180deg,
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.2) 25%,
        rgba(255,0,0,0.5) 50%,
        #f1295b 80%,
        #f1295b 100%
    );
    margin-bottom: 150px;
}

.container{
    background: linear-gradient(180deg, #000000, #111111);
    border-radius:10px;
    color:#fff;
}

.vip-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 800;
    font-size: clamp(18px, 4vw, 28px);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(4px);
    width: 90%;
}

/* SEÇÕES */
.section{
    padding:50px 20px;
    text-align:center;
}

.section-dark{
    background:#0d0d0d;
}

.section-divider{
    border-top:1px solid rgba(255,140,0,.2);
}

/* VIDEO BOX */
.profile-box{
	position:relative; /* importante */
    border:3px solid #ff7a00;
    border-radius:15px;
    display:inline-block;
    margin-bottom:25px;
    max-width: 100%;
    overflow: hidden;
}

.profile-box video,
.profile-box .video-container {
    max-width: 640px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

/* TAG */
.tag{
    display:inline-block;
    margin-top:15px;
    background: linear-gradient(90deg,#ff7a00,#ff3c00);
    padding:12px 30px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
}

/* TITULO */
h1{
    font-size:clamp(32px, 7vw, 65px);
    margin:40px 0 20px;
    line-height:1.2;
    font-weight:800;

}


img {
  width: 100%;
}

h1 span{
    background: linear-gradient(90deg, rgb(255 138 0), rgb(255 61 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 18px rgba(255, 120, 0, .25));
}

/* DESCRIÇÃO */
.description{
    color:#ccc;
    font-size:18px;
    max-width:750px;
    margin:0 auto 30px;
}

/* BOTÃO */
.btn{
    display:inline-block;
    background: linear-gradient(90deg,#ff7a00,#ff3c00);
    padding:18px 50px;
    border-radius:10px;
    font-weight:700;
    color:#fff;
    text-decoration:none;
    box-shadow: 0 0 20px rgba(255, 140, 0, .6) !important;
    transition:.3s;
    animation:pulse 1.8s infinite;
}

.btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 30px #ff7a00;
}

.btn1 {
  width: 100%;
    max-width: 640px;
    height: 70px ;
    font-size: 28px ;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .35) !important;
    line-height: 70px; /* Adicionado para centralizar verticalmente */
    padding: 0;
}
.btn2 {
  text-align: center;
    font-size: 25px;
    height: 70px;
    line-height: 70px; /* Adicionado para centralizar verticalmente */
    padding: 0 30px;
}

.sc3 {
  background: #151515;
}

.hero-sub {
  margin: 0 0 16px;
    color: #d9d9d9;
    font-size: clamp(16px, 4.8vw, 22px);
    line-height: 1.45;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

/* CTA AREA (SEGUNDO BOTÃO COM IMAGENS) */
.cta-area{
   max-width:990px;
    margin:40px auto 0;
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.side-img{
    border-radius:10px;
    border:2px solid #ff7a00;
    box-shadow:0 0 15px #ff7a00;
    object-fit:cover;
}

/* BENEFÍCIOS */
.benefits-grid{
    max-width:900px;
    margin:40px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:40px;
}

.benefit-box h3{
    color:#ff7a00;
    margin-bottom:10px;
}

.benefit-box p{
    color:#ccc;
    font-size:15px;
}

/* PREÇO */
.price{
    font-size:34px;
    font-weight:800;
    color:#ff7a00;
    margin:30px 0;
}

.section-dark-int {
  max-width: 960px;
  margin: auto;
  text-align: left;
}

/* RESPONSIVO */
@media(max-width:768px){

    .section{
        padding:25px 15px;
    }
    
	.btn1 {
		font-size: 17px;
	}

    .cta-area {
          grid-template-columns: 1fr;
    }

                h1 {

                    font-size: clamp(42px, 7vw, 65px);
                }
        
                .hero-sub {
                    text-align: center;
                }
        
                .vip-tag {
                    padding: 15px 20px;
                }
                .section-dark-int {
                    text-align: center;
                    margin-top: -40px;
                }

}


/* Carrosel*/
  .carousel-container {
            position: relative;
            width: 90vw;
            max-width: 1400px;
            margin-top: 40px;
            height: 350px;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        .carousel-track {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            will-change: transform;
            animation: scroll 28s linear infinite;
        }

        .carousel-item {
            flex: 0 0 auto;
            width: 300px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
            transition: transform 0.4s ease;
        }

        .carousel-item img:hover {
            transform: scale(1.06);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .carousel-container:hover .carousel-track {
            /*animation-play-state: paused;*/
            animation-play-state: running !important;
        }