/* ------------------------------------------------------------
   FUNDO GERAL — VERDE CLARO
------------------------------------------------------------ */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #1fa84d, #6effa3);
    color: #fff;
}

/* ------------------------------------------------------------
   BOTÕES
------------------------------------------------------------ */

/* BOTÃO COMPRAR – VERDE ESCURO */
.btn-primary {
    background: linear-gradient(90deg, #007a3d, #00a651);
    padding: 12px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.85;
}

/* BOTÃO AVISO – VERMELHO */
.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;
}

/* BOTÃO PAYPAL – VERMELHO */
.btn-paypal {
    background: #d11;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.btn-paypal:hover {
    background: #b00;
}

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.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;
}

.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: #ffdddd;
}

.new-price {
    color: #c8ffdd;
}

.parcel {
    opacity: .9;
}

/* ------------------------------------------------------------
   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;
}

/* TITULOS QUE ERAM AMARELOS → AGORA PRETOS */
.advertencia {
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}

/* ------------------------------------------------------------
   CARDS — MAIS ESCUROS
------------------------------------------------------------ */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: rgba(0, 0, 0, 0.22);
    padding: 20px;
    border-radius: 14px;
    flex: 1;
    min-width: 260px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* ------------------------------------------------------------
   LISTAS
------------------------------------------------------------ */
.list {
    list-style: none;
    padding: 0;
    line-height: 1.7;
}

.list li::before {
    content: "• ";
    color: #004d26; /* verde bem escuro para combinar */
}

/* ------------------------------------------------------------
   SEÇÃO DE VÍDEO — CORRIGIDA
------------------------------------------------------------ */
.video-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* TÍTULOS DO VÍDEO — PRETOS */
.video-title h3 {
    color: #000;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.video-title h2 {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.video-title p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* VÍDEO COM TAMANHO CONTROLADO */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    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;
}

/* ------------------------------------------------------------
   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;
}

/* ------------------------------------------------------------
   RODAPÉ
------------------------------------------------------------ */
.footer {
    text-align: center;
    padding: 30px;
    opacity: 0.8;
    font-size: 0.9rem;
}
* LISTAS MAIORES – Projetos */
.list li {
    font-size: 1.19rem; /* maior */
    margin-bottom: 6px;
    color: rgba(255,255,255,0.95);
}

/* LISTAS MAIORES – Direitos Autorais */
.legal ul li {
    font-size: 1.17rem;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.95);
}

/* Parágrafos das seções */
.section p,
.legal p,
.cta-final p {
    font-size: 1.17rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}
/* CARD DE ENTREGA */
.entrega-card {
    background: rgba(0, 0, 0, 0.22); /* mesmo fundo dos outros cards */
    padding: 30px;
    border-radius: 14px;
    max-width: 500px;
    margin: 0 auto; /* CENTRALIZA */
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* Texto do título dentro do card */
.entrega-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Lista interna do card */
.entrega-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.entrega-card ul li {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.95);
}
/* ========= 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);
}