/* Configuração Geral e Fundo Gradiente Travado */
body {
    background: linear-gradient(135deg, #2c2c3b 0%, #22222e 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

/* Container Principal */
.container-premium {
    width: 100%;
    max-width: 700px;
    margin: 120px auto 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Topo e Detalhes Laranja */
.header-pagina {
    text-align: center;
    margin-bottom: 40px;
}

.header-pagina h1 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    margin-top: 80px;
    color: #ffffff !important;
}

.header-pagina h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0;
}

.detalhe-laranja {
    color: #C67A4B !important;
}

/* Textos e Destaque UX */
.conteudo-principal p {
    font-size: 18px;
    color: #d1d1e0;
    margin-bottom: 16px;
}

.conteudo-principal .texto-destaque {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    border-left: 3px solid #C67A4B;
    padding-left: 15px;
    margin-bottom: 35px;
}

/* Blocos de Informação */
.valores-container {
    margin-top: 30px;
}

.valor-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* Alerta para os Avisos Importantes */
.aviso-exclusao {
    background-color: rgba(198, 122, 75, 0.02);
    border: 1px solid rgba(198, 122, 75, 0.15);
}

.valor-box h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 18px;
    color: #ffffff !important;
}

.valor-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d1e0;
    margin-bottom: 12px;
}

/* Listas internas customizadas */
.lista-envio {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.lista-envio li {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d1e0;
    margin-bottom: 14px;
    position: relative;
    padding-left: 15px;
}

.lista-envio li::before {
    content: "•";
    color: #C67A4B;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.lista-envio li:last-child {
    margin-bottom: 0;
}

.lista-envio li strong {
    color: #ffffff;
}

/* --- BOTÃO DE VOLTAR ESTÁTICO NO TOPO --- */
.btn-voltar {
    position: absolute;
    top: 20px;
    left: 30%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-voltar:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: #C67A4B;
    box-shadow: 0 4px 15px rgba(198, 122, 75, 0.2);
}

.btn-voltar .seta {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-voltar:hover .seta {
    transform: translateX(-4px);
}

/* --- BOTÃO DE AÇÃO PRINCIPAL --- */
.secao-cta {
    text-align: center;
    margin-top: 40px;
}

.secao-cta .btn-acao-principal {
    display: inline-block;
    background-color: #C67A4B !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(198, 122, 75, 0.3);
}

.secao-cta .btn-acao-principal:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(198, 122, 75, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .container-premium { margin-top: 100px; }
    .header-pagina h2 { font-size: 26px; }
    .conteudo-principal .texto-destaque { font-size: 18px; }
    .valor-box h3 { font-size: 18px; }
    .lista-envio li { font-size: 14px; }
    .secao-cta .btn-acao-principal {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 20px;
        font-size: 16px;
    }
}