* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #f9fafc 0%, #f1f5f9 100%);
    color: #0f172a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* header */
.header {
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid #e2e8f0;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(180deg, #FFD54F, #FFC107);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}
.logo span {
    background: none;
    color: #FFC107;
}
.badge-header {
    background: #fef3c7;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b45309;
}

/* hero section dupla */
.hero {
    padding: 64px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-left p {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 32px;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: #FFC107;
    color: white;
    box-shadow: 0 8px 18px rgba(249,115,22,0.3);
}
.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(249,115,22,0.4);
}
.btn-secondary {
    background: #1e293b;
    color: white;
}
.btn-secondary:hover {
    background: #0f172a;
    transform: translateY(-3px);
}
.btn-outline {
    background: white;
    border: 2px solid #e2e8f0;
    color: #1e293b;
}
.btn-outline:hover {
    border-color: #FFC107;
    background: #fff7ed;
}

.hero-right {
    background: linear-gradient(145deg, #ffffff, #fef7e6);
    border-radius: 48px;
    padding: 32px 28px;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.15);
    text-align: center;
    border: 1px solid rgba(249,115,22,0.2);
}

.price-badge {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFC107;
}
.price-badge small {
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
}
.app-stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
}
.store-btn {
    background: #0f172a;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.store-btn i {
    font-size: 1.6rem;
}
.store-btn:hover {
    background: #FFC107;
    transform: scale(1.02);
}

/* seção para empresários */
.business-section {
    background: #0f172a;
    color: white;
    border-radius: 56px;
    margin: 48px 0;
    padding: 56px 40px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
}
.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.business-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.business-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}
.benefits-list {
    list-style: none;
    margin: 24px 0;
}
.benefits-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.benefits-list i {
    color: #FFC107;
    font-size: 1.3rem;
}
.price-business {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin: 20px 0;
}
.btn-business {
    background: #fbbf24;
    color: #0f172a;
    padding: 16px 32px;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(251,191,36,0.3);
}
.btn-business:hover {
    background: #f59e0b;
    transform: translateY(-3px);
}

/* seção consumidor app */
.consumer-section {
    background: white;
    border-radius: 48px;
    padding: 56px 40px;
    margin: 48px 0;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}
.consumer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.consumer-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.discount-highlight {
    background: #cebfbf86;
    padding: 16px;
    border-radius: 28px;
    display: inline-block;
    margin: 20px 0;
}
.discount-highlight span {
    font-size: 2rem;
    font-weight: 800;
    color: #FFC107;
}
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}
.mockup-icon {
    text-align: center;
    background: #f8fafc;
    border-radius: 48px;
    padding: 30px;
}
.mockup-icon i {
    font-size: 6rem;
    color: #FFC107;
}

video{
    height: 300px;
}

/* depoimentos */
.testimonials {
    margin: 64px 0;
}
.testimonials h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 48px;
}
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.card {
    background: white;
    border-radius: 32px;
    padding: 28px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 12px 25px -10px rgba(0,0,0,0.05);
    border: 1px solid #eef2ff;
}
.stars {
    color: #fbbf24;
    margin-bottom: 16px;
}
.card p {
    font-style: italic;
    margin-bottom: 20px;
}
.card h4 {
    font-weight: 700;
}

/* CTA final */
.final-cta {
    background: linear-gradient(180deg, #FFD54F, #FFC107);
    border-radius: 48px;
    padding: 56px 32px;
    text-align: center;
    color: white;
    margin: 48px 0 64px;
}
.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.dual-buttons {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.btn-white {
    background: white;
    color: #FFC107;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 800;
}
.btn-white:hover {
    background: #fff3e6;
    transform: scale(1.02);
}
.btn-dark {
    background: #0f172a;
    color: white;
}

footer {
    text-align: center;
    padding: 17px 0;
    border-top: 1px solid #e2e8f0;
    color: #475569;
}

@media (max-width: 900px) {
    .hero-grid, .business-grid, .consumer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-left h1 {
        font-size: 2.3rem;
    }
    .container {
        padding: 0 20px;
    }
    .business-section, .consumer-section {
        padding: 32px 24px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: white;
    max-width: 400px;
    width: 90%;
    border-radius: 48px;
    padding: 32px;
    text-align: center;
    animation: fadeUp 0.3s ease;
}
.modal-content i {
    font-size: 3rem;
    color: #FFC107;
    margin-bottom: 16px;
}
.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.close-modal {
    background: #f1f5f9;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    margin-top: 24px;
    cursor: pointer;
    font-weight: 600;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}