/* Custom Styles for Circuito Dourado Landing Page */

/* --- Estilos Globais --- */
body {
    font-family: 'Arial', sans-serif;
    color: #131210;
    background-color: #f3e9e0;
}

.bg-primary {
    background-color: #f3e9e0 !important;
}

.text-primary {
    color: #131210 !important;
}

.btn-warning {
    background-color: #d4af37;
    border-color: #d4af37;
}

.btn-warning:hover {
    background-color: #b8860b;
    border-color: #b8860b;
}

.banner-dourado {
    color: #262626;
    font-style: italic;
    padding: 5px;
    text-align: left;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
}

/* --- Lista de Serviços (Geral) --- */
#servicos ul.list-unstyled {
    margin-top: 15px;
}

#servicos ul li {
    font-weight: 500;
    padding: 8px 12px;
    margin-bottom: 2px;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

#servicos ul li:nth-child(odd) {
    background-color: #ffffff;
    color: #000000;
}

#servicos ul li:nth-child(even) {
    background-color: #f8f9fa;
    color: #444444;
}

#servicos ul li:hover {
    background-color: #fff9e6;
    transform: translateX(5px);
    color: #b8860b;
}

#servicos ul li::before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 8px;
}

/* --- Calculadora Interativa --- */
.calculator-card {
    background: linear-gradient(135deg, #f3e9e0 0%, #e8dcc4 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.service-checkbox, .checkbox-estatica {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-checkbox:hover {
    background: #fff;
    transform: translateY(-2px);
}

.checkbox-estatica {
    cursor: not-allowed;
    border: 1px dashed #d4af37;
    opacity: 0.9;
}

.service-checkbox input[type="checkbox"], .input-travado {
    margin-right: 8px;
    transform: scale(1.2);
}

.input-travado {
    cursor: not-allowed !important;
    filter: grayscale(100%);
    pointer-events: none;
}

.service-checkbox label, .label-travada {
    margin: 0;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    color: #131210;
}

.label-travada { 
    cursor: not-allowed; 
    color: #555; 
}

/* --- Slider (Aumentado para encostar) --- */
.calculator-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #d4af37;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* --- Ajuste de Colunas e Espaçamento --- */
/* Faz a coluna do slider crescer e a de resultados se ajustar à direita */
@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 55%; /* Aumenta a largura do slider */
        max-width: 55%;
        padding-right: 40px; /* Gap visual antes dos resultados */
    }
    .col-lg-7 {
        flex: 0 0 45%; /* Reduz a largura da área de resultados */
        max-width: 45%;
    }
}

.col-lg-7 .d-flex {
    justify-content: flex-end !important;
    gap: 3.5rem !important; /* Espaço entre "Outros" e "Circuito" */
}

.destaque-dourado {
    transform: scale(1.1);
    transform-origin: right center;
    text-align: right;
}

#other-cost { 
    color: #777; 
    transition: all 0.3s ease;
}

#dourado-cost { 
    display: block;
    color: #d4af37;
    /* Sombra esmaecida e maior conforme solicitado */
    /* text-shadow: 0px 0px 15px rgba(50, 40, 5, 0.4), 1px 1px 3px rgba(0,0,0,0.1);  */
    transition: all 0.3s ease;
}

/* --- Bloco de Economia --- */
.result-item.savings {
    background: #e7f3eb;
    border: 2px solid #28a745;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.result-item.savings h4 {
    font-size: 1.1rem;
    color: #155724;
}

#savings {
    font-size: 2.8rem;
    font-weight: 900;
    color: #28a745;
}

/* --- Botão CTA --- */
.calculator-cta {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: #fff !important;
}

.calculator-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.4);
}

/* --- Elementos Flutuantes --- */
.floating-element {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stars-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars-content p {
    margin: 0;
    font-weight: bold;
    color: #d4af37;
}

section {
    padding: 60px 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsividade --- */
@media (max-width: 991px) {
    .destaque-dourado { 
        transform: scale(1); 
        text-align: center;
    }
    .col-lg-7 .d-flex {
        justify-content: center !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .floating-element {
        position: static;
        margin: 20px auto;
        width: fit-content;
    }
}