/* -------------------------------------------------------------------
   ESTILOS GERAIS
------------------------------------------------------------------- */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #220035, #4a0f70);
    color: #fff;
}

/* -------------------------------------------------------------------
   BOTÕES GERAIS
------------------------------------------------------------------- */
.btn-primary {
    background: linear-gradient(90deg, #a64bff, #ff55c5);
    padding: 12px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-aviso {
    background: #d61818;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.btn-aviso:hover {
    background: #b01212;
}

.btn-paypal {
    background: #d11;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.btn-paypal:hover {
    background: #b00;
}

/* -------------------------------------------------------------------
   HERO — CARD CENTRALIZADO (NOVO)
------------------------------------------------------------------- */
.hero {
    padding: 30px 0;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-box {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
}

.hero-left {
    flex: 1;
}

.hero-right img {
    width: 260px;
    border-radius: 14px;
    display: block;
}

.subtitle {
    margin: 10px 0 20px;
    line-height: 1.5;
    max-width: 500px;
}

/* Preços */
.price-box {
    margin: 18px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #ff8888;
    margin-right: 8px;
}

.new-price {
    color: #00ff99;
    margin-right: 8px;
}

.parcel {
    color: #fff;
    opacity: .9;
}

.btn-group {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

/* HERO RESPONSIVO */
@media (max-width: 900px) {
    .hero-box {
        flex-direction: column;
        text-align: center;
    }

    .hero-right img {
        margin-top: 20px;
    }
}

/* -------------------------------------------------------------------
   SEÇÕES E TÍTULOS
------------------------------------------------------------------- */
.section {
    padding: 30px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.advertencia {
    color: #ffdd55;
    text-align: center;
    margin-bottom: 40px;
}

/* -------------------------------------------------------------------
   CARDS
------------------------------------------------------------------- */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 14px;
    flex: 1;
    min-width: 260px;
    text-align: center;
}

/* -------------------------------------------------------------------
   LISTAS
------------------------------------------------------------------- */
.list {
    list-style: none;
    padding: 0;
    line-height: 1.7;
}

.list li::before {
    content: "• ";
    color: #ff55c5;
}

/* -------------------------------------------------------------------
   LEGAL / DIREITOS AUTORAIS
------------------------------------------------------------------- */
.legal {
    background: rgba(0, 0, 0, 0.25);
    padding: 30px;
    border-radius: 12px;
    line-height: 1.6;
}

/* -------------------------------------------------------------------
   CTA FINAL
------------------------------------------------------------------- */
.cta-final {
    text-align: center;
    padding: 30px 20px;
}

.cta-final .large {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.3rem;
    padding: 16px 28px;
}

/* -------------------------------------------------------------------
   FOOTER
------------------------------------------------------------------- */
.footer {
    text-align: center;
    padding: 30px;
    opacity: 0.7;
    font-size: 0.9rem;
}
/* ------------------------------------------------------------
   APRESENTAÇÃO DO VÍDEO
------------------------------------------------------------ */
.video-section {
    padding: 40px 20px 20px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-title h3 {
    color: #ffdd55;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.video-title h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.video-title p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.85;
    line-height: 1.6;
}

/* Caixinha responsiva do vídeo (16:9) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* ========= CENTRALIZAR LISTA DE PROJETOS ========= */
.lista-projetos {
    max-width: 650px;           /* largura parecida com a imagem que você quer */
    margin: 0 auto;             /* CENTRALIZA */
    background: rgba(0, 0, 0, 0.22);
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}