/* --- Strategy Section --- */
.strategy-section { background-color: #ffffff; color: #1a1d24; padding: 100px 0; }
.strategy-header { text-align: center; max-width: 800px; margin: 0 auto 80px auto; }
.centralizar { text-align: center; width: 100%; }
.section-title .text-faded { color: #b0b0b0; }
.section-description { font-size: 1.1rem; color: #666; line-height: 1.6; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px; }
.feature-card { text-align: center; padding: 20px; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); }
.icon-box {
    width: 60px; height: 60px; background-color: #f8f9fa; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto;
    color: #000; border: 1px solid #eee;
}
.icon-box svg { width: 24px; height: 24px; stroke: #000; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #000; }
.feature-card p { font-size: 0.95rem; color: #666; line-height: 1.5; }
.section-divider { width: 60px; height: 4px; background-color: #000; margin: 0 auto; border-radius: 2px; }

/* --- Solution Section --- */
.solution-section { background-color: #fafafa; padding: 100px 0; }
.solution-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.solution-text { padding-right: 20px; }
.solution-title { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 30px; color: #000; }
.solution-title .highlight { color: var(--primary-yellow); }
.solution-description p { margin-bottom: 20px; font-size: 1.05rem; color: #666; line-height: 1.7; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.sol-card {
    background-color: #ffffff; padding: 30px; border: 1px solid #eeeeee; border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sol-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.sol-icon-box {
    width: 50px; height: 50px; background-color: #1a1d24; display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px; border-radius: 4px;
}
.sol-icon-box svg { width: 24px; height: 24px; stroke: var(--primary-yellow); }
.sol-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: #000; }
.sol-card p { font-size: 0.9rem; color: #888; line-height: 1.5; }

/* --- Premium Section --- */
.premium-section { background-color: #121212; color: #fff; padding: 100px 0; }
.premium-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.premium-tag {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700;
    color: var(--primary-yellow); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.premium-title { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.premium-title .highlight { color: var(--primary-yellow); }
.premium-description { font-size: 1.05rem; color: #b0b0b0; line-height: 1.6; margin-bottom: 40px; max-width: 500px; }

.price-box {
    background-color: rgba(255, 255, 255, 0.05); padding: 20px 30px; border-radius: 4px;
    margin-bottom: 30px; border: 1px solid rgba(255, 255, 255, 0.1); max-width: 400px;
}
.price-label { display: block; font-size: 0.9rem; color: #888; margin-bottom: 5px; }
.price-value { font-size: 2.5rem; font-weight: 800; color: #fff; }
.price-value .cents { font-size: 1.5rem; font-weight: 600; color: #ccc; }

.premium-features { background-color: #1a1d24; padding: 40px; border-radius: 8px; border: 1px solid #333; }
.features-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 25px; color: #fff; }
.check-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 0.95rem; color: #ddd; }
.check-icon {
    display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px;
    background-color: var(--primary-yellow); color: #000; font-size: 12px; font-weight: bold; border-radius: 3px; flex-shrink: 0;
}

/* --- Extensions --- */
.extensions-section { background-color: #ffffff; padding: 100px 0; }
.extensions-header { text-align: center; margin-bottom: 60px; }
.extensions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.ext-card {
    background-color: #fff; border: 1px solid #eee; padding: 40px; border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column;
}
.ext-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.08); transform: translateY(-5px); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
.icon-square { width: 50px; height: 50px; background-color: #f8f8f8; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.icon-square svg { width: 24px; height: 24px; stroke: #000; }
.arrow-icon { width: 30px; height: 30px; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; color: #999; font-size: 1.2rem; border-radius: 4px; }
.ext-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; color: #000; }
.card-desc { font-size: 1rem; color: #666; line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }
.tags-container { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background-color: #f5f5f5; color: #555; padding: 8px 16px; font-size: 0.85rem; border-radius: 4px; font-weight: 500; }

/* --- Process Timeline --- */
.process-section { background-color: #ffffff; padding: 100px 0; }
.process-header { text-align: center; margin-bottom: 80px; }
.centered-desc { max-width: 700px; margin: 0 auto; color: #666; font-size: 1.1rem; }
.process-timeline { display: flex; justify-content: space-between; position: relative; padding-top: 20px; }
.timeline-line { position: absolute; top: 60px; left: 0; width: 100%; height: 1px; background-color: #e0e0e0; z-index: 0; }
.step-item { position: relative; z-index: 1; width: 18%; background-color: transparent; }
.step-box {
    width: 80px; height: 80px; background-color: #fff; border: 1px solid #eeeeee;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700;
    color: #000; margin-bottom: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.step-item h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: #000; }
.step-item p { font-size: 0.9rem; color: #777; line-height: 1.6; }

/* --- Results --- */
.results-section { background-color: #ffffff; padding: 100px 0; }
.results-header { text-align: center; margin-bottom: 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 80px; }
.stat-card {
    text-align: center; padding: 30px; border: 1px solid #f0f0f0; border-radius: 4px; transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px); border-color: #eee; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.stat-number { display: block; font-size: 3rem; font-weight: 800; color: #000; margin-bottom: 10px; }
.stat-label { font-size: 0.8rem; color: #999; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.testi-card { background-color: #fcfcfc; padding: 50px; border-radius: 8px; border: 1px solid #f5f5f5; }
.quote-icon { color: var(--primary-yellow); margin-bottom: 25px; }
.testi-text { font-size: 1.15rem; font-style: italic; color: #555; line-height: 1.6; margin-bottom: 30px; }
.testi-author strong { display: block; font-size: 1rem; color: #000; margin-bottom: 3px; }
.testi-author span { font-size: 0.9rem; color: #888; }

/* Responsividade */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 900px) {
    .solution-container, .premium-container, .extensions-grid { grid-template-columns: 1fr; gap: 50px; }
    .solution-text { padding-right: 0; text-align: center; max-width: 600px; margin: 0 auto; }
    .solution-title { font-size: 2.2rem; }
    .process-timeline { flex-direction: column; gap: 40px; }
    .step-item { width: 100%; display: flex; gap: 20px; align-items: flex-start; }
    .timeline-line { width: 1px; height: 100%; left: 40px; top: 0; }
    .step-box { flex-shrink: 0; margin-bottom: 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .features-grid, .solution-grid, .stats-grid { grid-template-columns: 1fr; }
    .section-title, .premium-title { font-size: 2rem; }
}