/* section-10-pricing.css */

.section-pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f6f5 0%, #e5eeed 100%);
    position: relative;
    overflow: hidden;
}

.section-pricing::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 143, 28, 0.05) 0%, rgba(241, 143, 28, 0) 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
}

.section-pricing .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0A4D40;
}

.section-pricing .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 45%;
    max-width: 480px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.pricing-card.essential {
    border-color: #0A4D40;
    transform: translateY(0);
}

.pricing-card.professional {
    border-color: #F18F1C;
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.professional:hover {
    transform: translateY(-30px);
}

.pricing-badge {
    position: absolute;
    top: 30px;
    right: -35px;
    background-color: #F18F1C;
    color: white;
    padding: 5px 30px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #f8fbfb 0%, #edf3f2 100%);
}

.plan-name {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.plan-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: #0A4D40;
    margin: 0;
}

.pricing-card.professional .plan-subtitle {
    color: #F18F1C;
}

.pricing-content {
    padding: 30px;
    flex-grow: 1;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item.highlighted {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #e6f0ee;
    color: #0A4D40;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-card.professional .feature-icon {
    background-color: #fef2e4;
    color: #F18F1C;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.feature-item.highlighted .feature-text {
    font-weight: 700;
}

.bonus-feature {
    background-color: #f8fbfb;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 1px dashed #ddd;
    position: relative;
    overflow: hidden;
}

.bonus-feature::before {
    content: '+';
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 60px;
    color: rgba(10, 77, 64, 0.05);
    font-weight: 700;
    line-height: 1;
}

.pricing-card.professional .bonus-feature::before {
    color: rgba(241, 143, 28, 0.05);
}

.bonus-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #0A4D40;
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: #e6f0ee;
    padding: 3px 12px;
}

.pricing-card.professional .bonus-label {
    color: #F18F1C;
    background-color: #fef2e4;
}

.bonus-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.pricing-footer {
    padding: 30px;
    border-top: 1px solid #eee;
    text-align: center;
    background: linear-gradient(135deg, #f8fbfb 0%, #edf3f2 100%);
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    color: #0A4D40;
    line-height: 1;
    margin: 0 5px;
}

.pricing-card.professional .price-value {
    color: #F18F1C;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.price-savings {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f0f6f5;
    border-radius: 8px;
    text-align: center;
}

.savings-label {
    font-size: 12px;
    font-weight: 700;
    color: #0A4D40;
    text-transform: uppercase;
    display: block;
}

.pricing-card.professional .savings-label {
    color: #F18F1C;
}

.savings-value {
    font-size: 18px;
    font-weight: 700;
    color: #0A4D40;
    display: block;
    margin: 5px 0;
}

.pricing-card.professional .savings-value {
    color: #F18F1C;
}

.savings-text {
    font-size: 12px;
    color: #666;
    display: block;
}

.btn-signup {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-signup:hover::before {
    left: 100%;
}

.essential-btn {
    background-color: #0A4D40;
    color: white;
}

.essential-btn:hover {
    background-color: #0b5a4a;
    box-shadow: 0 5px 20px rgba(10, 77, 64, 0.3);
}

.pro-btn {
    background-color: #F18F1C;
    color: white;
}

.pro-btn:hover {
    background-color: #f59c33;
    box-shadow: 0 5px 20px rgba(241, 143, 28, 0.3);
}

.pricing-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.highlight-svg {
    width: 30px;
    height: 30px;
    stroke: #0A4D40;
    stroke-width: 2;
    fill: none;
}

.highlight-svg circle {
    fill: #e6f0ee;
}

.highlight-svg path {
    stroke: #0A4D40;
}

.highlight-text {
    font-size: 16px;
    font-weight: 700;
    color: #0A4D40;
}

/* Adicionar animação para o bônus */
@keyframes bonusReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-feature {
    animation: bonusReveal 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Media Queries para Responsividade */
@media (max-width: 1199px) {
    .pricing-container {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .pricing-card {
        width: 80%;
        transform: none !important;
        margin-bottom: 30px;
    }
    
    .pricing-card.professional {
        transform: none !important;
    }
    
    .section-pricing .section-title {
        font-size: 32px;
    }

    .highlight-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .section-pricing {
        padding: 60px 0;
    }
    
    .pricing-card {
        width: 90%;
    }
    
    .section-pricing .section-title {
        font-size: 28px;
    }
    
    .section-pricing .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .pricing-highlight {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .highlight-icon {
        margin: 0 0 15px 0;
    }

    .highlight-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        width: 100%;
    }
    
    .plan-subtitle {
        font-size: 20px;
    }
    
    .section-pricing .section-title {
        font-size: 24px;
    }
    
    .price-value {
        font-size: 36px;
    }
}