/* RESET BÁSICO */
* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background: radial-gradient(circle at top, #0f2c3d, #020b12);
    color: #fff;
}

/* TOPO */
.topo {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 25px 15px; */
    padding-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 12px;
}

.logo {
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    color: #7cc4ff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.portal-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.subtitle {
    opacity: 0.85;
    margin-bottom: 25px;
}

/* COMO FUNCIONA */
.how-box {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 25px;
    max-width: 700px;
    margin: 0 auto 20px;
}

.how-title {
    color: #6fb6ff;
    margin-bottom: 15px;
}

.how-box ol {
    text-align: left;
    line-height: 1.6;
}

/* PLANOS */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.plan {
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 22px;
}

.plan h3 {
    font-size: 20px;
}

.price {
    color: #4da3ff;
    font-size: 24px;
    margin: 10px 0 15px;
}

/* BOTÕES */
.btn-buy,
.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #357bd8);
    border: none;
    color: #fff;
    padding: 12px 26px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.btn-buy:hover,
.btn-primary:hover {
    filter: brightness(1.08);
}

/* PIX */
.vip {
    margin-top: 40px;
}

#pix-qrcode {
    display: block;
}

#pix-copia-cola {
    max-width: 500px;
    display: flex;
    height: 65px;
    /* align-items: center; */
    /* justify-content: center; */
    overflow: hidden;
    text-align: center;
    margin: 10px auto;
    padding: 10px;
    border-radius: 12px;
    border: none;
    resize: none;
    word-break: break-all;
    font-size: 13px;
}

/* BOTÕES PIX */
.pix-botoes {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* CÓDIGO CONVIDADO */
.vip input {
    width: 280px;
    max-width: 58%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    margin-right: 10px;
    font-size: 17px;
    margin-top: 10px;
}

.vip button {
    height: 44px;
}

/* FOOTER */
.footer {
    text-align: center;
    margin: 10px 10px 20px;
    font-size: 14px;
    opacity: 0.85;
}

.footer a {
    color: #7cc4ff;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 480px) {

    .portal-title {
        font-size: 26px;
    }

    .social-links {
        flex-direction: row;
        gap: 14px;
    }

    .plans {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    #pix-copia-cola {
        /* box-sizing:border-box; */
        min-height: 85px;
    }
    
    .pix-botoes {
        flex-direction: column;
    }

    .btn-primary,
    .btn-buy {
        font-size: 17px;
    }

    .vip input {
        width: 60%;
        margin: 0 0 10px 0;
        margin-top: 15px;
    }

    .vip button {
        margin-left: 8px;
    }
}
