* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ============================================
   LOGO COM DESTAQUE (ATUALIZADO)
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.25));
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.logo-highlight {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.4));
}

.logo:hover .logo-highlight {
    background: linear-gradient(135deg, #1d4ed8, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #334155;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-outline {
    border: 1px solid #cbd5e1;
    color: #334155;
    background: transparent;
}

.btn-outline:hover {
    background-color: #f1f5f9;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible,
.logo:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 3px;
}

.btn-lg {
    padding: 0.8rem 1.8rem;
    font-size: 1.05rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 4rem 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.features h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* ============================================
   REPORTS SHOWCASE
   ============================================ */
.reports-showcase {
    padding: 4rem 1.5rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.container-showcase {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.showcase-text {
    flex: 1;
    min-width: 300px;
}

.badge-feature {
    background-color: #d1fae5;
    color: #065f46;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.showcase-text h2 {
    font-size: 2rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-text p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.showcase-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #334155;
    font-size: 0.98rem;
}

.showcase-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ============================================
   PHONE MOCKUP (CORRIGIDO)
   ============================================ */
.showcase-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border: 8px solid #0f172a;
    border-radius: 36px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0 5px;
}

/* ============================================
   PERFORMANCE SHOWCASE
   ============================================ */
.performance-showcase {
    background-color: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

.performance-showcase .container-showcase {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.performance-showcase .phone-mockup img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.performance-badge {
    background: #e8f5e9;
    color: #2e7d32;
}

.performance-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.performance-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.performance-list li::before {
    content: none;
}

.performance-list li>span {
    position: absolute;
    left: 0;
    color: #2e7d32;
}

/* ============================================
   CTA BOTTOM & FOOTER
   ============================================ */
.cta-bottom {
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-bottom h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-bottom p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablets e telas médias */
@media (max-width: 992px) {
    .container-showcase {
        gap: 2rem;
    }

    .showcase-text h2 {
        font-size: 1.8rem;
    }
}

/* Celulares */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* Logo responsiva */
    .logo-img {
        height: 36px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }

    /* Features */
    .features {
        padding: 2.5rem 1rem;
    }

    .features h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Reports Showcase */
    .reports-showcase {
        padding: 2.5rem 1rem;
    }

    .container-showcase {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }

    .showcase-text {
        min-width: unset;
        width: 100%;
    }

    .showcase-text h2 {
        font-size: 1.5rem;
    }

    .showcase-text p {
        font-size: 0.95rem;
    }

    .showcase-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 1.5rem auto;
    }

    .showcase-list li {
        font-size: 0.9rem;
    }

    .showcase-image {
        min-width: unset;
        width: 100%;
        padding: 0 10px;
    }

    .phone-mockup {
        max-width: 280px;
        border-width: 5px;
        border-radius: 28px;
        padding: 8px 0;
    }

    .phone-mockup img {
        border-radius: 0;
    }

    /* Performance Showcase */
    .performance-showcase {
        padding: 2.5rem 1rem !important;
    }

    .performance-showcase .container-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* CTA */
    .cta-bottom {
        padding: 2.5rem 1rem;
    }

    .cta-bottom h2 {
        font-size: 1.5rem;
    }

    .cta-bottom p {
        font-size: 0.95rem;
    }

    /* Botões */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
    }

    .logo-img {
        height: 28px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .showcase-text h2 {
        font-size: 1.3rem;
    }

    .phone-mockup {
        max-width: 220px;
        border-width: 4px;
        border-radius: 20px;
        padding: 5px 0;
    }

    .phone-mockup img {
        padding: 0 3px;
    }

    .features h2,
    .cta-bottom h2 {
        font-size: 1.3rem;
    }

    .card {
        padding: 1.2rem;
    }
}

/* Telas grandes */
@media (min-width: 1400px) {
    .container-showcase {
        gap: 4rem;
    }

    .phone-mockup {
        max-width: 400px;
    }

    .logo-img {
        height: 56px;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}