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

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.4;
}

.capcut-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 40px auto;
    display: block;
}

.offer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price-block {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 25px 20px;
    margin: 40px auto;
    max-width: 300px;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fbbf24;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
}

.price-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.old-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #000;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
}

.btn-accept {
    background-color: #16a34a;
    color: white;
}

.btn-accept:hover {
    background-color: #15803d;
}

.btn-decline {
    background-color: #4b5563;
    color: white;
}

.btn-decline:hover {
    background-color: #374151;
}

.scarcity-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #dc2626;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .offer-title {
        font-size: 1.6rem;
    }
    
    .benefits-list {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
    }
    
    .price-block {
        max-width: 100%;
        margin: 30px auto;
    }
    
    .new-price {
        font-size: 1.6rem;
    }
    
    .capcut-image {
        width: 250px;
        height: 250px;
        margin: 0 auto 30px auto;
    }
    
    .btn {
        max-width: 100%;
        font-size: 0.95rem;
        padding: 14px 20px;
    }
    
    .scarcity-text {
        font-size: 0.85rem;
        margin-top: 15px;
        padding: 0 10px;
    }
}