body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #f1f5f9;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.button {
    display: inline-block;
    margin: 1rem 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.button:hover {
    background: #2563eb;
}

.logo {
    width: 200px;
    margin: 1rem auto 0.5rem;
}

.planos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 2rem;
}

.plano {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: white;
    position: relative;
    border: 2px solid #334155;
    transition: transform 0.3s;
}

.plano:hover {
    transform: scale(1.03);
}

.plano.vitalicio-destaque {
    border: 2px solid #22c55e;
    background: linear-gradient(160deg, #14532d 0%, #1e3a8a 100%);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.plano h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: #334155;
    padding: 0.5rem;
    border-radius: 8px;
    color: #38bdf8;
}

.hot-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.8rem;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px #ef4444;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.75;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.plano ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.plano ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #334155;
    line-height: 1.4;
}

.preco {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.3rem;
    color: #38bdf8;
}

.bonus {
    background: #f97316;
    color: #fff;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    display: inline-block;
    margin: 1rem 0 0.5rem;
    border-radius: 5px;
}

.vitalicio {
    background: #22c55e;
    color: #fff;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

/* Tornar imagens responsivas */
.step img,
.qr-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5rem auto;
}

.qr-section {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #0f172a;
    color: white;
}

.qr-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.qr-item {
    background: #1e293b;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 220px;
}

.qr-item button {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    background: #38bdf8;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.qr-item button:hover {
    background: #0ea5e9;
}

footer {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem 0;
    color: #fff;
}