body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 5rem 0 4rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.cta-button {

    background-color: var(--success);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 30px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    /* <- adicionado */
    overflow: hidden;
    /* <- impede que ::before ultrapasse o botão */
    z-index: 1;
}



.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    background-color: var(--success-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 184, 148, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.bonus-section {
    background: linear-gradient(135deg, var(--primary), #cc74ff);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.4);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bonus-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--danger);
    background-color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(214, 48, 49, 0.2);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 1rem 0;
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary);
}

.player-container {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.player-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed rgba(108, 92, 231, 0.2);
    border-radius: 10px;
    pointer-events: none;
}

.play-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
    border: none;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.guarantee-badge {
    background-color: var(--warning);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
}

footer {
    background: linear-gradient(135deg, #1e272e, var(--dark));
    color: rgb(8, 8, 8);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    margin: 0 12px;
    transition: all 0.3s;
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
}

.social-icon:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-5px);
    text-decoration: none;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
    position: relative;
    display: inline-block;
}

.price-tag::before {
    content: 'R$';
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    left: -25px;
}

.strike-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.8rem;
}

.device-badge {
    background-color: white;
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 50px;
    margin: 8px;
    display: inline-block;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.device-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--primary);
    color: white;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 184, 148, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-item i {
    color: var(--success);
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .price-tag {
        font-size: 2.8rem;
    }

    .strike-price {
        font-size: 1.5rem;
    }

    .countdown {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}




/* ===== CHECKOUT PIX MODERNO ===== */
.checkout-container {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.1);
    position: relative;
    z-index: 10;
}

.checkout-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1;
}

.checkout-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.checkout-header h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.checkout-header p {
    color: var(--dark);
    opacity: 0.8;
}

.checkout-body {
    padding: 0 2rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.checkout-footer {
    padding: 1.5rem 2rem;
    background: rgba(245, 246, 250, 0.7);
    border-top: 1px solid rgba(0, 0, 0, 0.05);

}


.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 1rem 0;
}

.payment-method {
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method span {
    color: var(--success-dark);
}

.payment-method.active {
    border-color: var(--success);
    background: rgba(0, 184, 148, 0.05);
}

.payment-method i {
    color: var(--primary);
    font-size: 1.2rem;
}

.payment-method.active i {
    color: var(--success);
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}

/* PIX QR Code Section */
.pix-section {
    text-align: center;
    padding: 2rem;
    background: rgba(245, 246, 250, 0.5);
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px dashed rgba(108, 92, 231, 0.3);
}

.pix-code-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.pix-code-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pix-code {
    font-family: monospace;
    word-break: break-all;
    color: var(--dark);
    background: rgba(245, 246, 250, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
}

.payment-status {
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1rem 0;
    font-weight: 600;
    transition: all 0.3s;
}

.payment-status.pending {
    background: rgba(253, 203, 110, 0.2);
    color: var(--dark);
}

.payment-status.paid {
    background: rgba(0, 184, 148, 0.2);
    color: var(--success-dark);
}

.payment-status.expired {
    background: rgba(214, 48, 49, 0.1);
    color: var(--danger);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .checkout-container {
        margin: 1rem;
        border-radius: 15px;
    }

    .checkout-header,
    .checkout-body {
        padding: 1.5rem;
    }

    .pix-section {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-container {
    animation: fadeIn 0.6s ease-out forwards;
}



/* produto */

.product-card-horizontal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 1rem auto;
}

.product-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.15);
}

.product-image {
    flex-shrink: 0;
}

.product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(108, 92, 231, 0.1);
}

.product-info {
    flex-grow: 1;
}

.product-title {
    color: var(--primary-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.product-description {
    color: var(--dark);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Efeito de borda animada */
.product-card-horizontal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card-horizontal:hover::after {
    transform: scaleX(1);
}



/* Estilos para a confirmação de pagamento */
.payment-confirmation {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.payment-confirmation i {
    font-size: 3rem;
    color: var(--success);
}

.confirmation-message {
    flex: 1;
}

.confirmation-message h3 {
    margin: 0 0 5px 0;
    color: var(--success-dark);
}

.confirmation-message p {
    margin: 0;
    color: var(--dark);
}

.confirmation-message .countdown {
    margin-top: 10px;
    font-size: 0.5rem;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Animação de sucesso */
@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.payment-confirmation {
    animation: bounceIn 0.6s ease-out forwards;
}




.checkout-steps .step {
    flex: 1;
    position: relative;
}

.checkout-steps .circle {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    background: #dee2e6;
    border-radius: 50%;
    color: #6c757d;
    line-height: 42px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.checkout-steps .step.active .circle {
    background-color: var(--primary, #6c5ce7);
    color: white;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.2);
}

.checkout-steps .step.done .circle {
    background-color: var(--success, #00b894);
    color: white;
}

.checkout-steps .step small {
    display: block;
    color: #6c757d;
    font-weight: 500;
}

.checkout-steps .step.active small {
    color: var(--primary, #6c5ce7);
}

.checkout-steps .step.done small {
    color: var(--success, #00b894);
}

.checkout-steps .step::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 4px;
    background-color: #dee2e6;
    z-index: -1;
}

.checkout-steps .step:last-child::after {
    display: none;
}

.checkout-steps .step.done::after {
    background-color: var(--success, #00b894);
}