/* Estilos de Preços - Páginas Pricing */

.pricing-interactive-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-interactive-section .container {
    max-width: 1200px;
}

/* Layout Esquerda - Logo e Slogan */
.pricing-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.pricing-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.pricing-tagline h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #072F48;
    line-height: 1.2;
}

.pricing-tagline p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

[data-theme="dark"] .pricing-tagline h3 {
    color: #ACFEC0;
}

[data-theme="dark"] .pricing-tagline p {
    color: #ccc;
}

/* Layout Direita - Plano */
.pricing-right {
    display: flex;
    justify-content: center;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
    position: relative;
}

[data-theme="dark"] .plan-card {
    background: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #146F8A, #072F48);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

[data-theme="dark"] .plan-badge {
    background: linear-gradient(135deg, #ACFEC0, #146F8A);
    color: #072F48;
}

.plan-card h2 {
    font-size: 1.8rem;
    color: #072F48;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

[data-theme="dark"] .plan-card h2 {
    color: #ACFEC0;
}

.plan-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

[data-theme="dark"] .plan-description {
    color: #aaa;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

[data-theme="dark"] .plan-price {
    border-bottom-color: #333;
}

.plan-price .currency {
    font-size: 1rem;
    color: #146F8A;
    font-weight: 600;
}

[data-theme="dark"] .plan-price .currency {
    color: #ACFEC0;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #146F8A;
}

[data-theme="dark"] .plan-price .amount {
    color: #ACFEC0;
}

.plan-price .period {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

[data-theme="dark"] .plan-price .period {
    color: #aaa;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

[data-theme="dark"] .plan-features li {
    color: #ccc;
    border-bottom-color: #333;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Plan Actions */
.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #146F8A, #072F48);
    color: white;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #0f5570, #051c2e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 111, 138, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #146F8A;
    border-color: #146F8A;
}

.btn-cta-secondary:hover {
    background: rgba(20, 111, 138, 0.05);
    border-color: #0f5570;
    color: #0f5570;
}

[data-theme="dark"] .btn-cta-primary {
    background: linear-gradient(135deg, #ACFEC0, #7cff9a);
    color: #072F48;
}

[data-theme="dark"] .btn-cta-primary:hover {
    background: linear-gradient(135deg, #97b3a0, #72d88a);
    box-shadow: 0 4px 12px rgba(172, 254, 192, 0.3);
}

[data-theme="dark"] .btn-cta-secondary {
    color: #ACFEC0;
    border-color: #ACFEC0;
}

[data-theme="dark"] .btn-cta-secondary:hover {
    background: rgba(172, 254, 192, 0.1);
    border-color: #97b3a0;
    color: #97b3a0;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-interactive-section .container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .pricing-left {
        order: 2;
    }

    .pricing-right {
        order: 1;
    }

    .pricing-tagline h3 {
        font-size: 1.4rem;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-card h2 {
        font-size: 1.5rem;
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 1.5rem 1rem;
    }

    .plan-actions {
        gap: 0.5rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}
