/* ===== WikiAgenda Landing Page — Estilos ===== */

/* Tipografia */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #042b8c 100%);
    min-height: 520px;
}

.hero-mockup {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Counters */
.stats-counter {
    font-size: 2rem;
    line-height: 1.2;
}

/* Step numbers */
.step-number {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Cards de features */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* Depoimentos */
.testimonial-card {
    border-left: 4px solid #0d6efd;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Responsividade para o Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: unset;
        padding: 3rem 0;
    }

    .display-4 {
        font-size: 2rem;
    }
}

/* Botões CTA */
.btn-warning {
    color: #000;
}

/* Accordion customizado */
.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: #f0f6ff;
}

/* Seção de números */
#numeros {
    background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
}

/* Imagens de features */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f0f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo nav */
.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

/* Footer links */
footer a:hover {
    color: #fff !important;
    transition: color 0.2s;
}

/* Lazy loading outline placeholder */
img[loading="lazy"] {
    background: #f0f6ff;
}
