/*
Theme Name: Conta6 Central
Description: Tema central conta6.com.br
Version: 1.0.0
*/

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1e293b; line-height: 1.6; }
a { color: #16a34a; text-decoration: none; }
a:hover { color: #15803d; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.logo { font-size: 24px; font-weight: 800; color: #16a34a; }
.logo span { color: #1e293b; }
.nav-menu { display: flex; gap: 28px; list-style: none; }
.nav-menu a { color: #475569; font-weight: 500; }
.nav-menu a:hover { color: #16a34a; }
.btn, .btn-primary, .btn-outline {
    display: inline-block; padding: 12px 24px; border-radius: 8px;
    font-weight: 600; transition: .2s; text-decoration: none;
}
.btn-primary { background: #16a34a; color: #fff !important; }
.btn-primary:hover { background: #15803d; }
.btn-outline { background: #fff; color: #16a34a !important; border: 2px solid #16a34a; }
.btn-outline:hover { background: #16a34a; color: #fff !important; }

/* Hero */
.hero { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); padding: 80px 0 100px; text-align: center; }
.hero h1 { font-size: 56px; font-weight: 800; color: #0f172a; margin-bottom: 24px; line-height: 1.1; }
.hero h1 .highlight { color: #16a34a; }
.hero .lead { font-size: 22px; color: #475569; max-width: 720px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.hero-trust { color: #64748b; font-size: 14px; }

/* Features */
.features { padding: 80px 0; background: #fff; }
.section-title { text-align: center; font-size: 40px; font-weight: 800; margin-bottom: 16px; color: #0f172a; }
.section-sub { text-align: center; color: #64748b; font-size: 18px; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.feature { padding: 32px; background: #f8fafc; border-radius: 16px; transition: .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature h3 { font-size: 20px; margin-bottom: 12px; color: #0f172a; }
.feature p { color: #64748b; font-size: 15px; }

/* Pricing */
.pricing { padding: 80px 0; background: #f0fdf4; }
.conta6-planos { display: flex; justify-content: center; }
.conta6-plan {
    background: #fff; padding: 48px; border-radius: 20px; max-width: 480px; width: 100%;
    box-shadow: 0 20px 50px rgba(22,163,74,.12); text-align: center;
    border: 3px solid #16a34a;
}
.conta6-plan h3 { font-size: 28px; color: #16a34a; margin-bottom: 16px; }
.conta6-price { font-size: 48px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.conta6-price small { font-size: 16px; color: #64748b; font-weight: 400; }
.conta6-plan ul { list-style: none; text-align: left; margin: 32px 0; }
.conta6-plan ul li { padding: 8px 0; color: #334155; font-size: 16px; }

/* CTA */
.cta-band { background: #16a34a; color: #fff; padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.cta-band p { font-size: 20px; margin-bottom: 32px; opacity: .95; }
.cta-band .btn-primary { background: #fff; color: #16a34a !important; }
.cta-band .btn-primary:hover { background: #f0fdf4; }

/* Footer */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #94a3b8; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 30px; text-align: center; font-size: 13px; color: #64748b; }

/* Aguarde */
.conta6-aguarde { max-width: 600px; margin: 80px auto; padding: 40px; text-align: center; background: #fff; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,.06); }
.conta6-aguarde h2 { color: #16a34a; margin-bottom: 16px; }
.conta6-spinner {
    width: 48px; height: 48px; margin: 32px auto;
    border: 4px solid #e2e8f0; border-top-color: #16a34a; border-radius: 50%;
    animation: conta6-spin 1s linear infinite;
}
@keyframes conta6-spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .hero .lead { font-size: 18px; }
    .section-title { font-size: 28px; }
    .nav-menu { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
