/* ============================================
   BOTÕES DE ALTA CONVERSÃO - COR LARANJA
   ============================================ */

.btn-cta-main {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.btn-cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cta-main:hover::before {
    left: 100%;
}

.btn-cta-main:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-cta-main:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-cta-final {
    font-size: 1.3rem;
    padding: 24px 48px;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6), 0 0 0 10px rgba(255, 107, 53, 0.1);
    }
}

/* ============================================
   NOVA ESTRUTURA DE PREÇO
   ============================================ */

.price-box-new {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    border: 3px solid #B794F4;
}

.value-breakdown {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #E5E7EB;
}

.breakdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 15px;
}

.breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 1.05rem;
}

.item-name {
    color: #374151;
    font-weight: 500;
}

.item-value {
    color: #6B7280;
    font-weight: 600;
    text-decoration: line-through;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #E5E7EB;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
}

.total-value {
    color: #DC2626;
    text-decoration: line-through;
}

.price-today {
    text-align: center;
}

.price-label {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 10px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 15px 0;
}

.price-current .currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
}

.price-current .amount {
    font-size: 5rem;
    font-weight: 900;
    color: #10B981;
    margin: 0 5px;
    line-height: 1;
}

.price-current .cents {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
}

.price-discount-new {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 15px 0;
}

.installment {
    font-size: 1rem;
    color: #6B7280;
    margin-top: 10px;
}

/* ============================================
   ALERTA DE URGÊNCIA
   ============================================ */

.urgency-alert {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* ============================================
   NOVOS TÍTULOS
   ============================================ */

.sales-title-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: #DC2626;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.sales-subtitle-new {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sales-description {
    font-size: 1.2rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ============================================
   SEÇÃO DE DEPOIMENTOS
   ============================================ */

.testimonial-video-section {
    background: #F9FAFB;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.written-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card-new {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text-new {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
    margin: 15px 0 20px 0;
    font-style: italic;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B46C1 0%, #9F7AEA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #B794F4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.author-name {
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 3px;
}

.author-business {
    font-size: 0.9rem;
    color: #6B7280;
}

/* ============================================
   BENEFÍCIOS COM ÍCONES
   ============================================ */

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card-new {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #B794F4;
}

.benefit-card-new.featured-benefit {
    border: 3px solid #FF6B35;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
}

.benefit-icon-new {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-card-new h3 {
    font-size: 1.5rem;
    color: #6B46C1;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-desc {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-checklist li {
    padding: 8px 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

/* ============================================
   PARA QUEM É
   ============================================ */

.for-who-new {
    background: linear-gradient(135deg, #EDE9FE 0%, #F9FAFB 100%);
}

.for-who-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.for-who-item {
    background: #FFFFFF;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: start;
    gap: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.for-who-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.icon-check {
    font-size: 2rem;
    color: #10B981;
    flex-shrink: 0;
    font-weight: 700;
}

.for-who-item p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */

.faq-new {
    background: #FFFFFF;
}

.faq-list-new {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-new {
    background: #F9FAFB;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item-new:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #6B46C1;
    margin: 0;
    font-weight: 700;
}

.faq-answer p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   GARANTIA
   ============================================ */

.guarantee-new {
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
}

.guarantee-box-new {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 3px solid #10B981;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final-new {
    background: linear-gradient(135deg, #6B46C1 0%, #9F7AEA 100%);
    padding: 60px 0;
}

.cta-final-box-new {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #FFFFFF;
}

.urgency-badge-final {
    background: rgba(220, 38, 38, 0.9);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.cta-final-box-new h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-offer-box {
    background: #FFFFFF;
    color: #1F2937;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.offer-summary h3 {
    color: #6B46C1;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.offer-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.offer-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #374151;
}

.offer-price-final {
    text-align: center;
}

.price-label-final {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 10px;
}

.price-big {
    font-size: 4.5rem;
    font-weight: 900;
    color: #10B981;
    line-height: 1;
    margin: 15px 0;
}

.price-big span {
    font-size: 2.5rem;
}

.installment-final {
    font-size: 1.1rem;
    color: #6B7280;
    margin: 10px 0;
}

.economy {
    font-size: 1.2rem;
    color: #DC2626;
    font-weight: 700;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.security-badges span {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 968px) {
    .sales-title-new {
        font-size: 2.5rem;
    }
    
    .sales-subtitle-new {
        font-size: 1.5rem;
    }
    
    .benefits-grid-new {
        grid-template-columns: 1fr;
    }
    
    .written-testimonials {
        grid-template-columns: 1fr;
    }
    
    .for-who-grid-new {
        grid-template-columns: 1fr;
    }
    
    .final-offer-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sales-title-new {
        font-size: 2rem;
    }
    
    .btn-cta-main {
        font-size: 1rem;
        padding: 16px 30px;
    }
    
    .price-current .amount {
        font-size: 3.5rem;
    }
}

