* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #F0F0F0;
    min-height: 100vh;
    padding-bottom: 100px;
}

/* Botão voltar */
.btn-voltar {
    position: fixed;
    top: 16px;
    left: 16px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-voltar:hover {
    background: #f5f5f5;
}

/* Header com imagem */
.header-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #333;
}

.header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Seção Seus veículos */
.veiculos-box {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
}

.veiculos-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 13px;
    margin-bottom: 8px;
}

.input-busca {
    position: relative;
}

.input-busca input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: white;
}

.icon-lupa {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Conteúdo */
.conteudo {
    padding: 20px 16px;
    max-width: 900px;
    margin: 0 auto;
}

.titulo-secao {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

/* Card de débito */
.debito-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.debito-linha-1,
.debito-linha-2,
.debito-linha-3,
.debito-linha-4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.debito-linha-4 {
    margin-bottom: 0;
}

.debito-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.numero {
    font-size: 14px;
    color: #333;
}

.placa-debito {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.badge-data {
    background: #000;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.local-debito {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.desc-blur {
    font-size: 13px;
    color: #666;
    filter: blur(3px);
    user-select: none;
}

.desc-debito {
    font-size: 13px;
    color: #666;
    filter: blur(3px);
    user-select: none;
    flex: 1;
}

.valor-debito {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

/* Rodapé fixo */
.rodape-fixo {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 50;
}

.rodape-conteudo {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-valor {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.rodape-direita {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-seta {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-seta:hover {
    opacity: 0.7;
}

.btn-continuar {
    background: #000;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-continuar:hover {
    background: #333;
}

.btn-continuar:active {
    transform: scale(0.98);
}

/* Rodapé detalhes (expandido) */
.rodape-detalhes {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px 16px 16px;
    border-top: 1px solid #E0E0E0;
}

.detalhe-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.detalhe-placa {
    font-size: 14px;
    color: #666;
}

.detalhe-valor {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
    .total-valor {
        font-size: 28px;
    }
    
    .btn-continuar {
        padding: 10px 24px;
        font-size: 14px;
    }
}
