.preco-garantia {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Melhorias adicionais para otimização de conversão */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-primary:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

/* Melhorias para seções de depoimentos */
.depoimento-card {
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Destaque para o valor total dos bônus */
.bonus-total {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    text-align: center;
    border: 2px dashed #ff6b6b;
}

.bonus-total h3 {
    margin-bottom: 10px;
    color: #333;
}

.bonus-total .valor-total {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin: 15px 0;
}

.bonus-total p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Melhorias para FAQ */
.faq-item {
    cursor: pointer;
}

.faq-pergunta {
    position: relative;
    padding-right: 30px;
}

.faq-pergunta:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #3a86ff;
    transition: all 0.3s ease;
}

.faq-item.active .faq-pergunta:after {
    transform: rotate(45deg);
}

/* Melhorias para responsividade em dispositivos móveis */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .cta-final h2 {
        font-size: 1.5rem;
    }
}
