/* Responsividade para banners premium e avisos de bloqueio */
@media (max-width: 768px) {
    .premium-block, .upgrade-banner, .premium-user-badge, .ad-banner, .upgrade-content, .premium-card, .tool-card.premium-card {
        border-radius: 16px !important;
        margin: 1rem 0.5rem !important;
        padding: 1.2rem 0.5rem !important;
        box-shadow: 0 4px 16px #764ba233 !important;
        min-width: 0 !important;
        max-width: 100vw !important;
    }
    .premium-block > div, .upgrade-content {
        padding: 1.2rem 0.5rem !important;
        max-width: 98vw !important;
    }
    .premium-block span, .upgrade-icon {
        font-size: 2.2rem !important;
    }
    .premium-block .btn, .upgrade-content .btn {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 0;
        margin-top: 1rem;
    }
}
@media (max-width: 480px) {
    .premium-block, .upgrade-banner, .premium-user-badge, .ad-banner, .upgrade-content, .premium-card, .tool-card.premium-card {
        border-radius: 10px !important;
        margin: 0.5rem 0.2rem !important;
        padding: 0.7rem 0.2rem !important;
        box-shadow: 0 2px 8px #764ba233 !important;
    }
    .premium-block > div, .upgrade-content {
        padding: 0.7rem 0.2rem !important;
        max-width: 99vw !important;
    }
    .premium-block span, .upgrade-icon {
        font-size: 1.5rem !important;
    }
    .premium-block .btn, .upgrade-content .btn {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }
}
/* ========================================
   PREMIUM SYSTEM STYLES
   ======================================== */

/* Anúncios - Banner Principal */
.ad-banner {
    margin: 1.5rem 0;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ── Novo sistema de ads AdSense-compatible ── */
.ad-banner-wrapper {
    width: 100%;
    margin: 1.5rem 0;
}

.ad-slot-outer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid #e8e3f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fafafa;
}

.ad-label-top {
    display: block;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    padding: 4px 0 3px;
    background: #f3f3f3;
    border-bottom: 1px solid #e8e3f0;
}

/* Espaço reservado para unidade AdSense — Google exige min 90px de altura */
.adsbygoogle {
    display: block;
    min-height: 90px;
    width: 100%;
}

.ad-promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(90deg, #fffbe6 0%, #fff8f0 100%);
    flex-wrap: wrap;
}

.ad-promo-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.ad-promo-emoji {
    font-size: 2.4rem;
    flex-shrink: 0;
}

.ad-promo-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #6b4c00;
    margin: 0 0 0.2rem;
}

.ad-promo-sub {
    font-size: 0.88rem;
    color: #a07830;
}

