   <style>

        .simulador-main {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
            gap: 30px;
        }
        
        .visualizacao-container {
            flex: 1;
            min-width: 300px;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        }
        
        .casa-visualizacao {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            border-radius: 6px;
            background: #eaecee;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        	/* Para dispositivos móveis (telas até 767px) */
@media (max-width: 767px) {
  .base-house1 {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    border-radius: 6px;
  }

  .roof-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 6px;
  }
}
        .base-house1 {
            width: 100%;
            height: 100%;
            object-fit: scale-down;
            border-radius: 6px;
        }
        
        .roof-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: scale-down;
            opacity: 0;
            transition: opacity 0.5s ease;
            border-radius: 6px;
        }
        
        .roof-overlay.visible {
            opacity: 1;
        }
        
        .initial-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 15px 25px;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            color: #2c3e50;
        }
        
        .controles-painel {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 8px;
            padding: 20px;
        }
        
        .modelo-info {
            background: #e8f4fc;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            color: #2c3e50;
            font-size: 15px;
        }
        
        .controle-grupo {
            margin-bottom: 20px;
        }
        
        .controle-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .controle-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            background: white;
            color: #333;
            transition: border-color 0.3s;
        }
        
        .controle-select:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        .simular-botao {
            width: 100%;
            padding: 14px;
            background: #de640b;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-bottom: 20px;
        }
        
        .simular-botao:hover {
            background: #de660c;
        }
        
        .simulacao-resultado {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }
        
        .simulacao-titulo {
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
            font-size: 18px;
        }
        
        .simulacao-resultado p {
            margin-bottom: 8px;
            color: #555;
        }
        
        .hidden {
            display: none;
        }
        
        .color-sample {
            display: inline-block;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            margin-right: 8px;
            vertical-align: middle;
        }
        
        footer {
            text-align: center;
		padding: 20px;}
    
	/* Para dispositivos móveis (telas até 767px) */
@media (max-width: 992px) {
    .casa-visualizacao {
        height: 300px !important;
    }
}

