/* indexStyle.css — Landing page do Marlei */

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 5% 90px;
    text-align: center;
}

/* Blobs de fundo decorativos */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.hero-orb-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -160px; left: -120px;
}
.hero-orb-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: -80px; right: -100px;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    bottom: -60px; left: 50%;
    transform: translateX(-50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeUp 0.7s ease both;
}

/* Badge/pill */
.hero-badge {
    display: inline-block;
    background: rgba(241,90,34,0.1);
    color: var(--primary);
    border: 1px solid rgba(241,90,34,0.25);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0 auto 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    margin-bottom: 48px;
}

/* Stats row */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 32px;
    box-shadow: var(--shadow);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.hero-stat strong {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat span {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ══════════════════════════════════════════
   BOTÃO CTA
══════════════════════════════════════════ */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    padding: 15px 38px;
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(241,90,34,0.28);
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(241,90,34,0.38);
}
.btn-cta:active { transform: scale(0.97); }

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}
.btn-cta-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 28px rgba(241,90,34,0.3);
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
    padding: 80px 5%;
    background: var(--bg);
}

.features-container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--text);
}
.section-header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.65;
}

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: fadeUp 0.6s ease both;
}
.feature-card:nth-child(2) { animation-delay: 0.08s; }
.feature-card:nth-child(3) { animation-delay: 0.16s; }
.feature-card:nth-child(4) { animation-delay: 0.24s; }
.feature-card:nth-child(5) { animation-delay: 0.32s; }
.feature-card:nth-child(6) { animation-delay: 0.40s; }

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(91,45,142,0.12);
    border-color: transparent;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ic-bg);
    color: var(--ic);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
}

.cta-container {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}

.cta-section p {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    padding: 32px 5%;
    background: var(--card);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-logo {
    height: 28px;
    width: auto;
    opacity: 0.7;
}

body.dark .footer-logo {
    filter: invert(1);
}

.footer p {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0;
}

/* ══════════════════════════════════════════
   ANIMAÇÃO
══════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════ */
@media (max-width: 640px) {
    .hero { padding: 72px 5% 60px; }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 18px 24px;
    }
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    .features { padding: 60px 5%; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 60px 5%; }
}