.btn-ad-upgrade {
    display: inline-block;
    background: linear-gradient(90deg, #ffb300 0%, #ff8c00 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.65rem 1.6rem;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255,180,0,0.3);
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.btn-ad-upgrade:hover { opacity: 0.9; color: #fff; }

.btn-ad-secondary {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
}

.ad-mid .ad-promo-inner {
    background: linear-gradient(90deg, #f0f4ff 0%, #f5f0ff 100%);
}
.ad-mid .ad-promo-title { color: #3a2d6e; }
.ad-mid .ad-promo-sub   { color: #6b5ea8; }

@media (max-width: 600px) {
    .ad-promo-inner { flex-direction: column; align-items: flex-start; padding: 1rem; }
    .btn-ad-upgrade { width: 100%; text-align: center; }
}

/* Banner de Upgrade */
.upgrade-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 8px 48px rgba(102, 126, 234, 0.5); }
}

.upgrade-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    color: white;
}

.upgrade-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.upgrade-text {
    flex: 1;
}

.upgrade-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.upgrade-text p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

/* Badge Premium para usuários Premium */
.premium-user-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-user-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.premium-badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-badge-icon {
    font-size: 2.5rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.premium-badge-text strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.premium-badge-text small {
    font-size: 0.875rem;
    color: #333;
}

/* Login Prompt para usuários não autenticados */
.login-prompt-banner {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.login-prompt-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    color: white;
}

.login-prompt-icon {
    font-size: 3rem;
}

.login-prompt-text {
    flex: 1;
}

.login-prompt-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.login-prompt-text p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

/* Badge Premium no Header */
.premium-badge-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
    }
}


.btn-premium {
    background: white;
    color: #667eea;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9ff;
}

.btn-premium span {
    font-size: 1rem;
}

.btn-premium small {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Badge Premium */
.premium-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.premium-badge::before {
    content: "👑";
    font-size: 0.9rem;
}

/* Modal de Feature Premium */
.premium-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.premium-modal-overlay.active {
    display: flex;
}

.premium-modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.premium-modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.premium-modal h3 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.premium-modal p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.premium-features {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.premium-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.premium-features li::before {
    content: "✨";
    font-size: 1.25rem;
}

.premium-modal-actions {
    display: flex;
    gap: 1rem;
}

.premium-modal-actions .btn {
    flex: 1;
}

/* Indicador de Feature Premium */
.premium-feature {
    position: relative;
}

.premium-feature::after {
    content: "👑 Premium";
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.premium-feature.locked {
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(0.5);
}

/* Seção de Pricing */
.pricing-section {
    padding: 3rem 0;
}

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

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: #667eea;
    position: relative;
    background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
}

.pricing-card.featured::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-price small {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-period {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.pricing-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled::before {
    content: "✗";
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .upgrade-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .upgrade-icon {
        font-size: 2.5rem;
    }
    
    .btn-premium {
        width: 100%;
    }
    
    .premium-modal {
        padding: 1.5rem;
    }
    
    .premium-modal-actions {
        flex-direction: column;
    }
}
/* ========================================
   NOVA PÁGINA DE UPGRADE PREMIUM
   ======================================== */

/* Hero Premium */
.premium-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.premium-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.premium-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.premium-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.premium-hero-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-price {
    font-size: 3rem;
    font-weight: 800;
}

.hero-price small {
    font-size: 1.5rem;
    opacity: 0.8;
}

.hero-discount {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
}

.premium-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Showcase */
.premium-features-showcase {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-card-premium.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.03), white);
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card-premium p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Pricing Section Modern */
.pricing-section-modern {
    padding: 5rem 0;
    background: white;
}

.pricing-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card-modern.featured-plan {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card-modern.featured-plan:hover {
    transform: scale(1.08) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #ff9933);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8125rem;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-price-large {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 1.5rem 0;
}

.pricing-price-large .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

.pricing-price-large .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-price-large .cents {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--text-primary);
}

.pricing-price-large .period {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    margin-left: 0.25rem;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

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

.pricing-features-list li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.pricing-features-list li.included {
    color: var(--text-primary);
}

.pricing-features-list li.included::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-features-list li.not-included {
    color: var(--text-light);
    opacity: 0.5;
}

.pricing-features-list li.not-included::before {
    content: "✗";
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: var(--gray-50);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
}

.comparison-table th.plan-col {
    text-align: center;
}

.comparison-table th.premium-col {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 153, 51, 0.1));
    color: var(--primary-color);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

.comparison-table .category-header {
    background: var(--gray-800);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
}

.comparison-table .check {
    text-align: center;
    color: var(--success);
    font-weight: 600;
}

.comparison-table .check.premium {
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-table .cross {
    text-align: center;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

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

.testimonial-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* CTA Final */
.cta-final-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #ff9933);
    color: white;
}

.cta-final-content {
    text-align: center;
}

.cta-final-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-final-content > p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-final-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item strong {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-item span {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-note {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 1rem;
}

/* Responsive Premium Page */
@media (max-width: 768px) {
    .premium-hero h1 {
        font-size: 2.5rem;
    }
    
    .premium-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-price {
        font-size: 2rem;
    }
    
    .premium-hero-actions {
        flex-direction: column;
    }
    
    .premium-hero-actions .btn {
        width: 100%;
    }
    
    .features-grid-large {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards-modern {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-modern.featured-plan {
        transform: scale(1);
    }
    
    .pricing-card-modern.featured-plan:hover {
        transform: translateY(-8px);
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-final-content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   MELHORIAS VISUAIS PREMIUM
   Estilos modernos para calculadoras
   ======================================== */

/* Header Premium com gradiente e animação */
.ferramentas-header.premium-feature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0 2.5rem;
    border-radius: 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.ferramentas-header.premium-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.ferramentas-header.premium-feature .container {
    position: relative;
    z-index: 2;
}

.ferramentas-header.premium-feature h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ferramentas-header.premium-feature .subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    font-weight: 400;
}

.premium-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.95);
    color: #1a1a1a;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 1.5rem;
    animation: premiumBadgeFloat 3s ease-in-out infinite;
}

@keyframes premiumBadgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Calculator Section */
.calculadora-section {
    padding: 0 0 4rem 0;
}

/* Calculator Grid - Layout moderno */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Calculator Card - Formulário */
.calculator-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.calculator-card:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.calculator-card h2 {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Form Groups - Melhorados */
.calculator-card .form-group {
    margin-bottom: 1.75rem;
}

.calculator-card .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.calculator-card .form-group label strong {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.25rem;
}

.calculator-card .form-group .label-hint {
    font-size: 0.875rem;
    color: #7f8c8d;
    font-weight: 400;
    display: block;
}

.calculator-card .form-group input[type="text"],
.calculator-card .form-group input[type="number"],
.calculator-card .form-group select {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.calculator-card .form-group input[type="text"]:focus,
.calculator-card .form-group input[type="number"]:focus,
.calculator-card .form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.calculator-card .form-group input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    outline: none;
    -webkit-appearance: none;
}

.calculator-card .form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid #667eea;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.calculator-card .form-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid #667eea;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.calculator-card .range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #7f8c8d;
}

/* Botão Premium */
.btn-primary.btn-block {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary.btn-block:active {
    transform: translateY(0);
}

/* Results Card - Melhorado */
.results-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.results-card h2 {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.resultado-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: #95a5a6;
}

.resultado-placeholder .icon-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.resultado-placeholder p {
    font-size: 1.125rem;
    margin: 0;
}

/* Results Grid - Layout moderno */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.result-item.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.result-item.warning {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-color: rgba(231, 76, 60, 0.2);
}

.result-item.success {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
    border-color: rgba(39, 174, 96, 0.2);
}

.result-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.result-item.highlight .result-label {
    opacity: 0.95;
}

.result-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
}

.result-item.highlight .result-value {
    color: white;
}

.result-item.warning .result-value {
    color: #e74c3c;
}

.result-item.success .result-value {
    color: #27ae60;
}

/* Info Alerts */
.info-alert {
    background: linear-gradient(135deg, #e8f4fd 0%, #d9eef9 100%);
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.info-alert.warning {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-left-color: #f39c12;
}

.info-alert.success {
    background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%);
    border-left-color: #27ae60;
}

.info-alert h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.info-alert p {
    margin: 0;
    line-height: 1.6;
    color: #2c3e50;
}

/* Education Section - Melhorada */
.education-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 16px;
}

.education-section h2 {
    text-align: center;
    color: #667eea;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.education-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.education-card h3 {
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.education-card p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.education-card .highlight-text {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #f39c12;
    margin-top: 1rem;
}

.education-card .highlight-text strong {
    color: #d68910;
}

.statistics-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.statistics-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.statistics-list li::before {
    content: '📊';
    position: absolute;
    left: 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tips-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 900;
    font-size: 1.25rem;
}

/* Chart Container */
.chart-container-financiamento,
.chart-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

/* Comparison Systems */
.comparacao-sistemas {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 12px;
}

.comparacao-sistemas h4 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comparacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.sistema-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    text-align: center;
}

.sistema-card strong {
    display: block;
    color: #667eea;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.sistema-card p {
    color: #7f8c8d;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.valor-sistema {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 1rem;
}

.valor-sistema.destaque {
    color: #27ae60;
}

.economia-info {
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 1rem;
}

/* Examples Section */
.examples-section {
    margin-top: 2rem;
}

.examples-section h3 {
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.example-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.example-box h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.example-result {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.example-result p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.value-highlight {
    color: #667eea;
    font-weight: 700;
}

.value-danger {
    color: #e74c3c;
    font-weight: 700;
}

.value-warning {
    color: #f39c12;
    font-weight: 700;
}

.example-note {
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Allocation Values */
.allocation-value {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #667eea;
}

.allocation-total {
    background: linear-gradient(135deg, #e8f4fd 0%, #d9eef9 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
}

.allocation-total strong {
    color: #2c3e50;
}

.allocation-total span {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 968px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .comparacao-grid {
        grid-template-columns: 1fr;
    }
    
    .ferramentas-header.premium-feature h1 {
        font-size: 2rem;
    }
}

/* ========================================
   ORGANIZAÇÃO ANUAL - PREMIUM
   ======================================== */

/* Seletor de Ano */
.year-selector-section {
    margin: 2rem 0;
}

.year-selector-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 0 auto;
}

.year-selector-card label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.year-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.year-select:hover {
    border-color: #667eea;
}

.year-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Resumo Anual */
.annual-summary {
    margin: 2rem 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.summary-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

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

.summary-card.income {
    border-left-color: #10b981;
}

.summary-card.expense {
    border-left-color: #ef4444;
}

.summary-card.investment {
    border-left-color: #667eea;
}

.summary-card.balance {
    border-left-color: #10b981;
}

.summary-card.goals {
    border-left-color: #f59e0b;
}

.summary-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    flex-shrink: 0;
}

.summary-content {
    flex: 1;
}

.summary-content h3 {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1;
}

.summary-value.positive {
    color: #10b981;
}

.summary-value.negative {
    color: #ef4444;
}

.summary-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
    display: block;
}

/* Gráficos Mensais Detalhados */
.monthly-charts-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin: 0 0 2rem 0;
}

.monthly-charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.monthly-chart-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.monthly-chart-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.monthly-chart-card .chart-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.monthly-chart-card .chart-header h3 {
    font-size: 1.125rem;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.monthly-chart-card .chart-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.monthly-chart-container {
    position: relative;
    height: 280px;
}

/* Seção de Gráficos */
.charts-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.chart-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.chart-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.chart-card.full-width {
    grid-column: 1 / -1;
}

.chart-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.chart-header h2 {
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.chart-container {
    position: relative;
    height: 300px;
}

.chart-card.full-width .chart-container {
    height: 350px;
}

/* Seção Educacional */
.education-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.education-section h2 {
    font-size: 1.75rem;
    margin: 0 0 2rem 0;
    text-align: center;
    font-weight: 700;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.education-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.education-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.education-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.education-card h3 {
    font-size: 1.125rem;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.education-card p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

/* Responsividade - Organização Anual */
@media (max-width: 968px) {
    .monthly-charts-grid {
        grid-template-columns: 1fr;
    }
    
    .charts-section {
        grid-template-columns: 1fr;
    }
    
    .chart-card.full-width {
        grid-column: 1;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .summary-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .summary-value {
        font-size: 1.5rem;
    }
    
    .monthly-charts-section {
        padding: 1.5rem;
    }
    
    .monthly-chart-container {
        height: 240px;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .education-section {
        padding: 1.5rem;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
}
