/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Títulos em seções com fundo preto */
.solution .section-title,
.cost-comparison .section-title,
.special-offer .section-title,
.faq .section-title {
    color: #ffffff !important;
}

.section-title span {
    font-size: 3rem;
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    background: #000000;
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-vsl {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-offer {
    margin-bottom: 2rem;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
}

.offer-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.offer-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

/* CTA Buttons */
.cta-container {
    margin: 2rem 0;
}

.cta-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

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

.cta-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Problem Section */
.problem {
    padding: 50px 0;
    background: #ffffff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #f8f9fa;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 60px 0;
    background: #000000;
    color: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.solution-card ul {
    list-style: none;
    text-align: left;
}

.solution-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: #ffffff;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #6c757d;
}

.continuous-flow {
    text-align: center;
    background: #000000;
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

/* Cost Comparison Section */
.cost-comparison {
    padding: 60px 0;
    background: #000000;
    color: white;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.traditional {
    border-top: 4px solid #e74c3c;
}

.comparison-card.zappost {
    border-top: 4px solid #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cost-items {
    margin-bottom: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.total-cost {
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 8px;
    color: #ff6b6b;
}

.zappost-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    color: #FFD700;
}

.per-post {
    font-size: 0.9rem;
    opacity: 0.8;
}

.savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
}

.savings-icon {
    font-size: 1.5rem;
}

.vs-divider {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    background: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
    border: 2px solid #FFD700;
    justify-self: center;
}

/* Bonus Section */
.bonus {
    padding: 60px 0;
    background: #ffffff;
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bonus-description {
    flex: 1;
    min-width: 300px;
}

.bonus-description h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.bonus-description ul {
    list-style: none;
}

.bonus-description li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.bonus-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.bonus-value {
    text-align: center;
    background: #000000;
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFD700;
}

.original-value {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.strikethrough {
    text-decoration: line-through;
    color: #ff6b6b;
}

.bonus-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
}

/* Special Offer Section - Otimizada para Mobile */
.special-offer {
    padding: 50px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.offer-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid #FFD700;
    max-width: 900px;
    margin: 0 auto;
}

.price-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.plan-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option:hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.plan-option.selected {
    border: 2px solid #FFD700;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.plan-option.featured {
    border: 2px solid #FFD700;
    background: rgba(255, 215, 0, 0.1);
    position: relative;
}

.plan-option.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.original-price {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.current-price .price {
    color: #FFD700;
}

.plan-type {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature {
    font-size: 1rem;
    font-weight: 500;
}

/* Why AI Section */
.why-ai {
    padding: 60px 0;
    background: #ffffff;
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ai-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #000000;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.stat-icon {
    font-size: 2rem;
}

.stat-text {
    font-weight: 600;
    color: white;
}

.ai-message {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #6c757d;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #000000;
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    text-align: center;
}

.urgency-banner {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.urgency-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.warning {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    /* Redução geral de padding para mobile */
    .hero {
        padding: 25px 0;
    }
    
    .problem,
    .solution,
    .how-it-works,
    .cost-comparison,
    .bonus,
    .special-offer,
    .why-ai,
    .faq,
    .final-cta {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-offer {
        margin-bottom: 1.5rem;
    }
    
    .offer-badge {
        padding: 0.8rem 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    /* Comparação de custos - VS no meio */
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        order: 2;
        margin: 1rem auto;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .comparison-card.traditional {
        order: 1;
    }
    
    .comparison-card.zappost {
        order: 3;
    }
    
    /* Seção de planos otimizada para mobile - LADO A LADO */
    .offer-container {
        padding: 1.5rem;
    }
    
    .price-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .plan-option {
        padding: 1rem 0.8rem;
        min-width: auto;
        max-width: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 140px;
    }
    
    .plan-option.featured {
        transform: none;
        margin-top: 0;
    }
    
    .plan-option.featured::before {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
        top: -8px;
    }
    
    .original-price {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .current-price {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .plan-type {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    /* CTA Button otimizado */
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
    }
    
    /* Steps em coluna */
    .steps {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Bonus em coluna */
    .bonus-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    /* AI stats em coluna */
    .ai-stats {
        grid-template-columns: 1fr;
    }
    
    .ai-stat {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    /* Solution grid em coluna */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Problem grid em coluna */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title span {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-button.large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .offer-container {
        padding: 1rem;
    }
    
    .plan-option {
        padding: 0.8rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
    
    .plan-type {
        font-size: 0.8rem;
    }
    
    .feature {
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .vs-divider {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}



/* Carousel Section */
.carousel-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.carousel-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    text-align: center;
}

.carousel-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #000000;
}

.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 0;
    }
    
    .carousel-container {
        max-width: 90%;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 2rem;
    }
}


/* New Pricing Section Styles */
.pricing-section-new {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.pricing-section-new .container {
    max-width: 600px;
}

.section-title-pricing {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0;
    color: #1a1a1a;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.pricing-card.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.selection-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pricing-card.selected .selection-indicator {
    border-color: #10b981;
    background: #10b981;
}

.selection-indicator::after {
    content: '';
    width: 0;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.pricing-card.selected .selection-indicator::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: auto;
    height: auto;
    opacity: 1;
}

.card-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.plan-details {
    text-align: left;
}

.plan-duration {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    display: inline;
    margin: 0;
}

.plan-period {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
    display: inline;
    margin-left: 0.3rem;
}

.card-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-container-new {
    text-align: right;
}

.price-new {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin-bottom: 0.2rem;
}

.currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-right: 0.2rem;
}

.amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-period {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.best-offer-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.savings-banner {
    background: #e5e7eb;
    color: #374151;
    padding: 12px 20px;
    border-radius: 25px;
    margin: 1.5rem auto;
    font-size: 1rem;
    font-weight: 600;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.savings-banner.hide {
    display: none;
}

.savings-emoji {
    font-size: 1.2rem;
}

.action-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1rem auto;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.action-button:active {
    transform: translateY(0);
}

.features-new {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .section-title-pricing {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-card {
        padding: 1rem 1.2rem;
    }

    .card-info {
        gap: 1rem;
    }
    
    .plan-duration {
        font-size: 1.3rem;
    }

    .plan-period {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 1.5rem;
    }
    
    .currency {
        font-size: 0.8rem;
    }
    
    .price-period {
        font-size: 0.7rem;
    }

    .best-offer-badge {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .savings-banner {
        font-size: 0.9rem;
        padding: 10px 16px;
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .card-left {
        gap: 0.8rem;
    }

    .card-info {
        gap: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .card-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }
    
    .section-title-pricing {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .plan-duration {
        font-size: 1.2rem;
    }

    .plan-period {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 1.3rem;
    }

    .selection-indicator {
        width: 20px;
        height: 20px;
    }

    .best-offer-badge {
        font-size: 0.55rem;
        padding: 4px 8px;
    }

    .savings-banner {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 320px) {
    .pricing-card {
        padding: 0.6rem 0.8rem;
    }
    
    .plan-duration {
        font-size: 1rem;
    }

    .plan-period {
        font-size: 1rem;
    }
    
    .amount {
        font-size: 1.1rem;
    }
}
