/* ============================================
   GERADOR DE PROPOSTAS - ESTILOS RL
   ============================================ */

.proposta-generator {
    background: #EFE6D6;
    border-radius: 28px;
    padding: 28px;
    width: 100%;
}

.proposta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
}

/* Planos Selector */
.planos-selector {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.planos-selector h3 {
    margin-bottom: 15px;
    color: #5C3D1A;
    font-size: 1rem;
    border-bottom: 2px solid #C89A3D55;
    padding-bottom: 8px;
}

.plano-opcao {
    background: #F5EFE6;
    border: 2px solid #E2D4C2;
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plano-opcao:hover {
    border-color: #C89A3D;
    background: #FFF8F0;
    transform: translateX(4px);
}

.plano-opcao.selected {
    border-color: #C89A3D;
    background: linear-gradient(135deg, #FFF8F0, #F5EFE6);
    box-shadow: 0 4px 12px rgba(200, 154, 61, 0.2);
}

.plano-nome {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #5C3D1A;
}

.plano-faixa {
    font-size: 0.75rem;
    color: #8E6426;
}

.plano-preco {
    font-weight: 800;
    color: #C89A3D;
    font-size: 1rem;
}

/* Serviços Adicionais */
.servico-check {
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #E2D4C2;
}

.servico-check:hover {
    background: #FFF8F0;
    border-color: #C89A3D;
}

.servico-check input {
    width: 20px;
    height: 20px;
    accent-color: #C89A3D;
    cursor: pointer;
}

.servico-check span {
    flex: 1;
}

/* Preview da Proposta */
.proposta-preview {
    background: white;
    border-radius: 20px;
    padding: 24px;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.preview-content {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #2C241A;
}

.preview-content ul {
    list-style: none;
    padding-left: 0;
}

.preview-content ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-content ul li::before {
    content: "✓";
    color: #C89A3D;
    font-weight: bold;
    font-size: 1rem;
}

.preco-destaque {
    background: linear-gradient(135deg, #F5EFE6, #E8DDD0);
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    margin: 16px 0;
}

.preco-destaque .valor {
    font-size: 1.4rem;
    font-weight: 800;
    color: #C89A3D;
}

.obs-elite {
    background: #FFF8F0;
    border-left: 3px solid #C89A3D;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-top: 12px;
    color: #5C3D1A;
}

/* Formulário */
.form-row {
    margin-bottom: 18px;
}

.form-row label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #2C241A;
    font-size: 0.85rem;
}

.form-row input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #E2D4C2;
    background: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
}

.form-row input:focus {
    outline: none;
    border-color: #C89A3D;
    box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.2);
}

/* Botões */
.btn-copiar, .btn-imprimir {
    padding: 10px 24px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-copiar {
    background: #6c757d;
    color: white;
}

.btn-copiar:hover {
    background: #5a6268;
}

.btn-imprimir {
    background: #C89A3D;
    color: #0F0D0B;
}

.btn-imprimir:hover {
    background: #B07E2F;
}

/* Header da Proposta */
.proposta-header {
    border-bottom: 2px solid #C89A3D;
    padding-bottom: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.proposta-header h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #5C3D1A;
    font-size: 1.4rem;
    margin: 0;
}

.proposta-header p {
    font-size: 0.7rem;
    color: #8E6426;
    margin-top: 4px;
}

/* Responsividade */
@media (max-width: 900px) {
    .proposta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proposta-generator {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .plano-opcao {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .btn-copiar, .btn-imprimir {
        flex: 1;
        justify-content: center;
    }
}